:root {
  --primary-color: #fe9b01;
  --secondary-color: #000f1f;
}

/* navbar */
.navbar-menu-desktop {
  display: flex;
  flex-basis: auto;
  position: absolute;
  height: 50px;
}

img.navbar-brand {
  width: 222px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform: scale(1.15);
}

.navbar-toggler {
  display: none;
}

.header .navbar {
  height: 50px;
  padding: 10px 20px;
}

.header .navbar-nav {
  padding: 0 20px;
}

.header .navbar .nav-item {
  text-align: center;
  padding: 0;
  min-width: 120px;
}

.header .navbar .nav-item.navbar-logo {
  padding: 20px;
}

.header .navbar-nav .nav-link {
  white-space: nowrap;
  padding: 10px 10px;
  min-width: 120px;
}

.header .navbar-toggler-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .navbar-menu-desktop {
    display: none;
  }

  .navbar-toggler {
    display: block;
  }

  .logo-mobile {
    position: absolute;
    width: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 992px) {
  .collapse.navbar-collapse.show {
    display: none !important;
  }
}

/* hero section */
.hero-section {
  position: relative;
  background-position: center;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: 60px;
  background-color: var(--secondary-color);
  /* background-image: url(/images/bg/bg-hero.png); */
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.141),
      var(--secondary-color)
    ),
    url(/images/bg/bg-hero.png);
}

.bg-gradation {
  height: 650px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #000f1f00 0%, #000f1f 50%);
}

.hero-section .hero-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-section .hero-wrapper {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.hero-section .hero-wrapper h1 {
  color: var(--primary-color);
  font-size: 70px;
  text-align: center;
  line-height: 72px;
  animation: glowText 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-section .hero-wrapper h2 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  line-height: 50px;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  margin-bottom: 5px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-section .hero-wrapper p {
  color: #ffffff;
  font-size: 20px;
  margin-top: 20px;
  max-width: 700px;
  opacity: 0.8;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-section .hero-wrapper .cta {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 95px;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.9s;
  opacity: 0;
  flex-wrap: wrap;
}

.hero-section .hero-wrapper .cta img {
  height: 90px;
  transition: 0.3s;
}

.hero-section .hero-wrapper .cta img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.hero-section .hero-logo-mobile {
  display: none;
}

@media (max-width: 1199px) {
  .hero-section .hero-section-wrapper {
    flex-direction: column-reverse;
  }

  .hero-section .hero-wrapper {
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .hero-section .hero-logo-mobile {
    width: 400px;
    height: 200px;
    position: absolute;
    z-index: 2;
    background-image: url(/images/layer-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: calc(50%);
    bottom: -55px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-section .hero-logo-mobile img {
    width: 340px;
    position: relative;
    bottom: 8px;
  }

  .hero-section .hero-wrapper p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .hero-section .hero-wrapper .cta {
    gap: 90px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-wrapper .cta {
    gap: 40px;
    margin-top: 90px;
  }

  .hero-section .hero-wrapper .cta img {
    height: 70px;
  }

  .hero-section .hero-wrapper h1 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 30px;
  }

  .hero-section .hero-wrapper h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-section .hero-wrapper .cta {
    flex-direction: column;
    gap: 20px;
    margin-top: 140px;
    width: 100%;
    max-width: 400px;
    margin: 140px auto 0;
  }

  .hero-section .hero-wrapper .cta .btn-actions {
    width: 100%;
  }

  .hero-section .hero-logo-mobile {
    width: 290px;
    height: 150px;
  }

  .hero-section .hero-logo-mobile img {
    width: 220px;
    bottom: 3px;
  }

  .hero-section .monster-wrapper .monster-img {
    display: flex;
    justify-content: center;
  }

  .hero-section .monster-wrapper .monster {
    width: 250px;
    bottom: 100px;
    left: calc(50% - 13px);
  }

  .hero-section .monster-wrapper .podium {
    width: 325px;
    aspect-ratio: 1/1;
    object-fit: contain;
  }
}

/* foes section */
.foes-section {
  background-color: #000f1f;
  padding-top: 60px;
  padding-bottom: 120px;
  color: white;
  position: relative;
  overflow: hidden;
}

.foes-section .title-section {
  margin-bottom: 60px;
  position: relative;
}

.foes-section .title-section {
  margin-bottom: 60px;
  position: relative;
}

.foes-section .sec2-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 40px;
  column-gap: 40px;
  perspective: 1000px;
  position: relative;
  z-index: 4;
}

.foes-section .sec2-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 350px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  transform-style: preserve-3d;
}

/* .foes-section .sec2-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
} */

.foes-section .sec2-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.foes-section .sec2-box:hover::after {
  opacity: 1;
}

.foes-section .sec2-box img {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 1/1;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  object-fit: contain;
  transform: scale(1.1) translateY(-5px);
  transform-origin: center center;
  min-height: fit-content;
}

.foes-section .sec2-box:hover img {
  transform: scale(1.3) translateY(-5px);
  filter: drop-shadow(0 15px 20px rgba(254, 155, 1, 0.2));
}

/* Fix for AOS animation conflict */
[data-aos] .sec2-box {
  transform: translateY(0) scale(1) !important;
}

[data-aos].aos-animate .sec2-box {
  transform: translateY(0) scale(1) !important;
}

.foes-section .sec2-box .title {
  color: #fcf3ad;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: "Saira Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.foes-section .sec2-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.foes-section .sec2-box:hover p {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 1199px) {
  .foes-section .sec2-box {
    width: 260px;
    padding: 20px 10px;
  }

  .foes-section .sec2-box img {
    margin-bottom: 1.5rem;
  }

  .foes-section .sec2-box .title {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .foes-section .sec2-box p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .foes-section .sec2-box {
    width: 200px;
    padding: 20px 15px;
  }

  .foes-section .sec2-box img {
    transform: scale(1) translateY(-5px);
    height: 180px;
    margin-bottom: 0;
  }

  .foes-section .sec2-box:hover img {
    transform: scale(1.1) translateY(-5px);
  }
}

@media (max-width: 576px) {
  .foes-section .sec2-box {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}

/* feature section */
.feature-section {
  background-image: linear-gradient(
      var(--secondary-color),
      rgba(0, 0, 0, 0.1),
      var(--secondary-color)
    ),
    url(/images/bg/bg-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh + 300px);
  margin-top: -200px;
  padding-top: 300px;
  padding-bottom: 100px;
  position: relative;
}

.feature-section .feature-wrapper {
  position: relative;
  background-color: #000f1fe6;
  padding: 40px;
  border-radius: 30px;
}

.feature-section .sec3-box .sec3-title {
  font-size: 20px;
}

.feature-section .sec3-box .sec3-description {
  font-size: 16px;
}

.feature-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.5rem;
  padding: 6rem 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-section .sec3-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-section .sec3-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-section .sec3-card img {
  width: 120px;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  transform: scale(1.8) translateY(-20px);
}

.feature-section .sec3-card:hover img {
  transform: scale(2) translateY(-20px);
}

.feature-section .sec3-card .sec3-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.feature-section .sec3-card .sec3-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .feature-section .feature-grid {
    gap: 3.5rem;
  }

  .feature-section .sec3-card {
    width: 250px;
    padding: 1rem;
  }

  .feature-section .sec3-card img {
    transform: scale(1.6) translateY(-20px);
  }

  .feature-section .sec3-card:hover img {
    transform: scale(1.7) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .feature-section .feature-grid {
    gap: 2rem;
    padding: 60px 0 0;
  }

  .feature-section .sec3-card {
    width: 100%;
    padding: 1rem;
    margin-bottom: 15px;
  }

  .feature-section .sec3-card img {
    transform: scale(1.4) translateY(-20px);
  }

  .feature-section .sec3-card:hover img {
    transform: scale(1.5) translateY(-20px);
  }
}

/* your hero section */
.your-hero-section {
  background-image: linear-gradient(
      var(--secondary-color),
      #000f1fa8,
      var(--secondary-color)
    ),
    url(/images/bg/bg-5.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.your-hero-section .your-hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.your-hero-section .hero-1 {
  position: relative;
  z-index: 4;
  height: 600px;
  aspect-ratio: 1/1;
  filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
  animation: glow1 4s ease-in-out infinite;
}

.your-hero-section .hero-2 {
  position: absolute;
  left: 0;
  z-index: 3;
  filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  height: 500px;
  aspect-ratio: 1/1;
  object-fit: contain;
  animation: glow2 4s ease-in-out infinite;
}

.your-hero-section .hero-3 {
  position: absolute;
  right: 0;
  z-index: 2;
  filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  height: 500px;
  aspect-ratio: 1/1;
  object-fit: contain;
  animation: glow3 4s ease-in-out infinite;
}

@keyframes glow1 {
  0% {
    filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(254, 155, 1, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
  }
}

@keyframes glow2 {
  0% {
    filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  }
  50% {
    filter: blur(1px) drop-shadow(0 0 30px rgba(254, 155, 1, 0.4));
  }
  100% {
    filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  }
}

@keyframes glow3 {
  0% {
    filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  }
  50% {
    filter: blur(1px) drop-shadow(0 0 30px rgba(254, 155, 1, 0.4));
  }
  100% {
    filter: blur(1px) drop-shadow(0 0 15px rgba(254, 155, 1, 0.2));
  }
}

/* Add hover effect for desktop */
@media (min-width: 1200px) {
  .your-hero-section .hero-1:hover {
    filter: drop-shadow(0 0 30px rgba(254, 155, 1, 0.6));
    transition: filter 0.3s ease;
  }

  .your-hero-section .hero-2:hover,
  .your-hero-section .hero-3:hover {
    filter: blur(0.5px) drop-shadow(0 0 35px rgba(254, 155, 1, 0.5));
    transition: filter 0.3s ease;
  }
}

/* Mobile hero carousel styles */
@media (max-width: 1199px) {
  .your-hero-section .your-hero-wrapper {
    padding: 0 20px;
  }

  .your-hero-section #hero-mobile-carousel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .your-hero-section #hero-mobile-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .your-hero-section #hero-mobile-carousel .hero-mobile {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
    animation: glowMobile 4s ease-in-out infinite;
  }

  @keyframes glowMobile {
    0% {
      filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
      transform: scale(1);
    }
    50% {
      filter: drop-shadow(0 0 25px rgba(254, 155, 1, 0.5));
      transform: scale(1.02);
    }
    100% {
      filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
      transform: scale(1);
    }
  }

  /* Add transition effect between slides */
  .your-hero-section #hero-mobile-carousel .owl-item {
    transition: opacity 0.5s ease;
  }

  .your-hero-section #hero-mobile-carousel .owl-item:not(.active) {
    opacity: 0;
  }

  .your-hero-section #hero-mobile-carousel .owl-item.active {
    opacity: 1;
  }

  /* Enhanced item container */
  .your-hero-section #hero-mobile-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
  }

  .your-hero-section #hero-mobile-carousel .item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(254, 155, 1, 0.1) 0%,
      rgba(254, 155, 1, 0) 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .your-hero-section #hero-mobile-carousel .owl-item.active .item::after {
    opacity: 1;
  }
}

/* reward section */
.reward-section {
  background-color: var(--secondary-color);
  padding-top: 100px;
  padding-bottom: 100px;
  color: white;
  position: relative;
}

.reward-section .container {
  position: relative;
  z-index: 2;
}

.reward-section .reward-title {
  font-size: 40px;
  font-weight: 900;
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reward-section .reward-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
}

.reward-section .reward-item {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.reward-section .reward-item:nth-child(1) {
  animation-delay: 0.2s;
}
.reward-section .reward-item:nth-child(2) {
  animation-delay: 0.4s;
}
.reward-section .reward-item:nth-child(3) {
  animation-delay: 0.6s;
}

.reward-section .reward-item .title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.5px;
  opacity: 1;
  text-transform: uppercase;
}

.reward-section .reward-item p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
}

.reward-section .reward-wrapper .reward-img {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.reward-section .reward-wrapper .reward-img img {
  max-width: 680px;
  width: 100%;
  animation: floatX 6s ease-in-out infinite;
}

.reward-section .rewards-list {
  max-width: 600px;
}

.reward-section .rewards-list-wrapper {
  padding-bottom: 100px;
}

.reward-section .reward-item .line {
  width: 1px;
  background: white;
  margin: 15px 43px 0 26px;
}

.reward-section .join-community {
  height: 90px;
  margin-top: 40px;
}

.reward-section .bg-img {
  position: absolute;
  bottom: 0px;
  height: 950px;
  opacity: 0.4;
  object-fit: cover;
  width: 100%;

  background-image: linear-gradient(
      var(--secondary-color),
      rgba(0, 0, 0, 0),
      var(--secondary-color)
    ),
    url(/images/bg/bg-3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 1199px) {
  .reward-section .reward-wrapper {
    flex-direction: column-reverse;
    margin-top: 60px;
  }

  .reward-section .reward-wrapper .reward-img img {
    max-width: 480px;
    margin-bottom: -90px;
  }
}

/* footer section */
.footer {
  background-color: var(--secondary-color);
  position: relative;
  color: white;
}

.footer .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.footer .title-section {
  margin-bottom: -30px;
}

.footer .img-footer {
  width: 100%;
  max-width: 750px;
  z-index: 0;
  position: relative;
  top: 140px;
}

.footer .footer-main {
  margin: 0;
  width: 100%;
  max-width: unset;
  position: relative;
  z-index: 2;
  background: rgba(0, 15, 31, 0.34);
  backdrop-filter: blur(10px);
}

.footer .footer-main::after {
  background-color: rgba(11, 11, 11, 0.25);
}

.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .f-logo {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.footer .f-logo:hover {
  opacity: 0.8;
}

.footer .f-logo img {
  max-width: 200px;
  height: auto;
}

.footer .footer-links ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0 10px;
}

.footer .footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  left: 50%;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.footer .footer-links a:hover::after {
  width: 100%;
}

.footer .footer-block {
  margin-bottom: 40px;
}

.footer .footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .footer-newsletter form {
  max-width: 330px;
}

.footer .footer-newsletter p {
  text-align: right;
}

.footer .social-media {
  margin: 0;
}

.footer .social-media p {
  text-align: left;
}

.footer .footer-newsletter p,
.footer .social-media p {
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.footer .form-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 60px;
  padding: 0 10px;
}

.footer .form-control {
  background: transparent;
  border: none;
  color: white;
  padding: 0 16px;
  padding-right: 110px;
  font-size: 16px;
  width: 100%;
  height: 38px;
  border-radius: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer .form-control:focus {
  outline: none;
}

.footer .form-group .btn {
  cursor: pointer;
  transition: transform 0.3s ease;
  top: unset;
  bottom: unset;
  right: 10px;
  width: 130px;
}

.footer .form-group .btn:hover {
  transform: scale(1.05);
}

.footer .social-media ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: start;
}

.footer .social-media a {
  display: flex;
  transition: transform 0.3s ease;
}

.footer .social-media a:hover {
  transform: translateY(-5px);
}

.footer .social-media img {
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.footer .social-media img:hover {
  transform: translateY(-5px) rotate(5deg);
}

.footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer .footer-block .d-flex {
  gap: 60px;
}

@media (max-width: 992px) {
  .footer .social-media img {
    width: 30px;
  }

  .footer-links {
    padding-bottom: 10px;
  }

  .footer .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-links ul li::before {
    display: none;
  }

  .footer-links ul li:not(:has(a)) {
    display: none;
  }

  .footer .footer-block {
    padding: 30px 20px;
  }

  .footer .footer-block .d-flex {
    flex-direction: column;
    gap: 40px;
  }

  .footer .footer-newsletter {
    padding-right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .social-media {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .footer .footer-newsletter p,
  .footer .social-media p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }

  .footer .social-media ul {
    justify-content: center;
  }

  .footer .form-group .btn {
    width: 100px;
  }

  .footer .form-group {
    height: 50px;
  }

  .footer .form-control {
    padding: 0 14px;
    padding-right: 86px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 200px;
  }

  .footer .footer-main {
    padding: 40px 0;
  }

  .footer .f-logo img {
    max-width: 160px;
  }
}

.footer .bg-img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 900px;
  bottom: 0;
  background-image: linear-gradient(var(--secondary-color), rgba(0, 0, 0, 0.1)),
    url(/images/bg/bg-4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.footer.v2 {
  padding-top: 180px;
}

.footer.v2 .bg-img {
  height: 100%;
  background-image: linear-gradient(var(--secondary-color), rgba(0, 0, 0, 0.3)),
    url(/images/bg/bg-4.webp);
}

/* others */
.title-section h3 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 62px;
  animation: glowText 4s ease-in-out infinite;
}

.title-section p {
  font-size: 20px;
  color: white;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* Animation keyframes */
@keyframes floatX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 5px rgba(254, 155, 1, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(254, 155, 1, 0.6);
  }
  100% {
    text-shadow: 0 0 5px rgba(254, 155, 1, 0.3);
  }
}

/* Smooth page load animation */
.content {
  max-width: 100vw;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.footer .social-media img {
  transition: transform 0.3s ease;
}

.footer .social-media img:hover {
  transform: translateY(-5px) rotate(5deg);
}

/* Enhanced mobile carousel animations */
.your-hero-section #hero-mobile-carousel .hero-mobile {
  animation: floatY 6s ease-in-out infinite, glowMobile 4s ease-in-out infinite;
}

@keyframes glowMobile {
  0% {
    filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
    transform: translateY(0) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(254, 155, 1, 0.5));
    transform: translateY(-15px) scale(1.02);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
    transform: translateY(0) scale(1);
  }
}

/* Navbar animations */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Fantasy VFX Animations */
@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float-particles {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes magic-pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Hero Section Enhancements */
.hero-section .hero-wrapper h1::before,
.hero-section .hero-wrapper h1::after {
  content: "✦";
  position: absolute;
  font-size: 24px;
  color: var(--primary-color);
  animation: sparkle 2s infinite;
}

.hero-section .hero-wrapper h1::before {
  left: -30px;
  animation-delay: 0.5s;
}

.hero-section .hero-wrapper h1::after {
  right: -30px;
  animation-delay: 1s;
}

/* Foes Section Card Effects */
.foes-section .sec2-box::before {
  content: "✦";
  position: absolute;
  z-index: 1;
  color: var(--primary-color);
  font-size: 20px;
  opacity: 0.6;
  animation: float-particles 4s infinite;
}

.foes-section .sec2-box:nth-child(1)::before {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.foes-section .sec2-box:nth-child(2)::before {
  top: 40px;
  left: 40px;
  animation-delay: 1s;
}
.foes-section .sec2-box:nth-child(3)::before {
  top: 60px;
  left: 60px;
  animation-delay: 2s;
}

/* Feature Cards Magic Effect */
/* .feature-section .sec3-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-section .sec3-card:hover::after {
  opacity: 0.8;
} */

.feature-section .sec3-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes gradient-shift {
  0% {
    background-position: 200% 200%;
  }
  100% {
    background-position: -200% -200%;
  }
}

/* Hero Images Magical Aura */
.your-hero-section .hero-1::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at center,
    rgba(254, 155, 1, 0.2),
    transparent 70%
  );
  animation: magic-pulse 4s infinite;
  z-index: -1;
}

/* Reward Section Particle Effects */
.reward-section .reward-item .reward-number::before {
  content: "★";
  position: absolute;
  color: var(--primary-color);
  font-size: 14px;
  opacity: 0;
  transform: translateY(0);
  animation: float-star 3s infinite;
}

@keyframes float-star {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) rotate(360deg);
  }
}

/* Navigation Magical Highlight */
.nav-link:hover::before {
  content: "•";
  position: absolute;
  color: var(--primary-color);
  font-size: 8px;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: sparkle 2s infinite;
}

/* Button Hover Effects */
.cta img:hover {
  filter: drop-shadow(0 0 10px var(--primary-color));
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Replace Title Section Enhancement */
.title-section h3 {
  position: relative;
  overflow: visible;
}

/* Enhanced Floating Stars Effect */
.title-section {
  position: relative;
  overflow: visible;
}

/* Main stars around title */
.title-section h3::before,
.title-section h3::after,
.title-section h3 span::before,
.title-section h3 span::after {
  content: "★";
  position: absolute;
  color: var(--primary-color);
  opacity: 0;
  pointer-events: none;
}

/* Large stars */
.title-section h3::before {
  left: 20px;
  font-size: 24px;
  animation: floatingStar 4s infinite;
}

.title-section h3::after {
  right: 20px;
  font-size: 24px;
  animation: floatingStar 4s infinite;
  animation-delay: 2s;
}

/* Surrounding stars */
.title-section::before,
.title-section::after {
  content: "✦";
  position: absolute;
  color: var(--primary-color);
  opacity: 0;
  pointer-events: none;
}

/* Top stars */
.title-section::before {
  left: 20%;
  top: -20px;
  font-size: 16px;
  animation: floatingStar 5s infinite;
  animation-delay: 0.5s;
}

.title-section::after {
  right: 25%;
  top: -15px;
  font-size: 14px;
  animation: floatingStar 4.5s infinite;
  animation-delay: 2.5s;
}

/* Enhanced floating animation */
@keyframes floatingStar {
  0% {
    opacity: 0;
    transform: translateY(10px) rotate(0deg) scale(0.5);
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
    transform: translateY(-30px) rotate(180deg) scale(1);
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-70px) rotate(360deg) scale(0.5);
  }
}

@media (max-width: 768px) {
  .title-section h3 {
    font-size: 48px;
  }

  .title-section p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .title-section h3 {
    font-size: 40px;
  }

  .title-section p {
    font-size: 16px;
  }

  .logo-mobile {
    width: 150px;
  }
}

/* Play Now Button Styles */
.nav-link.play-now {
  background: linear-gradient(45deg, var(--primary-color), #ff6b00);
  color: white !important;
  padding: 4px 10px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 155, 1, 0.3);
  border: 2px solid transparent;

  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;

  font-family: "Saira Condensed", sans-serif;
}

.nav-link.play-now::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.nav-link.play-now::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6b00, var(--primary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link.play-now:hover {
  box-shadow: 0 6px 20px rgba(254, 155, 1, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  animation: glow 1.5s ease-in-out infinite alternate;
}

.nav-link.play-now:hover::after {
  opacity: 1;
}

.nav-link.play-now:active {
  box-shadow: 0 2px 10px rgba(254, 155, 1, 0.3);
}

@media (max-width: 991px) {
  .nav-link.play-now {
    top: 12px;
    font-size: 12px;
    transform: none;
  }
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color),
      0 0 15px var(--primary-color);
  }
  50% {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color),
      0 0 30px var(--primary-color);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* QR Code Modal Styles */
.modal-content {
  background: rgba(0, 15, 31, 0.95);
  border: 1px solid rgba(254, 155, 1, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
  animation: modalFadeIn 0.3s ease-out;
}

.modal-header {
  border-bottom: 1px solid rgba(254, 155, 1, 0.2);
  padding: 1.5rem;
}

.modal-title {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.qr-code-container {
  position: relative;
  width: 300px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  animation: qrAppear 0.5s ease-out;
}

.qr-code {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.3));
}

.qr-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: qrShine 3s infinite;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes qrAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qrShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.cursor-pointer {
  cursor: pointer;
}

/* navbar */
.navbar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.nav-hidden {
  transform: translateY(-100%) !important;
  opacity: 0;
}

.navbar.nav-visible {
  transform: translateY(0) !important;
  opacity: 1;
}

/* Fantasy Leaderboard Styles */
.content {
  background-color: var(--secondary-color);
  min-height: 100vh;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Fantasy Tab Navigation */
#leaderboardTabs .nav-link {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#leaderboardTabs .nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

#leaderboardTabs .nav-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.5);
}

#leaderboardTabs .nav-link.active {
  color: var(--primary-color);
  background: transparent;
  text-shadow: 0 0 15px rgba(254, 155, 1, 0.7);
}

#leaderboardTabs .nav-link.active::before {
  width: 80%;
}

/* Fantasy Table Styles */
.table-wrapper,
.reward-content {
  background: rgba(0, 15, 31, 0.7);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 155, 1, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.table-content {
  background: rgb(0, 15, 31);
  border-radius: 6px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 155, 1, 0.2);
}

.table-responsive {
  overflow: hidden;
  z-index: 3;
  position: relative;
  overflow-y: auto;
  max-height: 600px;
}

.table-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.table {
  color: white;
  margin: 0;
  position: relative;
}

.table > :not(caption) > * > * {
  background-color: var(--secondary-color);
}

.table thead th {
  border: none;
  color: var(--primary-color);
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
  text-align: center;
  background: rgba(254, 155, 1, 0.1);
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.table tbody tr {
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 5px 0;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody td {
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

/* Rank Column */
.table tbody td:first-child {
  color: #bdbdbd;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
  position: relative;
  padding-left: 60px;
}

.table tbody td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0.5;
  font-size: 1rem;
  left: 25px;
}

/* Name Column */
.table tbody td:nth-child(2) {
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  padding-left: 40px;
}

/* Value Column */
.table tbody td:last-child {
  color: #fcf3ad;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(252, 243, 173, 0.3);
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Top 3 Rows Special Styling */
.table tbody tr:nth-child(1) {
  background: rgba(255, 215, 0, 0.05);
}

.table tbody tr:nth-child(1) td:first-child {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.table tbody tr:nth-child(1) td:first-child::before {
  content: "★";
  color: #ffd700;
  font-size: 1.2rem;
}

.table tbody tr:nth-child(2) {
  background: rgba(192, 192, 192, 0.05);
}

.table tbody tr:nth-child(2) td:first-child {
  color: #abe3ff;
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.table tbody tr:nth-child(2) td:first-child::before {
  content: "★";
  color: #abe3ff;
  font-size: 1.1rem;
  animation: starPulse 2s infinite;
}

.table tbody tr:nth-child(3) {
  background: rgba(205, 127, 50, 0.05);
}

.table tbody tr:nth-child(3) td:first-child {
  color: #e39a53;
  text-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.table tbody tr:nth-child(3) td:first-child::before {
  content: "★";
  color: #e39a53;
  font-size: 1rem;
  animation: starPulse 2s infinite;
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .table-content {
    padding: 15px;
  }

  .table tbody td {
    padding: 12px;
    font-size: 1rem;
  }

  .table tbody td:first-child {
    padding-left: 40px;
    font-size: 1.1rem;
  }

  .table tbody td:first-child::before {
    font-size: 14px !important;
    left: 20px;
  }
}

@media (max-width: 576px) {
  .table-content {
    padding: 10px;
  }

  .table tbody td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .table tbody td:first-child {
    padding-left: 37px;
    font-size: 1rem;
  }

  .table tbody td:first-child::before {
    font-size: 12px !important;
    left: 20px;
  }
}

/* Fantasy Title Styles */
.content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
  animation: titleGlow 3s infinite;
}

.content h2::before,
.content h2::after {
  content: "✦";
  position: absolute;
  color: var(--primary-color);
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
  animation: starTwinkle 2s infinite;
}

.content h2::before {
  left: 40px;
  animation-delay: 0.5s;
}

.content h2::after {
  right: 40px;
  animation-delay: 1s;
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(254, 155, 1, 0.8);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Enhanced Tab Navigation */
#leaderboardTabs {
  position: relative;
  z-index: 3;
  margin: 50px 0 40px;
  border: none;
}

#leaderboardTabs::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  animation: tabGlow 3s infinite;
}

#leaderboardTabs::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  animation: tabGlow 3s infinite;
}

@keyframes tabGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

#leaderboardTabs .nav-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#leaderboardTabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 155, 1, 0.2),
    transparent
  );
  transition: 0.5s;
}

#leaderboardTabs .nav-link:hover::before {
  left: 100%;
}

.table tbody tr {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Magical Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 10, 21, 0.8);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 0.5s ease-out forwards;
  animation-delay: 2s;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(254, 155, 1, 0.3);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content h2 {
    font-size: 2.5rem;
  }

  .content h2::before,
  .content h2::after {
    font-size: 1.5rem;
  }

  .content h2::before {
    left: 30px;
  }

  .content h2::after {
    right: 30px;
  }
}

@media (max-width: 576px) {
  .content h2 {
    font-size: 2rem;
  }

  .content h2::before,
  .content h2::after {
    font-size: 1.2rem;
  }

  .content h2::before {
    left: 20px;
  }

  .content h2::after {
    right: 20px;
  }
}

.leaderboard-section {
  padding: 180px 0 100px;
  background-image: linear-gradient(
      rgba(0, 15, 31, 0.694),
      var(--secondary-color)
    ),
    url(/images/bg/bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* FAQ Section Styles */
.faq-list-section {
  padding: 160px 0 100px;
  background-image: linear-gradient(
      rgba(0, 15, 31, 0.8),
      var(--secondary-color)
    ),
    url(/images/bg/bg-1.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh + 60px);
}

.faq-list-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.faq-question h3 {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.5);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 200vh;
  opacity: 1;
  transform: translateY(0);
  padding: 0 30px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 15px;
  line-height: 1.6;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.faq-answer ul li {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}

.faq-answer ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
  animation: starPulse 2s infinite;
  top: 11px;
}

/* Magical effects for active FAQ items */
.faq-item.active {
  box-shadow: 0 0 30px rgba(254, 155, 1, 0.2);
  border-color: var(--primary-color);
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-list-section {
    padding: 80px 0;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .faq-list-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 12px 15px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-icon {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    padding: 12px 15px;
  }

  .faq-answer p,
  .faq-answer ul li {
    font-size: 0.9rem;
  }
}

/* Sparkle Effect */
.sparkle-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.sparkle-effect::before,
.sparkle-effect::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(254, 155, 1, 0.2),
    transparent 70%
  );
  animation: sparkleExpand 1s ease-out forwards;
}

.sparkle-effect::after {
  animation-delay: 0.2s;
  background: radial-gradient(
    circle at center,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
}

@keyframes sparkleExpand {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Privacy Policy Section Styles */
.privacy-policy-section {
  padding: 120px 0 80px;
  background-color: var(--secondary-color);
  position: relative;
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.privacy-title {
  font-family: "Saira Condensed", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 2px solid rgba(254, 155, 1, 0.3);
  padding-bottom: 15px;
}

.privacy-date {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.privacy-section {
  margin-bottom: 40px;
  position: relative;
}

.privacy-section h4 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 155, 1, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.privacy-section h4::before {
  content: "✦";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0.5;
  font-size: 1rem;
  animation: starPulse 2s infinite;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-section ul li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
}

.privacy-section ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -20px;
}

.contact-info {
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 10px;
}

/* Subtle fantasy elements */
.privacy-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.05), transparent);
  pointer-events: none;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 100px 0 60px;
  }

  .privacy-content {
    padding: 30px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-section h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .privacy-policy-section {
    padding: 80px 0 40px;
  }

  .privacy-content {
    padding: 20px;
  }

  .privacy-title {
    font-size: 1.8rem;
  }

  .privacy-section h4 {
    font-size: 1.2rem;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 0.9rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 160px 0 100px;
  background-image: linear-gradient(
      rgba(0, 15, 31, 0.8),
      var(--secondary-color)
    ),
    url(/images/bg/bg-1.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.contact-character {
  position: relative;
  padding: 40px;
  animation: floatY 6s ease-in-out infinite;
}

.contact-character img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 20px rgba(254, 155, 1, 0.3));
  animation: glowPulse 10s infinite;
}

.contact-content {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-content:hover::before {
  opacity: 1;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(254, 155, 1, 0.1);
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 155, 1, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(254, 155, 1, 0.2);
  transform: scale(1.1);
}

.contact-icon img {
  width: 50px;
  height: 50px;
  transform: scale(1.4);
  filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.5));
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
}

.contact-info p,
b.contact-info {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.5);
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-character {
    margin-bottom: 40px;
  }

  .contact-content {
    padding: 30px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon img {
    width: 25px;
    height: 25px;
  }

  .contact-info h3 {
    font-size: 1.1rem;
  }

  .contact-info a {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-content {
    padding: 20px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon img {
    width: 20px;
    height: 20px;
  }

  .contact-info h3 {
    font-size: 1rem;
  }

  .contact-info a {
    font-size: 0.9rem;
  }
}

/* Roadmap Section Styles */
.roadmap-section {
  padding: 160px 0 100px;
  background-image: linear-gradient(
      rgba(0, 15, 31, 0.8),
      var(--secondary-color)
    ),
    url(/images/bg/bg-6.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.roadmap-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap-year {
  margin-bottom: 80px;
  position: relative;
}

.roadmap-year:last-child {
  margin-bottom: 0;
}

.year-header {
  color: var(--primary-color);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
  animation: glowText 3s infinite;
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 15px;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: inline-block;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.year-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.1), transparent);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.year-header::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: 17px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.year-header p {
  position: relative;
  z-index: 1;
  margin: 0;
  background: linear-gradient(45deg, #fff, #fcf3ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 3s infinite;
  line-height: 35px;
}

.year-header:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(254, 155, 1, 0.3);
  border-color: var(--primary-color);
}

.year-header:hover::before {
  opacity: 1;
}

.year-header:hover::after {
  opacity: 1;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes textShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Update responsive styles for year header */
@media (max-width: 768px) {
  .year-header {
    font-size: 2rem;
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .year-header {
    font-size: 1.8rem;
    padding: 12px 25px;
  }
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-color),
    transparent
  );
  box-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
}

.roadmap-item {
  position: relative;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-content {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.roadmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.roadmap-header h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
  position: relative;
  padding-left: 30px;
}

.roadmap-header h4::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1rem;
  animation: starPulse 2s infinite;
}

.roadmap-icon {
  width: 50px;
  height: 50px;
  background: rgba(254, 155, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.roadmap-content:hover .roadmap-icon::before {
  opacity: 1;
  animation: rotate 4s linear infinite;
}

.roadmap-icon img {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 10px rgba(254, 155, 1, 0.5));
  transition: all 0.3s ease;
}

.roadmap-content:hover .roadmap-icon img {
  transform: scale(1.1);
}

.roadmap-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-body ul li {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.roadmap-body ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.5);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .roadmap-section {
    padding: 100px 0 60px;
  }

  .roadmap-year {
    margin-bottom: 60px;
  }

  .year-header {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .year-header::before {
    left: -30px;
  }

  .year-header::after {
    right: -30px;
  }

  .roadmap-timeline::before {
    left: 30px;
  }

  .roadmap-item {
    padding-left: 60px;
  }

  .year-header {
    margin-left: 60px;
  }

  .roadmap-content {
    width: 100%;
    padding: 20px;
  }

  .roadmap-header h4 {
    font-size: 1.3rem;
  }

  .roadmap-icon {
    width: 45px;
    height: 45px;
  }

  .roadmap-icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .roadmap-section {
    padding: 80px 0 40px;
  }

  .roadmap-year {
    margin-bottom: 40px;
  }

  .year-header {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .year-header::before,
  .year-header::after {
    font-size: 1.2rem;
  }

  .year-header::before {
    left: -25px;
  }

  .year-header::after {
    right: -25px;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .roadmap-item {
    padding-left: 40px;
  }

  .year-header {
    margin-left: 40px;
  }

  .roadmap-content {
    padding: 15px;
  }

  .roadmap-header h4 {
    font-size: 1.1rem;
  }

  .roadmap-icon {
    width: 40px;
    height: 40px;
  }

  .roadmap-icon img {
    width: 25px;
    height: 25px;
  }

  .roadmap-body ul li {
    font-size: 0.9rem;
  }
}

/* About Us Section Styles */
.about-us-section {
  padding: 160px 0 100px;
  background-image: linear-gradient(
      rgba(0, 15, 31, 0.8),
      var(--secondary-color)
    ),
    url(/images/bg/bg-3.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(254, 155, 1, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  position: relative;
}

.about-text-content {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
  position: relative;
  padding-left: 30px;
}

.about-text h3::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.5rem;
  animation: starPulse 2s infinite;
}

.lead-text {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.3);
}

.about-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(254, 155, 1, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  animation: floatY 3s ease-in-out infinite;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.about-mission {
  margin: 60px 0;
}

.mission-content {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-content h4 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
}

.mission-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.stat-item {
  background: rgba(0, 15, 31, 0.7);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  animation: floatY 3s ease-in-out infinite;
}

.stat-number {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.about-rewards {
  text-align: center;
  margin-top: 60px;
}

.about-rewards h4 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(254, 155, 1, 0.5);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.reward-item {
  background: rgba(0, 15, 31, 0.7);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.reward-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  animation: floatY 3s ease-in-out infinite;
}

.reward-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .image-container {
    max-width: 400px;
  }

  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 100px 0 60px;
  }

  .about-text h3 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-content h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .about-us-section {
    padding: 80px 0 40px;
  }

  .about-text-content {
    padding: 30px;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .image-container {
    max-width: 300px;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .mission-content {
    padding: 30px;
  }

  .mission-content h4 {
    font-size: 1.6rem;
  }
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 500px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: floatY 6s ease-in-out infinite;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(254, 155, 1, 0.3));
  animation: floatY 6s ease-in-out infinite;
}

.image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at center,
    rgba(254, 155, 1, 0.2),
    transparent 70%
  );
  animation: glowPulse 4s infinite;
  z-index: -1;
}

.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-particles span {
  position: absolute;
  color: var(--primary-color);
  font-size: 1.5rem;
  animation: floatParticle 6s infinite;
  opacity: 0.6;
  text-shadow: 0 0 10px rgba(254, 155, 1, 0.5);
}

.floating-particles span:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles span:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.floating-particles span:nth-child(3) {
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

.floating-particles span:nth-child(4) {
  top: 40%;
  right: 40%;
  animation-delay: 1s;
}

.magic-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border: 2px solid rgba(254, 155, 1, 0.2);
  border-radius: 50%;
  animation: rotateCircle 10s linear infinite;
}

.circle-1 {
  inset: -20px;
  animation-delay: 0s;
}

.circle-2 {
  inset: -40px;
  animation-delay: -3s;
}

.circle-3 {
  inset: -60px;
  animation-delay: -6s;
}

.energy-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 155, 1, 0.3),
    transparent
  );
  height: 2px;
  width: 100%;
  animation: energyFlow 3s linear infinite;
}

.line-1 {
  top: 20%;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  animation-delay: 1s;
}

.line-3 {
  top: 80%;
  animation-delay: 2s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes energyFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .image-container {
    max-width: 400px;
  }

  .floating-particles span {
    font-size: 1.2rem;
  }

  .circle-1 {
    inset: -15px;
  }

  .circle-2 {
    inset: -30px;
  }

  .circle-3 {
    inset: -45px;
  }
}

@media (max-width: 768px) {
  .image-container {
    max-width: 350px;
  }

  .floating-particles span {
    font-size: 1rem;
  }

  .line {
    height: 1px;
  }
}

@media (max-width: 576px) {
  .image-container {
    max-width: 280px;
  }

  .floating-particles span {
    font-size: 0.8rem;
  }

  .circle-1 {
    inset: -10px;
  }

  .circle-2 {
    inset: -20px;
  }

  .circle-3 {
    inset: -30px;
  }
}

/* Payout Marquee Styles */
.payout-marquee {
  background: linear-gradient(
    135deg,
    rgb(0 0 0 / 37%) 20%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 18px 0;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.payout-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.payout-scroll {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  position: relative;
}

.payout-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  flex-shrink: 0;
  position: relative;
}

.payout-text {
  font-family: "Saira Condensed", sans-serif;
  font-size: 18px;
  color: #fff;
}

.payout-name {
  color: #fcf3ad;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(252, 243, 173, 0.5);
}

.payout-amount {
  color: #fcf3ad;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(252, 243, 173, 0.5);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .payout-marquee {
    padding: 10px 0;
  }
  .payout-text {
    font-size: 14px;
  }
}

/* Prize Showcase Styles */
.prize-showcase-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.prize-image-main {
  position: absolute;
  right: calc(50% - 10px);
  max-width: 420px;
  top: 60px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7));
  animation: glowPulsePrizeMain 4s ease-in-out infinite;
  z-index: 3;
  transform-origin: center;
  transform: translateX(50%);
}

@keyframes glowPulsePrizeMain {
  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 206, 45, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(255, 206, 45, 0.9)) brightness(1.1);
  }
}

.prize-showcase-container .sparkle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkle 1.5s ease-in-out infinite;
  z-index: 4;
}

/* Sparkle positions and variations */
.prize-showcase-container .sparkle:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  width: 20px;
  height: 20px;
}

.prize-showcase-container .sparkle:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 0.2s;
  width: 12px;
  height: 12px;
}

.prize-showcase-container .sparkle:nth-child(3) {
  top: 40%;
  left: 25%;
  animation-delay: 0.4s;
  width: 18px;
  height: 18px;
}

.prize-showcase-container .sparkle:nth-child(4) {
  top: 60%;
  right: 25%;
  animation-delay: 0.6s;
  width: 14px;
  height: 14px;
}

.prize-showcase-container .sparkle:nth-child(5) {
  bottom: 20%;
  left: 20%;
  animation-delay: 0.8s;
  width: 16px;
  height: 16px;
}

.prize-showcase-container .sparkle:nth-child(6) {
  bottom: 35%;
  right: 20%;
  animation-delay: 1s;
  width: 13px;
  height: 13px;
}

.prize-showcase-container .sparkle:nth-child(7) {
  top: 30%;
  left: 40%;
  animation-delay: 1.2s;
  width: 17px;
  height: 17px;
}

.prize-showcase-container .sparkle:nth-child(8) {
  top: 50%;
  right: 35%;
  animation-delay: 1.4s;
  width: 15px;
  height: 15px;
}

.prize-showcase-container .sparkle:nth-child(9) {
  bottom: 30%;
  left: 35%;
  animation-delay: 1.6s;
  width: 19px;
  height: 19px;
}

.prize-showcase-container .sparkle:nth-child(10) {
  bottom: 45%;
  right: 30%;
  animation-delay: 1.8s;
  width: 11px;
  height: 11px;
}

.prize-showcase-container .sparkle:nth-child(11) {
  top: 20%;
  left: 30%;
  animation-delay: 2s;
  width: 16px;
  height: 16px;
}

.prize-showcase-container .sparkle:nth-child(12) {
  top: 35%;
  right: 25%;
  animation-delay: 2.2s;
  width: 14px;
  height: 14px;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.5) rotate(180deg);
  }
}

/* Add a subtle rotation to the sparkles */
.prize-showcase-container .sparkle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) rotate(45deg);
  animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1) translateX(50%);
  }
  50% {
    transform: translateY(-20px) scale(1.02) translateX(50%);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.prize-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  max-width: 900px;
}

.prize-text {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: glow 2s ease-in-out infinite;
  margin-bottom: 35px;
}

.prize-name {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  animation: textGlow 2s ease-in-out infinite;
}

.prize-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 2;
}

.prize-item:hover {
  transform: scale(1.05);
}

.prize-item.prize-2nd {
  top: -20px;
  left: 60px;
  animation: floatSecondary 4s ease-in-out infinite;
}

.prize-item.prize-3rd {
  bottom: 0px;
  left: 0px;
  animation: floatSecondary 4s ease-in-out infinite 1s;
}

.prize-item.prize-4th {
  top: 20px;
  right: 60px;
  animation: floatSecondary 4s ease-in-out infinite 2s;
}

.prize-item.prize-5th {
  bottom: 0px;
  right: 0px;
  animation: floatSecondary 4s ease-in-out infinite 3s;
}

.prize-item img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.prize-item:hover img {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* .prize-item.prize-5th img,
.prize-item.prize-4th img {
  max-width: 160px;
} */

.prize-sub-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.prize-item:hover .prize-sub-label {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.prize-sub-text {
  font-family: "Saira Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  animation: glowSecondary 3s ease-in-out infinite;
}

.prize-sub-name {
  font-family: "Saira Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.prize-podium {
  bottom: -135px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  max-width: 550px;
  width: 100%;
}

@keyframes floatSecondary {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowSecondary {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  }
}

/* Add sparkle effects to secondary prizes */
.prize-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkleSecondary 2s ease-in-out infinite;
  opacity: 0;
}

.prize-item:hover::before {
  opacity: 1;
}

.prize-2nd::before {
  top: -10px;
  right: -10px;
  animation-delay: 0s;
}

.prize-3rd::before {
  top: -10px;
  left: -10px;
  animation-delay: 0.5s;
}

.prize-4th::before {
  bottom: -10px;
  right: -10px;
  animation-delay: 1s;
}

@keyframes sparkleSecondary {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 992px) {
  .prize-item img,
  .prize-item.prize-5th img,
  .prize-item.prize-4th img {
    max-width: 140px;
  }

  .prize-sub-label {
    display: none;
  }

  .prize-item.prize-2nd {
    top: 20px;
    left: 20px;
  }

  .prize-item.prize-3rd {
    top: 230px;
    bottom: unset;
    left: -50px;
  }

  .prize-item.prize-4th {
    top: 20px;
    right: 20px;
  }

  .prize-item.prize-5th {
    top: 230px;
    bottom: unset;
    right: -50px;
  }
}
@media (max-width: 768px) {
  .prize-image-main,
  .prize-item {
    display: none;
  }

  .prize-podium {
    max-width: 370px;
    bottom: -130px;
  }

  .prize-showcase-container {
    height: 400px;
  }

  .prize-label {
    display: none;
  }
}

@media (max-width: 576px) {
  .footer .img-footer {
    max-width: 300px;
    top: 30px;
  }
}

.prize-mobile-carousel {
  max-width: 300px;
  max-height: 300px;
  margin: 0 auto;
}

.prize-mobile-carousel .item {
  padding-top: 20px;
}

.prize-mobile-carousel .item img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.prize-mobile-carousel .item img {
  filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.7));
  animation: glowPulseMobileSub 2s ease-in-out infinite;
  z-index: 2;
  transform-origin: center;
  padding: 0 10px;
}
.prize-mobile-carousel .item img.main {
  animation: glowPulseMobile 2s ease-in-out infinite;
}

@keyframes glowPulseMobile {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 206, 45, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 206, 45, 0.9)) brightness(1.1);
  }
}

@keyframes glowPulseMobileSub {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) brightness(1.1);
  }
}

.prize-label-mobile {
  background-color: #000f1fa4;
  backdrop-filter: blur(5px);
  padding: 20px 10px;
  border-radius: 10px;
}

.prize-label-mobile .prize-text {
  font-size: 42px;
  line-height: 30px;
  margin: 0;
}

.prize-label-mobile .prize-name {
  font-size: 24px;
}

.prize-label-mobile .prize-sub-text {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.prize-label-mobile .prize-sub-name {
  font-size: 24px;
  display: block;
}

.ingame-items-section {
  background-image: linear-gradient(
      var(--secondary-color),
      rgba(0, 0, 0, 0.5),
      var(--secondary-color)
    ),
    url(/images/bg/bg-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

@media (max-width: 1199px) {
  .ingame-items-wrapper .owl-stage-outer {
    padding: 40px 0;
  }
}

.items-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.item-card {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatCard 6s ease-in-out infinite;
  overflow: hidden;
}

.item-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Rarity-based glow effects */
.item-card[data-rarity="legendary"]::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 0, 207, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(255, 0, 207, 0.5);
}

.item-card[data-rarity="fabled"]::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 50, 50, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(255, 50, 50, 0.5);
}

.item-card[data-rarity="mythical"]::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 174, 38, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(255, 174, 38, 0.5);
}

.item-card[data-rarity="unique"]::before {
  background: radial-gradient(
    circle at center,
    rgba(122, 255, 250, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(122, 255, 250, 0.5);
}

.item-card[data-rarity="uncommon"]::before {
  background: radial-gradient(
    circle at center,
    rgba(182, 255, 122, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(182, 255, 122, 0.5);
}

.item-card[data-rarity="common"]::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.item-card:hover::before {
  opacity: 0.8;
  animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.item-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.item-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.item-card:hover .item-image {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.item-info {
  text-align: center;
  width: 100%;
}

.item-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.item-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 8px;
}

.item-rarity {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.item-rarity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  animation: glowPulse 2s ease-in-out infinite;
}

.item-card:hover .item-rarity::before {
  opacity: 0.5;
}

.item-rarity.common {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.item-rarity.uncommon {
  background: rgba(182, 255, 122, 0.1);
  color: #b6ff7a;
}

.item-rarity.unique {
  background: rgba(122, 255, 250, 0.1);
  color: #7afffa;
}

.item-rarity.mythical {
  background: rgba(255, 174, 38, 0.1);
  color: #ffae26;
}

.item-rarity.fabled {
  background: rgba(255, 50, 50, 0.1);
  color: #ff3232;
}

.item-rarity.legendary {
  background: rgba(255, 0, 207, 0.1);
  color: #ff00cf;
}

.item-rarity.common::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
}

.item-rarity.uncommon::before {
  background: radial-gradient(
    circle at center,
    rgba(182, 255, 122, 0.3) 0%,
    transparent 70%
  );
}

.item-rarity.unique::before {
  background: radial-gradient(
    circle at center,
    rgba(122, 255, 250, 0.3) 0%,
    transparent 70%
  );
}

.item-rarity.mythical::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 174, 38, 0.3) 0%,
    transparent 70%
  );
}

.item-rarity.fabled::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 50, 50, 0.3) 0%,
    transparent 70%
  );
}

.item-rarity.legendary::before {
  background: radial-gradient(
    circle at center,
    rgba(255, 0, 207, 0.3) 0%,
    transparent 70%
  );
}

/* Cashout Popup Styles */
.cashout-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 15, 31, 0.9);
  border: 1px solid rgba(254, 155, 1, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
  z-index: 1000;
  max-width: 400px;
}

.cashout-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(254, 155, 1, 0.1), transparent);
  z-index: -1;
}

.cashout-popup .popup-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cashout-popup .popup-icon {
  font-size: 24px;
  color: #fcf3ad;
  animation: glow 2s ease-in-out infinite;
}

.cashout-popup .popup-text {
  font-family: "Saira Condensed", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.cashout-popup .popup-name {
  color: #fcf3ad;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(252, 243, 173, 0.5);
}

.cashout-popup .popup-amount {
  color: #fcf3ad;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(252, 243, 173, 0.5);
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 5px rgba(254, 155, 1, 0.2) !important;
}

.owl-dot.active {
  background: var(--primary-color) !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(254, 155, 1, 0.4) !important;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(252, 243, 173, 0.5);
  }
  50% {
    text-shadow: 0 0 10px rgba(252, 243, 173, 0.8);
  }
}

.bg-characters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-characters .container {
  height: 100%;
  position: relative;
}

.bg-characters img {
  position: absolute;
  aspect-ratio: 1/1;
  bottom: 330px;
}

.bg-characters img:nth-child(1) {
  width: 350px;
  left: -120px;
}

.bg-characters img:nth-child(2) {
  width: 320px;
  right: -120px;
}

@media (max-width: 992px) {
  .bg-characters img {
    bottom: 450px;
  }

  .bg-characters img:nth-child(1) {
    width: 300px;
  }

  .bg-characters img:nth-child(2) {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .bg-gradation {
    height: 380px;
  }

  .bg-characters img {
    bottom: 280px;
  }

  .bg-characters img:nth-child(1) {
    width: 200px;
    left: -80px;
  }

  .bg-characters img:nth-child(2) {
    width: 180px;
    right: -80px;
  }
}

.btn-actions {
  background: linear-gradient(45deg, var(--primary-color), #ff6b00);
  color: white !important;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 155, 1, 0.3);
  border: 2px solid transparent;
  font-family: "Saira Condensed", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 230px;
  height: 60px;
  font-size: 22px;
}

.btn-actions::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.165),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.btn-actions::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6b00, var(--primary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-actions:hover {
  box-shadow: 0 6px 20px rgba(254, 155, 1, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  animation: glow 1.5s ease-in-out infinite alternate;
}

.btn-actions:hover::after {
  opacity: 1;
}

.btn-actions:active {
  box-shadow: 0 2px 10px rgba(254, 155, 1, 0.3);
}

.btn-actions img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .btn-actions {
    min-width: 180px;
    height: 50px;
    font-size: 18px;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.btn-actions.btn-footer {
  position: absolute;
  height: 36px;
  min-width: 100px;
  font-size: 16px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .btn-actions.btn-footer {
    height: 32px;
    min-width: 75px;
    font-size: 14px;
  }
}

.language-selector {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  aspect-ratio: 1/1;
}

.language-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.language-toggle .flag-icon {
  width: 24px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
}

.language-dropdown {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  display: none;
  min-width: 150px;
}

.language-selector:hover .language-dropdown {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 14px;
}

.language-option:hover {
  background: rgba(91, 62, 62, 0.1);
}

.language-option .flag-icon {
  width: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .language-selector {
    bottom: 10px;
    left: 10px;
  }

  .language-toggle .flag-icon,
  .language-option .flag-icon {
    width: 16px;
  }
}

/* navbar */
.submenu-container {
  position: relative;
}

.submenu-container .nav-link {
  cursor: pointer;
}

.submenu-container .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 15, 31, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 155, 1, 0.2);
  border-radius: 8px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.submenu-container.active .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu-container .submenu a {
  display: block;
  padding: 8px 16px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
}

.submenu-container .submenu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.172);
}

.submenu-container.active .nav-link {
  color: #fff;
}

@media (max-width: 991.98px) {
  .submenu-container .submenu {
    position: relative;
    height: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.165);
    backdrop-filter: blur(10px);
    border: unset;
    width: 200px;
  }

  .submenu-container.active .submenu {
    height: fit-content;
  }

  .submenu-container .submenu a:hover {
    background: rgba(0, 0, 0, 0.181);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 200px;
  }
}

/* Leaderboard Filter Styles */
.leaderboard-filter {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex: 1;
}

.leaderboard-filter .form-select {
  background: rgba(0, 15, 31, 0.8);
  border: 1px solid rgba(254, 155, 1, 0.2);
  color: #fff;
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 160px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.leaderboard-filter .form-select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(254, 155, 1, 0.3);
}

.leaderboard-filter .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(254, 155, 1, 0.4);
  outline: none;
}

.leaderboard-filter .form-select option {
  background: rgba(0, 15, 31, 0.9);
  color: #fff;
}

.leaderboard-filter > p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

@media (max-width: 768px) {
  .leaderboard-filter {
    max-width: 240px;
  }

  .leaderboard-filter .form-select {
    font-size: 0.9rem;
    padding: 0.4rem 1.8rem 0.4rem 0.8rem;
  }
}

.fade:not(.show) {
  display: none;
}

.leaderboard-filter .form-select:disabled {
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  opacity: 0.7;
}

.leaderboard-filter .form-select:disabled:hover {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.leaderboard-filter .form-select:disabled:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.reward-content {
  margin-top: 40px;
}

.reward-content h3 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

/* Countdown Timer Styles */
.countdown-timer {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.countdown-timer > p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  aspect-ratio: 1/1;
}

.timer-item span:first-child {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.timer-item .label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .countdown-timer {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .timer {
    flex-wrap: wrap;
  }

  .countdown-timer > p {
    margin-bottom: 5px;
  }
}

.reward-content tbody td:first-child::before {
  content: "★";
  color: #fff;
  animation: none;
}

.reward-list-container {
  display: flex;
  flex-direction: column;
  padding-right: 0 !important;
  color: white;
}

.reward-list {
  display: flex;
  align-items: center;
  column-gap: 5px;
  border-bottom: 1px solid #ffffff22;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.reward-list:last-child {
  border-bottom: unset;
  margin-bottom: 0;
  padding-bottom: 0;
}

.reward-list .currency {
  width: 30px;
  aspect-ratio: 1/1;
}

.reward-list p {
  margin: 0;
  line-height: 1.2;
  text-align: start;
}

.reward-list .reward-list-img {
  width: 70px;
  min-width: 70px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000066;
  border-radius: 8px;
}

.reward-list .reward-list-img img {
  width: 80%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* Text color classes */
.text-common {
  color: white;
}

.text-uncommon {
  color: #b6ff7a;
}

.text-unique {
  color: #7afffa;
}

.text-mythical {
  color: #ffae26;
}

.text-fabled {
  color: #ff3232;
}

.text-legendary {
  color: #ff00cf;
}

/* Border color classes */
.border-common {
  border: 2px solid #9ca3af; /* Tailwind gray-400 */
}

.border-uncommon {
  border: 2px solid #b6ff7a;
}

.border-unique {
  border: 2px solid #7afffa;
}

.border-mythical {
  border: 2px solid #ffae26;
}

.border-fabled {
  border: 2px solid #ff3232;
}

.border-legendary {
  border: 2px solid #ff00cf;
}
