@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@520&family=Mochiy+Pop+One&family=Nunito:wght@200&family=Poppins:wght@400;600;700;900&family=REM:wght@300&family=Varela+Round&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: "Kumbh Sans", sans-serif;
}

.logo {
  width: 30px;
  display: flex;
  align-items: center;
}

.logo span {
  font-weight: 900;
  margin-right: 18px;
  font-size: 25px;
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #dee1e3;
  border: solid #c7cbce;
  border-width: 0 0 1px;
  padding: 0 40px;
}

nav ul {
  list-style: none;
  display: flex;
}


body {
  background-color: #f2f4f5;
  color: #393b3d;
}
img {
  width: 100%;
}

ul li {
  margin-left: 30px;
}

.middle {
  width: 70%;
  margin: 10px auto;
  height: 135px;
  background-image: linear-gradient(0deg, rgba(39, 39, 46, .5), rgba(39, 39, 46, .5)), url(image/fireworks.png);
  /* background-image: linear-gradient(0deg, rgba(39, 39, 46, .5), rgba(39, 39, 46, .5)), url(https://images.rbxcdn.com/9a75b1267d260322206e98bd256138d4-premium_title_bg.jpg); */
  background-position: bottom;
  background-size: 100%;
  margin-bottom: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.middle h2 {
  margin-bottom: 10px;
  font-size: 35px;
}
.middle p {
  font-size: 17px;
}

body .para {
  font-size: 10px;
  font-weight: 500;
  margin-top: 50px;
  color: #606162;
  text-align: center;
  width: 100%;
  margin: 50px auto;
}
.box_con {
  margin: 0 auto;
  background-color: #fff;
  min-height: 163px;
  width: 70%;
  font-size: 20px;
  padding: 20px;
  border: solid #c7cbce;
  border-width: 1px 1px 1px;
}
input {
  padding: 11px 15px;
  border: none;
  background: #f2f4f5;
  border-radius: 9px;
  outline: none;
  font-size: 17px;
}

button {
  background: #393b3d;
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 10px;

  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 30px;
}

.box2 {
  display: none;
}

.box3 {
  display: none;
}
.box4 {
  display: none;
}

.container {
  display: flex;
  flex-direction: column;
  background-color: #ffffffbc;
  border-radius: 8px;
}

.row {
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-around;
}
.row:not(.row:last-child) {
  border-bottom: 1px solid #bdbebe;
}
.price {
  font-size: 20px;
  font-weight: 700;
}
.robux_total {
  display: flex;
  align-items: center;
}
.details:hover {
  background-color: rgb(226, 226, 226);
}
.pic {
  width: 30px;
  margin-right: 10px;
  pointer-events: none;
  margin-top: 2px;
}
span {
  font-size: 20px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6);
}
img {
  width: 100%;
}

h3 {
  font-size: 32px;
  margin-bottom: 21px;
}
.details {
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  padding: 5px 8px;
  width: 180px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.folding {
  margin: 20px auto;
  width: 100px;
  height: 100px;
  position: relative;
  transform: rotateZ(45deg);
}

.square {
  position: absolute;
  top: 36%;
  right: 35%;
  width: 30px;
  height: 30px;
  background-color: #fff;
  transform: rotateZ(87deg);
}
.folding .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.folding .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.folding .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}

.folding .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}

.folding .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}

.folding .sk-cube2:before {
  animation-delay: 0.3s;
}

.folding .sk-cube3:before {
  animation-delay: 0.6s;
}

.folding .sk-cube4:before {
  animation-delay: 0.9s;
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@media (max-width: 400px) {
  nav {
    padding: 0 5px;
  }
}

@media (max-width: 1042px) {
  .middle,
  .box_con,
  .para {
    width: 90%;
  }
}

@media (max-width: 750px) {
  .middle,
  .box_con {
    width: 100%;
  }
  .para {
    width: 100%;
  }
  .middle h2 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .middle p {
    font-size: 13px;
  }
}

@media (max-width: 373px) {
  .logo span {
    display: none;
  }
  nav {
    padding: 0px;
  }
}

@media (max-width: 442px) {

  nav {
    padding: 0px 20px;
  }
}

@media (max-width: 396px) {

  nav {
    padding: 0px 10px;
  }
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

  .testimonial p {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 10px;
  }

  .testimonial .user {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
  }

      .testimonial .user img {
          border-radius: 50%;
          width: 50px;
          height: 50px;
          margin-right: 10px;
          border: 2px solid #ddd;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .testimonial .user .name {
          font-weight: bold;
          color: #333;
      }

.testimonial-dots {
  text-align: center;
  margin-top: 10px;
}

  .testimonial-dots span {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      cursor: pointer;
  }

  .testimonial-dots .active {
      background-color: #717171;
  }
  .recent-winners {
    background-color: #f2f4f5;
    padding: 20px;
    margin: 20px auto;
    width: 100%;
    max-width: 970px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .recent-winners h4 {
        margin-bottom: 10px;
    }

    .recent-winners ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .recent-winners li {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 10px;
        padding: 15px;
        text-align: center;
        width: calc(33% - 20px);
    }

    .recent-winners .avatar-card img {
        border-radius: 50%;
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        border: 2px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .recent-winners .avatar-card .avatar-name {
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    .recent-winners .avatar-card .avatar-robux {
        font-size: 1em;
        color: #555;
    }

@media (max-width: 991px) {
    .middle, .box_con, .recent-winners {
        width: 100%;
        /* padding: 12px 0; */
    }

        .recent-winners ul {
            flex-wrap: wrap;
        }

        .recent-winners li {
            width: calc(50% - 20px);
        }

    .nav-logo img {
        height: 30px;
    }

    .nav-links li a {
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .middle, .box_con, .recent-winners {
        margin: 40px auto;
    }

        .recent-winners li {
            width: 100%;
            margin: 10px 0;
        }

    .nav-logo img {
        height: 25px;
    }
}
.nav-logo {
  padding: 15px;
}

  .nav-logo img {
      height: 35px;
      width: auto;
  }

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  flex-grow: 1;
}

  .nav-links li {
      margin: 0 10px;
  }

      .nav-links li a {
          display: block;
          color: black;
          text-align: center;
          padding: 15px 20px;
          text-decoration: none;
          transition: background-color 0.3s ease;
      }

          .nav-links li a:hover {
              background-color: #ddd;
              color: black;
          }

