@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Chakra Petch", sans-serif;
  transition: 0.3s;
}

:root {
  /* Classic Dark Color Palette */
  --heading-family: "Chakra Petch", sans-serif;

  /* Background Colors */
  --color-bg-primary: #231F2C;
  --color-bg-secondary: #0a0a0a;
  --color-bg-tertiary: #1a1a1a;

  /* Accent Colors */
  --color-accent: #fe617c;
  --color-accent-hover: #ff7a92;
  --color-accent-active: #fe617c;

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-tertiary: #a0a0a0;
  --color-text-disabled: #666666;

  /* Border Colors */
  --color-border-default: #2a2a2a;
  --color-border-hover: #3a3a3a;
  --color-border-focus: #fe617c;

  /* Surface Colors */
  --color-surface-card: #0a0a0a;
  --color-surface-overlay: #1a1a1a;
  --color-surface-modal: #0f0f0f;

  /* State Colors */
  --color-state-success: #00ffaa;
  --color-state-error: #ef4444;
  --color-state-warning: #f59e0b;
  --color-state-info: #3b82f6;

  /* Legacy Variables (updated to new colors) */
  --bgColorBack: #000000;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #ffffff;
  --red-color-bg-1: #fe617c;
  --red-color-bg-2: #fe617c;
  --red-color-bg-3: #000000;
  --red-color-bg-4: #fe617c;
}

body {
  background-color: var(--color-bg-primary);
  background-image: url("/assets/p-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 90px; /* Account for fixed navbar height */
}

.d-flex {
  display: flex;
  gap: 20px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-5 {
  flex: 5;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 30px 50px;
}

.container-fluid {
  max-width: 1280px;
  margin: auto;
  padding: 10px 50px;
}

.main-heading {
  margin-bottom: 50px;
}

.main-heading h1 {
  font-size: 60px;
  color: var(--color-text-primary);
  line-height: 1;
  font-weight: 900;
  font-family: var(--heading-family);
  margin-bottom: 10px;
}

.main-heading p {
  letter-spacing: 0.4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}

.arrowFlexUnderline {
  gap: 20px;
}

.arrowFlexUnderline .underline {
  border: 2px solid var(--color-accent);
  width: 100%;
}

.arrowFlexUnderline .icons {
  width: 60px;
  line-height: 30px;
  height: 30px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrowFlexUnderline .icons i {
  color: var(--color-bg-primary);
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

/* ================================================
   PREMIUM GAMING HEADER - REDESIGNED
   ================================================ */

/* Header Container */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: transparent;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(254, 97, 124, 0.1) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border: 1px solid rgba(254, 97, 124, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 60px rgba(254, 97, 124, 0.15);
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

/* Animated Background Effects */
.header-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 25px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: orbit 20s linear infinite;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(254, 97, 124, 0.8) 0%,
    transparent 70%
  );
  top: -60px;
  left: 20%;
  animation-duration: 25s;
}

.orb-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(101, 170, 61, 0.6) 0%,
    transparent 70%
  );
  bottom: -40px;
  right: 30%;
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes orbit {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(100px) translateY(-20px);
  }
  50% {
    transform: translateX(0) translateY(-40px);
  }
  75% {
    transform: translateX(-100px) translateY(-20px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(254, 97, 124, 0.8);
  border-radius: 50%;
  animation: float-particle 8s linear infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 40%;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  left: 60%;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  left: 80%;
  animation-delay: 6s;
}

@keyframes float-particle {
  0% {
    transform: translateY(80px) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) translateX(50px);
    opacity: 0;
  }
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(254, 97, 124, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.main-logo {
  width: 50px;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(254, 97, 124, 0.3);
  transition: all 0.3s ease;
}

.logo-link:hover .main-logo {
  transform: rotate(360deg);
  box-shadow: 0 0 30px rgba(254, 97, 124, 0.6);
}

.logo-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(254, 97, 124, 0.3);
  border-radius: 50%;
  border-top: 2px solid rgba(254, 97, 124, 0.8);
  animation: rotate-ring 4s linear infinite;
}

@keyframes rotate-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(254, 97, 124, 0.5);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: rgba(254, 97, 124, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Enhanced Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(254, 97, 124, 0.2);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.4) 0%,
    rgba(254, 97, 124, 0.2) 100%
  );
  box-shadow: 0 4px 15px rgba(254, 97, 124, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.nav-icon i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-link:hover .nav-icon i,
.nav-link.active .nav-icon i {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(254, 97, 124, 0.8);
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 97, 124, 1),
    transparent
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link.active .nav-indicator {
  width: 80%;
}

/* Sign Up Button */
.header-cta {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.signup-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.9) 0%,
    rgba(254, 97, 124, 0.7) 100%
  );
  border: 2px solid rgba(254, 97, 124, 0.5);
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(254, 97, 124, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.signup-btn:hover::before {
  left: 100%;
}

.signup-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 1) 0%,
    rgba(65, 158, 77, 0.9) 100%
  );
  border-color: rgba(254, 97, 124, 1);
  box-shadow: 0 6px 25px rgba(254, 97, 124, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(254, 97, 124, 0.3);
  transform: translateY(-2px);
}

.signup-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(254, 97, 124, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(254, 97, 124, 0.4) 0%,
    transparent 70%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.signup-btn:hover .btn-glow {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

.signup-btn i {
  font-size: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.signup-btn:hover i {
  transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 97, 124, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.hamburger-btn:hover {
  background: rgba(254, 97, 124, 0.2);
  border-color: rgba(254, 97, 124, 0.8);
  transform: scale(1.05);
}

.hamburger-line {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover .hamburger-line {
  background: rgba(254, 97, 124, 1);
  box-shadow: 0 0 8px rgba(254, 97, 124, 0.5);
}

/* Enhanced Mobile Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(254, 97, 124, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(254, 97, 124, 0.1) 0%,
      transparent 50%
    );
}

.mobile-menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 30px 30px;
  text-align: center;
}

.close-mobile-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(254, 97, 124, 0.2);
  border: 2px solid rgba(254, 97, 124, 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-mobile-menu:hover {
  background: rgba(254, 97, 124, 0.5);
  transform: rotate(90deg);
}

.mobile-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-logo {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(254, 97, 124, 0.5);
}

.mobile-brand-name {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(254, 97, 124, 0.7);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(254, 97, 124, 0.3);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(254, 97, 124, 0.3);
  color: #ffffff;
  border-color: rgba(254, 97, 124, 0.8);
  box-shadow: 0 0 20px rgba(254, 97, 124, 0.3);
}

.mobile-nav-item i {
  font-size: 16px;
}

.mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.mobile-signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 30px;
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.9) 0%,
    rgba(254, 97, 124, 0.7) 100%
  );
  border: 2px solid rgba(254, 97, 124, 0.5);
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 250px;
  box-shadow: 0 6px 20px rgba(254, 97, 124, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.mobile-signup-btn:hover::before {
  left: 100%;
}

.mobile-signup-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 1) 0%,
    rgba(65, 158, 77, 0.9) 100%
  );
  border-color: rgba(254, 97, 124, 1);
  box-shadow: 0 8px 30px rgba(254, 97, 124, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 40px rgba(254, 97, 124, 0.4);
  transform: translateY(-3px);
}

.mobile-signup-btn i:last-child {
  transition: all 0.3s ease;
}

.mobile-signup-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .header-container {
    padding: 0 20px;
    min-height: 70px;
  }
}

@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-container {
    padding: 0 15px;
    min-height: 60px;
  }

  .main-logo {
    width: 40px;
  }

  .logo-container {
    width: 50px;
    height: 50px;
  }

  body {
    padding-top: 90px;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    margin: 0 10px;
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .mobile-cta {
    margin-top: 30px;
  }

  .mobile-signup-btn {
    min-width: 200px;
    padding: 16px 25px;
    font-size: 15px;
  }
}

header .logo img {
  width: 50px;
}

header ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text-primary);
}

header ul li a:hover,
header ul li a.active {
  color: var(--text-color);
}

header .horizontal-row {
  border: 1px solid var(--color-accent);
  height: 18px;
}

header .btn a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 9999px;
  background-color: var(--color-bg-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
}

header span i {
  cursor: pointer;
  font-size: 14px;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  padding: 2.7px 6px;
}

.heroSection img.mainImage {
  max-width: 500px;
  width: 100%;
  margin: auto;
}

/* Removed old hero-logo styles */

.hero-container {
  position: relative;
  display: inline-block;
  margin: 160px 0 40px 0;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 0;
  text-shadow: 0 0 20px rgba(254, 97, 124, 0.3);
  background: linear-gradient(
    45deg,
    var(--color-text-primary) 30%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.floating-logos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 150px;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  width: 60px;
  height: auto;
  opacity: 0.6;
  filter: brightness(1.2);
}

.floating-logo.logo-1 {
  top: -20px;
  left: 20px;
  animation: float1 4s ease-in-out infinite;
}

.floating-logo.logo-2 {
  top: -20px;
  right: 20px;
  animation: float2 4.5s ease-in-out infinite;
}

.floating-logo.logo-3 {
  bottom: -20px;
  left: 50px;
  animation: float3 3.5s ease-in-out infinite;
}

.floating-logo.logo-4 {
  bottom: -20px;
  right: 50px;
  animation: float4 5s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(10deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(-10deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(15deg);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, 10px) rotate(-15deg);
  }
}

/* Removed old hero-image-container and glow-circle styles */

.heroSection p {
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
}

.heroSection p.minLight {
  margin-top: 10px !important;
  margin-bottom: 20px;
}

.heroSection p.minLight span {
  color: var(--text-color);
}
.heroSection .flexBtn .btn a {
  background: var(--color-bg-primary);
  padding: 18px 38px;
  border-radius: 10px;
  color: var(--color-text-primary);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}

.heroSection .flexBtn .btn.yellowBtn a {
  background: var(--text-color) !important;
  color: var(--color-bg-primary);
}

.heroSection .flexBtn {
  margin-bottom: 50px;
}

.bounce .row {
  flex-wrap: wrap;
}

.bounce .row .box {
  max-width: 380px;
  width: 100%;
  flex-basis: 275px;
  flex-grow: 1;
  box-shadow: 0 10px 40px #00000024;
  border-radius: 15px !important;
  border: 2px solid var(--color-accent) !important;
  background: rgba(10, 10, 10, 0.6) !important;
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.bounce .row .box img {
  padding-bottom: 5px;
  max-width: 200px;
  width: 100%;
  object-fit: contain !important;
}

.underlineTextLogo {
  gap: 10px;
  margin-bottom: 30px;
}

.underlineTextLogo .underline {
  width: 100%;
  height: 2px;
  flex: 1;
  background: var(--color-accent);
}

.underlineTextLogo .gem {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #ffc720;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.underlineTextLogo a {
  gap: 5px;
}

.underlineTextLogo p {
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-style: italic;
  text-transform: uppercase;
}

.bounce .row .box .checkBox {
  background: rgba(10, 10, 10, 0.5);
  line-height: 1;
  border-radius: 12px;
  border: 2px solid var(--color-accent);
  margin-bottom: 25px;
}

.bounce .row .box .checkBox .boxes {
  padding: 20px;
  color: var(--color-text-primary);
  font-weight: 800;
  font-size: 17px;
  border-bottom: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bounce .row .box .checkBox .boxes i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: var(--color-bg-primary);
  display: flex; /* Added flex display */
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 100px;
  font-size: 15px;
  margin-right: 9px;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.bounce .row .box .checkBox .boxes span {
  flex: 1; /* Allow text to take remaining space */
  text-align: left; /* Align text to left */
}

.bounce .row .box .checkBox .boxes:nth-child(3) i {
  color: gold;
  background: #ffd7001f;
}

.bounce .row .box .checkBox .boxes:nth-child(3) {
  border-bottom: 0px solid transparent;
}

.bounce .row .box .copyBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  background: #00000014;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed #91c0ff4a;
  cursor: pointer;
  margin-bottom: 14px;
}

.bounce .row .box .copyBox i {
  color: var(--color-text-primary);
}

.bounce .row .box .copyBox p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: 900;
  color: var(--color-text-primary);
  letter-spacing: 4px;
}

.bounce .row .box .infoBtnGroup {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bounce .row .box .infoBtnGroup .btn a {
  background: var(--color-accent) !important; /* Changed to red */
  color: var(--color-bg-primary) !important;
  box-shadow: inset 0 -5px 0 #00000033 !important;
  letter-spacing: 1px;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease; /* Added transition for smooth animation */
}

.bounce .row .box .infoBtnGroup .btn a:hover {
  transform: translateY(3px); /* Push down effect on hover */
}

.bounce .row .box .infoBtnGroup a.info i {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  background: var(--color-state-info);
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: 900;

  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* CODE FOR LEADERBOARD PAGE */
.swiperSection .boxContent h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  color: var(--color-text-primary);
}

.swiperSection .boxContent .copyReward {
  background: #ff272749 !important;
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--color-bg-primary);
  width: 300px;
  margin: auto;
  margin-top: 6px;
  /* transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1); */
}

.swiperSection .boxContent .copyReward i,
.swiperSection .boxContent .copyReward p {
  color: var(--color-text-secondary) !important;
}

.swiperSection .boxContent .copyReward p {
  font-weight: 700;
}

.swiperSection .boxContent h6 {
  color: var(--color-text-secondary) !important;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}

.swiperSection .boxContent h6 span {
  color: var(--text-color);
}

.swiperContent {
  margin-top: 40px;
}

/* Premium Leaderboard Switcher */
.premium-switcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 400px;
  padding: 8px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(254, 97, 124, 0.1) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border: 2px solid rgba(254, 97, 124, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 60px rgba(254, 97, 124, 0.15);
  overflow: hidden;
}

.switcher-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(254, 97, 124, 0.05) 50%,
    transparent 100%
  );
  border-radius: 25px;
  animation: bg-slide 4s ease-in-out infinite;
}

@keyframes bg-slide {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.switcher-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(254, 97, 124, 0.5),
    transparent,
    rgba(254, 97, 124, 0.5)
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.premium-switcher:hover .switcher-glow {
  opacity: 1;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.switcher-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 15px 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  min-width: 180px;
}

.switcher-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.2) 0%,
    rgba(254, 97, 124, 0.05) 100%
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.switcher-tab:hover::before,
.switcher-tab.active::before {
  opacity: 1;
}

.switcher-tab.active {
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.3) 0%,
    rgba(254, 97, 124, 0.15) 100%
  );
  box-shadow: 0 4px 20px rgba(254, 97, 124, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.site-logo {
  width: 40px;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.switcher-tab:hover .site-logo,
.switcher-tab.active .site-logo {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(254, 97, 124, 0.4);
}

.site-name {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.switcher-tab:hover .site-name,
.switcher-tab.active .site-name {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(254, 97, 124, 0.8);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 97, 124, 1),
    transparent
  );
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.switcher-tab.active .tab-indicator {
  width: 80%;
  box-shadow: 0 0 15px rgba(254, 97, 124, 0.8);
}

/* Rules Section */
.rules-section {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 400px;
}

.rules-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.2) 0%,
    rgba(254, 97, 124, 0.1) 100%
  );
  border: 2px solid rgba(254, 97, 124, 0.3);
  border-radius: 15px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rules-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(254, 97, 124, 0.4) 0%,
    rgba(254, 97, 124, 0.2) 100%
  );
  border-color: rgba(254, 97, 124, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 97, 124, 0.3);
}

.rules-btn i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.rules-btn:hover i {
  transform: scale(1.1);
  color: rgba(254, 97, 124, 1);
}

/* Rules Modal Styling */
.rules-modal {
  max-width: 600px !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(254, 97, 124, 0.1) 50%,
    rgba(0, 0, 0, 0.95) 100%
  ) !important;
  border: 2px solid rgba(254, 97, 124, 0.4) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(254, 97, 124, 0.2) !important;
}

.rules-modal .modal-header h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warning-message {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1) 0%,
    rgba(255, 193, 7, 0.05) 100%
  );
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.warning-message ul {
  margin: 15px 0 0 0;
  padding-left: 20px;
}

.warning-message li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.warning-message li::marker {
  color: rgba(255, 193, 7, 0.8);
}

.warning-message li:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: rgba(255, 193, 7, 0.9);
}

/* Legacy support for existing classes */
.gf-btn-active {
  /* This class is handled by the .switcher-tab.active styles above */
}

.paymentLogo {
  /* This class is replaced by .site-logo */
}

.swiperContent .gallery {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.swiperContent .gf-column {
  display: none;
  padding: 20px;
  width: 100%;
  text-align: center;
}

/* Show the selected gallery */

.swiperContent .gf-column.show {
  display: block;
}

/* CODE FOR MODEL */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 920px !important;
  background: var(--color-bg-primary) !important;
  border-radius: 15px !important;
  border: 2px solid var(--color-accent) !important;
  padding: 30px;
  color: var(--color-text-primary);
  width: 100%;
  z-index: 30;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-header h2 img {
  position: absolute;
  width: 100px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: -16px;
}

.modal-header .close-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  margin: -10px;
  width: 40px;
  height: 40px;
  background: var(--color-bg-primary);
  border-radius: 100px;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent);
}

.modal-header .close-btn:hover {
  background-color: var(--color-accent);
}

.modal-content {
  line-height: 1.6;
}

.modal-content h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.modal-content h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 10px;
}

.modal-content p {
  padding: 18px;
  border-radius: 12px;
  border: 2px solid var(--color-accent);
  background: var(--color-bg-primary);
  margin-bottom: 20px;

  color: var(--color-text-secondary);
  font-size: 14px;
}

.modal-content p span {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.5rem;
  color: var(--color-text-primary);
}

.modal-content p span span {
  color: var(--color-accent);
}

#modalOverlay2 .modal-content p {
  padding: 0px;
  border-radius: 0px;
  border: none;
  background: none;
  margin-bottom: 5px;

  color: var(--color-text-primary);
  font-size: 14px;
}
#modalOverlay2,
#modalOverlay1 {
  padding: 0px 10px;
}
#modalOverlay2 .modal {
  padding: 30px 30px 50px 30px;
}
#modalOverlay2 .modal-content ul {
  padding: 0px 0px 0px 26px;
}
#modalOverlay2 .modal-content ul li {
  list-style: disc !important;
}
.modal-content .btn a {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--color-accent) !important;
  color: var(--color-bg-primary) !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}

.modal-content .btn a:hover {
  box-shadow: inset 0 5px 0 #00000033 !important;
}

.open-modal-btn {
  background: var(--color-accent) !important;
  border: 2px solid var(--color-bg-primary) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--color-text-primary) !important;
}

.modelButtons {
  margin-top: 20px;
  flex-wrap: wrap;
}

.modelButtons p {
  background: rgba(10, 10, 10, 0.5) !important;
  border: 2px solid var(--color-accent) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--color-text-primary) !important;
}

.gallery .headingIcons {
  gap: 6px;
}

.gallery .headingIcons img {
  width: 28px;
}
.gallery .headingIcons h1 {
  display: inline;
  font-size: 2rem;
  color: var(--color-text-primary) !important;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 900;
  text-align: center;
}

.gallery .mainHeading {
  color: var(--color-text-secondary) !important;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gallery .gridRow {
  margin-top: 40px;
  flex-wrap: wrap;
}

.gallery .gridRow .box {
  margin-bottom: 30px;
  box-shadow: 0 10px 40px var(--color-accent);
  border-radius: 15px !important;
  border: 2px solid var(--color-accent) !important;
  background: rgba(10, 10, 10, 0.5) !important;
  padding: 2rem;
  max-width: 370px;
  flex-basis: 280px;
  flex-grow: 1;
  width: 100%;
  height: 370px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery .gridRow .box .imgNumberBox {
  position: relative;
  margin-bottom: 20px !important;
}

.gallery .gridRow .box .imgNumberBox {
  width: 101px;
  margin: auto;
}

.gallery .gridRow .box .imgNumberBox img {
  border-radius: 50%;
  width: 100px;
  line-height: 100px;
  /* border: 2px solid rgba(254, 97, 124, 0.17); */
  padding: 6px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
}

.gallery .gridRow .box .imgNumberBox .boxNumber i {
  position: absolute;
  text-shadow: 0 4px 8px var(--color-bg-primary);
  bottom: -7px;
  font-size: 33px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber p {
  position: absolute;
  z-index: 2;
  color: var(--color-bg-primary);
  font-weight: 800;
  font-size: 16px;
  bottom: 0px;
}

.gallery .gridRow .box-1 .imgNumberBox .boxNumber i {
  color: #e5e5e5;
}

.gallery .gridRow .box .mainHeading {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  gap: 5px;
}
.gallery .gridRow .box .mainHeading img {
  width: 30px;
}

.gallery .gridRow .box .mainPara {
  color: var(--color-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

.gallery .gridRow .box .imgprice {
  gap: 6px;
  margin-bottom: 20px;
}

.gallery .gridRow .box .imgprice img {
  width: 22px;
}

.gallery .gridRow .box .imgprice p {
  font-size: 19px;
  color: var(--color-text-primary) !important;
  font-weight: 600;
}

.gallery .gridRow .box .priceBtn {
  background: linear-gradient(195deg, var(--color-accent), transparent);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
  width: 190px;
  margin: auto;
}

.gallery .gridRow .box .priceBtn img {
  width: 24px;
}

.gallery .gridRow .box .priceBtn p {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-state-success) !important;
}

.gallery .gridRow .box-2 {
  margin-bottom: 100px;
}

.gallery .gridRow .box-2 .imgNumberBox .boxNumber i {
  color: #ffcf39;
}

.gallery .gridRow .box-3 .imgNumberBox .boxNumber i {
  color: #e98332;
}

.gallery .leaderBoardTable table {
  max-width: 9900px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 50px;
}

.gallery #customers {
  border-collapse: collapse;
  border-radius: 10px !important;
  width: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery #customers td,
#customers th {
  border-bottom: 1px solid var(--color-accent);

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: var(--color-text-primary);
  text-align: left;
}

/* .gallery #customers tr.endChild td,
.gallery #customers tr.endChild th{
    border: none !important;
}  */

/* #customers tr:nth-child(even){ */
.gallery #customers td {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--color-text-secondary);
  background-color: rgba(254, 97, 124, 0.1);
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(1) {
  width: 25px !important;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 19.2px;
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(3) {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--text-color);
}

.gallery #customers tr td:nth-child(4) {
  font-size: 16px;
  font-weight: 900;
  line-height: 19.2px;
  color: var(--color-state-success) !important;
}

.gallery #customers th {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  text-transform: uppercase;

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.gallery #customers th:nth-child(1) {
  border-radius: 20px 0px 0px 0px !important;
}
.gallery #customers tr:nth-child(2) th,
.gallery #customers tr:nth-child(3) th,
.gallery #customers tr:nth-child(4) th,
.gallery #customers tr:nth-child(5) th,
.gallery #customers tr:nth-child(6) th,
.gallery #customers tr:nth-child(7) th,
.gallery #customers tr:nth-child(8) th,
.gallery #customers tr:nth-child(9) th,
.gallery #customers tr:nth-child(10) th,
.gallery #customers tr:nth-child(11) th,
.gallery #customers tr:nth-child(12) th,
.gallery #customers tr:nth-child(13) th,
.gallery #customers tr:nth-child(14) th,
.gallery #customers tr:nth-child(15) th,
.gallery #customers tr:nth-child(16) th,
.gallery #customers tr:nth-child(17) th,
.gallery #customers tr:nth-child(18) th,
.gallery #customers tr:nth-child(19) th,
.gallery #customers tr:nth-child(20) th,
.gallery #customers tr:nth-child(21) th {
  border-radius: 0px 0px 0px 0px !important;
  background-color: rgba(254, 97, 124, 0.1);
}

.gallery #customers th:nth-child(4) {
  border-radius: 0px 20px 0px 0px !important;
}

.gallery #customers tr:nth-child(1) {
  background-color: var(--color-bg-primary);
  border: none !important;
  backdrop-filter: blur(10px);
}

.gallery #customers img {
  width: 28px;
  line-height: 28px;
  border-radius: 50%;
}

.gallery #customers tr td:nth-child(2) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex,
.gallery #customers tr td:nth-child(4) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex img,
.gallery #customers tr td:nth-child(4) .d-flex img {
  width: 24px;
  height: 24px;
}

.timeWatch {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -8px !important;
  position: relative;
}

.gallery .timeWatch .special-icon {
  font-size: 77px;
  position: absolute;
  color: #122347;
  z-index: 0;
  top: 0;
  background: -webkit-linear-gradient(#ff572245, var(--text-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px #ff57221a;
}

.gallery .timeWatch .stopWatch {
  position: relative;
  font-size: 24px;
  top: 5px;
  color: var(--text-color);
}

.gallery .timeSection .underlineHaeding {
  margin-top: 20px;
}

.gallery .timeSection .underlineHaeding .underline {
  border: 2px solid var(--color-accent);
  width: 100%;
}

.gallery .timeSection .underlineHaeding h1 {
  max-width: 258px;
  width: 100%;
  color: var(--color-text-primary);
}

.gallery .count-down .container {
  padding: 20px 10px 10px 10px;
}

.gallery .count-down .row .countdown,
.gallery .count-down .row .countdown .counter {
  gap: 20px;
  display: flex;
  justify-content: center;
}

.gallery .count-down .row .countdown .counter {
  gap: 2px;
  flex-direction: column;
}

.gallery .count-down .row .countdown span {
  color: var(--text-color) !important;
  font-weight: 800;
  font-size: 18px;
}

.gallery .count-down .row .countdown .label {
  font-size: 12px;
  color: var(--color-text-secondary) !important;
}

.gallery .count-down .row .countdown span,
.gallery .count-down .row .countdown .label {
  font-weight: 600;
  line-height: 16.93px;
  font-family: var(--secondary-font);
  display: inline-block;
}

.gallery .lastPara p {
  color: var(--color-text-secondary) !important;
}

.gallery .lastPara p span {
  margin-left: 4px;
  color: var(--color-text-primary);
}

.gallery .btnPrivious a {
  font-weight: 700;
  color: var(--color-text-primary);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
  cursor: pointer;
  background-color: var(--color-accent);
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Above bg-gradient but below content */
  pointer-events: none; /* Allows clicking through the canvas */
}

.bg-gradient {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(254, 97, 124, 0.3) 0%,
    rgba(254, 97, 124, 0.2) 30%,
    rgba(254, 97, 124, 0.1) 60%,
    rgba(254, 97, 124, 0.05) 100%
  );
  z-index: -1;
}

/* .bg-image img, canvas#bg-animation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
} */

.leaderBoardBox .row {
  background: rgba(10, 10, 10, 0.5);
  padding: 5rem;
  gap: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: 2px solid var(--color-accent);
  margin-bottom: 50px;
  flex-wrap: wrap;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.leaderBoardBox .col-1 {
  flex-basis: 320px;
  flex-grow: 1;
}

.leaderBoardBox h1 {
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-primary);
}

.leaderBoardBox p {
  margin-bottom: 20px !important;
  max-width: 500px;
  color: var(--color-text-secondary);
  font-size: 16px;
  margin: 5px auto 0;
  text-align: center;
}

.leaderBoardBox .row .bxo {
  max-width: 600px;
  margin: auto;
}

.leaderBoardBox .row .bxo .iconsBox {
  max-width: 400px;
  margin: auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.leaderBoardBox .row .bxo .iconsBox img {
  max-width: 100px;
  width: 100%;
}

.leaderBoardBox .row .bxo .iconsBox a {
  flex-basis: 120px;
}

.leaderBoardBox .row .bxo .btn a {
  letter-spacing: 1px;
  font-size: 16px !important;
  background: var(--color-accent);
  padding: 18px 62px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--color-bg-primary);
  line-height: 28px;
}

.leaderBoardBox .row .bxo .btn a:hover {
  background: var(--color-accent-hover);
}

.giveaway .numbering {
  color: var(--color-text-primary) !important;
  border-radius: 30px;
  border: 2px solid var(--color-accent);
  background: rgba(10, 10, 10, 0.5);
  margin-bottom: 50px;
  margin-top: 30px;
  /* min-height: 170px; */
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giveaway .numbering h1 {
  color: var(--color-text-primary);
  font-size: 40px;
}

.giveaway .numbering h1 i {
  font-size: 50px;
  margin-right: 30px;
}

.giveaway .numbering h1 span {
  font-size: 40px;
  padding: 30px;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 12px;
  line-height: 0.5;
  font-size: 40px;
  border: 2px solid var(--color-accent);
  font-weight: 800;
  margin: 0px 6px;
  display: inline-block;
}

.videosGrid .btn a {
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  padding: 16px 32px;
  color: var(--color-bg-primary);
  border-radius: 8px;
  background-color: var(--color-accent);
  display: inline-block;
}

.videosGrid .btn a:hover {
  background-color: var(--color-accent-hover);
}

.videoContent {
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.videoContent .col-1 {
  flex-basis: 270px;
  border: 2px solid var(--color-accent);
  border-radius: 9px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.videoContent .col-1 .imgBox {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
}

.videoContent .col-1 .imgBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.videoContent .col-1 .imgBox img:hover {
  transform: translate(-50%, -50%) scale(1.25);
}

.videoContent .col-1 h3 {
  color: var(--color-text-primary);
  line-height: 1.25rem;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.videoContent .col-1 .redBgpara {
  gap: 5px;
}

.videoContent .col-1 .redBgpara p {
  color: var(--color-text-secondary) !important;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 16px;
}

.videoContent .col-1 .redBgpara h6 {
  background-color: var(--color-state-error);
  color: var(--color-text-primary);
  padding: 3px 12px;
  margin-left: 5px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
}

.videoContent .col-1 .redBgpara h6.blueColor {
  background-color: var(--color-state-info);
}

.videoContent .col-1 .redBgpara h6.orenageCOlor {
  background-color: var(--color-state-warning);
}

/* Footer Styles - Compact Design */
footer {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(254, 97, 124, 0.2);
  padding: 20px 0 15px;
  margin-top: 40px;
}

footer .footer-compact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: color 0.2s ease;
}

footer .footer-links a:hover {
  color: var(--color-text-primary);
}

footer .social-icons {
  display: flex;
  gap: 15px;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(254, 97, 124, 0.1);
  color: var(--color-accent);
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
  transform: translateY(-3px);
}

footer .social-icons i {
  font-size: 18px;
}

footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(254, 97, 124, 0.1);
  padding-top: 15px;
}

footer .disclaimer {
  color: var(--color-text-tertiary);
  font-size: 12px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 8px;
}

footer .copyright {
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 698.98px) {
  footer .footer-main {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  footer .footer-links {
    justify-content: center;
    gap: 20px;
  }

  footer .social-icons {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  footer {
    padding: 15px 0 10px;
  }

  footer .footer-links {
    gap: 15px;
  }

  footer .footer-links a {
    font-size: 13px;
  }

  footer .social-icons a {
    width: 32px;
    height: 32px;
  }

  footer .social-icons i {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 928.99px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 928.98px) {
  .mobile {
    display: none;
  }

  .bounce .row {
    justify-content: center;
  }
  .swiperContent .gf-column {
    padding: 20px 5px;
  }
  .giveaway .numbering h1 span {
    font-size: 20px !important;
    padding: 12px;
    border-radius: 6px;
    margin: 0px 1px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .giveaway .numbering h1 i {
    font-size: 20px;
    margin-right: 5px;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }
}

@media screen and (max-width: 698.98px) {
  .gallery .headingIcons h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .container {
    padding: 30px 10px;
  }

  .container-fluid {
    padding: 10px 10px;
  }
  footer .footer-sections {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  footer .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer .social-icons {
    justify-content: center;
  }
  .premium-switcher {
    max-width: 300px;
    margin: 20px auto;
    padding: 6px;
  }

  .switcher-tab {
    padding: 12px 20px;
    min-width: 140px;
  }

  .site-logo {
    width: 32px;
  }

  .site-name {
    font-size: 14px;
  }

  .rules-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .rules-btn i {
    font-size: 14px;
  }

  .leaderBoardBox .row {
    padding: 3rem 1rem 2rem 1rem;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }

  .main-heading h1 {
    font-size: 40px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 3px;
  }

  .floating-logos {
    width: 300px;
    height: 120px;
  }

  .floating-logo {
    width: 45px;
  }

  .floating-logo.logo-1 {
    left: 10px;
  }

  .floating-logo.logo-2 {
    right: 10px;
  }

  .floating-logo.logo-3 {
    left: 30px;
  }

  .floating-logo.logo-4 {
    right: 30px;
  }

  .glow-circle {
    width: 100px;
    height: 100px;
  }
}

/* Glitch logo styles - deprecated */
.glitch-logo {
  display: none;
}

.glitch-logo-letter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glitch-logo-letter:nth-child(2) {
  color: var(--color-accent);
  animation: glitch-1 2.5s infinite;
  opacity: 0.7;
}

.glitch-logo-letter:nth-child(3) {
  color: var(--color-accent);
  animation: glitch-2 3.5s infinite;
  opacity: 0.7;
}

.glitch-logo-letter:nth-child(1) {
  z-index: 1;
  animation: pulse 3s infinite;
}

@keyframes glitch-1 {
  0% {
    transform: translate(0);
    opacity: 0.7;
  }
  10% {
    transform: translate(-8px, 5px);
    opacity: 0.6;
  }
  20% {
    transform: translate(-8px, -5px);
    opacity: 0.4;
  }
  30% {
    transform: translate(0);
    opacity: 0.7;
  }
  40% {
    transform: translate(5px, 5px);
    opacity: 0.6;
  }
  50% {
    transform: translate(5px, -5px);
    opacity: 0.4;
  }
  60% {
    transform: translate(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 0.7;
  }
}

@keyframes glitch-2 {
  0% {
    transform: translate(0);
    opacity: 0.7;
  }
  15% {
    transform: translate(10px, -10px);
    opacity: 0.5;
  }
  25% {
    transform: translate(-3px, 3px);
    opacity: 0.3;
  }
  35% {
    transform: translate(0);
    opacity: 0.7;
  }
  65% {
    transform: translate(5px, 5px);
    opacity: 0.5;
  }
  75% {
    transform: translate(-8px, -8px);
    opacity: 0.3;
  }
  85% {
    transform: translate(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 1),
      0 0 40px rgba(254, 97, 124, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
}

.heroSection {
  padding-top: 0;
}
