:root {
  --primary-color: #ff69b4; /* Hot pink */
  --secondary-color: #ff1493; /* Deep pink */
  --accent-color: #ffb6c1; /* Light pink */
  --low-contrast-primary: #ff69b4;

  --background-light: #0d0d0d; /* Near black */
  --background-white: #1a1a1a; /* Dark gray */
  --glossy-background-white: #1a1a1ad5; /* Dark gray */

  --text-primary: #e0e0e0; /* Light gray for readability */
  --text-secondary: #a3a3a3; /* Muted gray */
  --text-muted: #7d7d7d; /* Even more muted */

  --border-color: #2a2a2a; /* Dark border for contrast */
  --hover-color: #222222; /* Slightly lighter for hover effects */

  --gradient-1: linear-gradient(135deg, #ff69b4 0%, #ff1493 120%);
  --gradient-2: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
  --gradient-3: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);

  --shadow-sm: 0 0px 25px rgba(255, 105, 180, 0.3);
  --shadow-md: 0 0px 14px rgba(255, 105, 180, 0.5);
  --shadow-lg: 0 0px 25px rgba(255, 105, 180, 0.7);

  /* --swiper-navigation-color: white; */
  --swiper-theme-color: #ff69b4 !important;
}

/* #1A1A1A */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background-light);
  color: var(--text-primary);
  line-height: 1.6;
}

.particle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.3);
  filter: blur(3px);
  z-index: 100;
  animation: float 6s ease-in-out infinite alternate;
}
.logo img {
  width: 60px;
  height: 60px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 92px;
  background: var(--glossy-background-white);
  backdrop-filter: blur(10px);
  /* border-bottom: 1px solid var(--border-color); */
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item a:hover {
  color: var(--primary-color);
}

.nav-item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

/* dropdown menu */
/* Dropdown container */
.nav-item.dropdown {
  position: relative;
}

/* Hide dropdown by default */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #111;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
  min-width: 150px;
  border-radius: 6px;
  top: 100%;
  left: -30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.nav-item.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #222;
}

.drop-icon {
  font-size: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  margin-top: 93px;
  background: var(--background-white);
  overflow: hidden;
  position: relative;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -3px;
  left: -3px;

  right: -3px;
  bottom: -3px;
  /* background: linear-gradient(25deg, red,blue,red, red);
            background-size: 400% 400%;
            animation: rgbShift 8s linear infinite; */
  background: linear-gradient(
    90deg,
    transparent 0%,
    red 20%,
    green 50%,
    blue 80%,
    transparent 100%
  );
  animation: pulse-line 2s ease-in-out infinite;
  filter: blur(5px);
}

.hero-swiper {
  height: 70vh;
  min-height: 500px;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  position: relative;
}
/* 
        .hero-slide:nth-child(2) {
            background: var(--gradient-2);
        }

        .hero-slide:nth-child(3) {
            background: var(--gradient-3);
        } */

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  /* margin-bottom: 1rem; */
  line-height: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #000000;
  border: 2px solid #000000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.hero-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

/* Introduction Section */
.intro-section {
  padding: 5rem 2rem;
  background: var(--background-light);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.2));
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* .card:hover::before {
            transform: scaleX(1);
        } */

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  filter: drop-shadow(0 0 25px rgba(255, 105, 180, 0.4));
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.card:nth-child(2) .card-icon {
  background: var(--gradient-2);
}

.card:nth-child(3) .card-icon {
  background: var(--gradient-3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* fun section */
/* body::before {
            content: '';
            position: fixed;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.1) 25%, transparent 50%),
                linear-gradient(45deg, transparent 0%, rgba(118, 75, 162, 0.08) 25%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(240, 147, 251, 0.06) 25%, transparent 50%);
            animation: scrollLines 8s linear infinite;
            z-index: 0;
            pointer-events: none;
        } */

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

.fun-container {
  max-width: 1200px;
  margin: 0 auto;
  /* background: rgba(255, 255, 255, 0.9); */
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}
.fun-container h3 {
  color: var(--text-primary);
}
.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.heading-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  margin: 1.5rem auto;
  border-radius: 2px;
}
header .divider {
  height: 20px;
  width: 3px;
  margin: 0px;
  background: var(--primary-color);
}

.description {
  text-align: center;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-note {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.privacy-note a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  position: relative;
}

.icon-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glossy orb effect */
.icon-orb {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 
                0 8px 32px var(--primary-color),
                inset 0 2px 0 var(--primary-color),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1); */
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.4));
}

/* Glossy highlight */
.icon-orb::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 35%;
  height: 35%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50%;
  filter: blur(1px);
  z-index: 3;
}

/* Scanning line effect */
.icon-orb::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%,
  50% {
    transform: translateY(-100%) skewY(-10deg);
  }
  100% {
    transform: translateY(200%) skewY(-10deg);
  }
}

.feature:hover .icon-orb {
  transform: translateY(-8px) scale(1.05);
  /* box-shadow: 
                0 20px 50px rgba(102, 126, 234, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.15); */
  filter: drop-shadow(0 0 25px rgba(255, 105, 180, 0.7));
}

/* Different colors for each orb */
.feature:nth-child(1) .icon-orb {
  background: var(--gradient-3);
}

.feature:nth-child(2) .icon-orb {
  background: var(--gradient-3);
  /* box-shadow:  */
  /* 0 8px 32px rgba(240, 147, 251, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1); */
}

/* .feature:nth-child(2):hover .icon-orb {
            box-shadow: 
                0 20px 50px var(--primary-color),
                inset 0 2px 0 var(--primary-color),
                inset 0 -2px 0 var(--primary-color);
        } */

.feature:nth-child(3) .icon-orb {
  background: var(--gradient-3);
  /* box-shadow:  */
  /* 0 8px 32px rgba(79, 172, 254, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1); */
}

.feature:nth-child(3):hover .icon-orb {
  /* box-shadow: 
                0 20px 50px rgba(79, 172, 254, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.15); */
}

.icon {
  font-size: 2.5rem;
  z-index: 0;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.feature-description {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.activate-section {
  text-align: center;
  margin-top: 3rem;
  color: #a0aec0;
  font-size: 1.1rem;
}

/* Count Section */
.count-section {
  padding: 5rem 2rem;
  background: var(--background-white);
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.count-item {
  text-align: center;
  padding: 2rem 1rem;
}

.count-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
}

.count-label {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* services */
.services-section {
  padding: 5rem 2rem;
  background: var(--background-light);
  position: relative;
}
.services-section a,
.parallax-section a {
  text-decoration: none;
  color: var(--primary-color);
  text-transform: lowercase;
}
.fun-container a {
  color: var(--primary-color);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.service-card:nth-child(2n) .service-icon {
  background: var(--gradient-2);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--gradient-3);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
}

/*who are we  */

.section-container {
  background: var(--background-light);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 5rem;
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-content .divider {
  margin-left: 0px;
}
.text-content .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0px;
  position: relative;
}

.description-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.access-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  background: rgba(0, 255, 0, 0.05);
  border-color: rgba(0, 255, 0, 0.2);
  transform: translateX(5px);
}

.feature-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--low-contrast-primary);
  margin-right: 1rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}
/* 
        .feature-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
        } */

.feature-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.device-mockup {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  background: var(--background-light);
}

.device-screen {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/10;
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Parallax Section */
.parallax-section {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 1)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.parallax-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.parallax-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.parallax-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.parallax-section .parallax-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--low-contrast-primary);
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.5));
}

.parallax-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 25px rgba(255, 105, 180, 0.8));
}

/* Games Section */

.games-section .swiper {
  padding: 2rem 1rem !important;
}
.games-section {
  padding: 5rem 2rem;
  background: var(--background-white);
  margin-bottom: 80px;
  position: relative;
}
.games-swiper {
  padding: 2rem 0;
}

.game-slide {
  background: var(--background-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  z-index: 100;
  filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.2));
}

.game-slide:hover {
  transform: translateY(-5px);
  border: 1px solid var(--low-contrast-primary);
  filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.4));
}

.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-content {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.game-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* FAQ section */
.faq-container {
  background: var(--background-light);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 2rem;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--background-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.2));
}
.faq-container::before {
  top: unset;
  bottom: 70px;
}

.faq-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.faq-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-list {
  padding: 1rem;
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--background-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--low-contrast-primary);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-light);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--hover-color);
}

.faq-question::before {
  content: ">";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.faq-question-text {
  flex: 1;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-primary);
}

.faq-toggle {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  text-shadow: 0 0 10px var(--primary-color);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer-content {
  padding: 1.5rem;
  background: var(--background-white);
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.accent-text {
  color: var(--accent-color);
}

.warning-text {
  color: var(--secondary-color);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.faq-item.active .faq-question::before {
  animation: pulse 2s infinite;
}

/* Cyberpunk grid pattern background */
/* .faq-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: 0;
        } */

.faq-header,
.faq-list {
  position: relative;
  z-index: 1;
}

/* Footer */

.footer-section {
  /* background: var(--background-white); */
  background: var(--background-white);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -10px 30px rgba(0, 255, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-contact {
  padding-right: 1rem;
}
.footer-contact span,
.footer-contact a {
  color: var(--text-primary);
}

.contact-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-options-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-direction: column;
}

.email-label {
  color: var(--accent-color);
  font-weight: bold;
  min-width: 50px;
}

.email-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.email-link:hover {
  color: var(--low-contrast-primary);
  text-shadow: 0 0 10px var(--primary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
  padding-left: 0.8rem;
  position: relative;
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 1.2rem;
  text-shadow: 0 0 8px var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: fit-content;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.footer-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 0, 0.1),
    transparent
  );
  /* background: var(--gradient-1); */
  transition: left 2s ease;
}

.footer-logo:hover::before {
  left: 100%;
}

.logo-placeholder {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  font-style: italic;
}

.logo-text {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 0 15px var(--primary-color);
  letter-spacing: 2px;
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 3rem;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-logo {
    grid-column: 1 / -1;
    width: 180px;
    margin: auto;
  }
}

/* Pulse animation for email */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
  }
}

.email-link:focus {
  animation: pulse-glow 2s infinite;
  outline: none;
}

.footer {
  color: var(--text-primary);
}

/* Footer Styles */
.footer {
  background: var(--background-white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle animated line at top of footer */
.footer::before,
.features::before,
.services-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    red 20%,
    green 50%,
    blue 80%,
    transparent 100%
  );
  animation: pulse-line 2s ease-in-out infinite;
  z-index: 0;
}
.services-section::before {
  top: unset;
  bottom: 70px;
}
@keyframes slide {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.copyright-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.brand-name {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.brand-name:hover {
  color: var(--low-contrast-primary);
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes rgb-border {
  to {
    border-image: linear-gradient(
        405deg,
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet,
        red
      )
      1;
  }
}

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

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-20px, -60px) scale(1.2);
    opacity: 0.8;
  }
  75% {
    transform: translate(40px, -90px) scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: translate(-10px, -120px) scale(1);
    opacity: 0.2;
  }
}
.count-animate {
  animation: countUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .divider {
    width: 20px;
    height: 3px;
    margin: 0px;
    background: var(--primary-color);
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .content-wrapper {
    padding: 2rem 1.5rem;
  }

  .device-screen {
    max-width: 300px;
    padding: 1.5rem;
  }

  .game-interface {
    padding: 1.5rem;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features::before {
    display: none;
  }

  .parallax-section .parallax-btn {
    padding: 15px 25px;
  }
  .icon {
    font-size: 2rem;
  }
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .footer-contact {
    padding-right: 0;
  }

  .contact-title {
    font-size: 1.3rem;
  }
  .footer {
    padding: 1.2rem 1rem;
  }

  .copyright-text {
    font-size: 0.9rem;
  }
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    /* height: calc(100vh - 80px); */
    background: var(--background-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-color);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 40px;
  }

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

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

  .parallax-section {
    background-attachment: scroll;
  }

  .cards-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }
  .parallax-btn {
    padding: 10px 15px !important;
    font-size: 12px;
  }
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .count-grid {
    grid-template-columns: 1fr;
  }
  .faq-answer-content {
    font-size: 14px;
    padding: 0.8rem;
  }
  .faq-item.active .faq-answer {
    max-height: 350px;
  }
}

/* Privacy policy  */

.privacy-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  background-color: #282828;
  padding: 20px;
}
h1.privacy-title {
  width: 100%;
  text-align: center;
  margin: 3rem 0rem 6rem 0rem;
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
  color: var(--text-primary);
}
.blogs-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 10px 0px 10px 0px;
  color: var(--primary-color);
}
.blogs-p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  color: var(--text-primary);
}
