/* CSS Variables for colors */
:root {
  --primary-color: #9333ea; /* Purple */
  --secondary-color: #3b82f6; /* Blue */
  --neutral-900: #171717;
  --purple-400: #c084fc;
  --white: #ffffff;
  --transparent: transparent;
}

/* Inter Font */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../font/inter-v19-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../font/inter-v19-latin-800.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../font/inter-v19-latin-900.woff2") format("woff2");
}

/* Poppins Font */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: url("../font/poppins-v23-latin-100.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;
  src: url("../font/poppins-v23-latin-100.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../font/poppins-v23-latin-800.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("../font/poppins-v23-latin-900.woff2") format("woff2");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, Inter, system-ui, sans-serif;
}

body {
  font-family: Poppins, Inter, system-ui, sans-serif;
  margin: 0;
}

/* login */

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

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

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* game */

.lightning-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/gameimg.jpg") center/cover;
  position: relative;
  overflow: hidden;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightning-particle {
  position: absolute;
  background: linear-gradient(45deg, #00ffff, #ffffff);
  border-radius: 50%;
  animation: lightning 2s infinite;
  opacity: 0;
}

@keyframes lightning {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.game-title {
  font-size: 4rem;
  /* background: linear-gradient(to right, #00ffff, #ffffff); */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  animation: glow 2s infinite;

  text-align: center;
  position: relative;
  z-index: 10;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700, #ff8c00, #ff4500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
      0 0 30px rgba(0, 255, 255, 0.6);
  }
}

.gamemain-content{
  padding: 48px 0;
}

/* Game Image Container */
.game-image-container {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(to bottom, #1f2937, #111827);
  padding: 4px;
}

.game-thumbnail {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  height: 500px;
  object-fit: contain;
  display: block;
}

/* Gradient Overlay (commented out in original) */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

/* Play Button Container */
.play-button-container {
  text-align: center;
  margin-top: 32px;
}

.play-button-container .play-button {
  padding: 16px 32px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  position: relative;
  overflow: hidden;
  max-width: 200px;

}

.play-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.play-button:hover::before {
  left: 100%;
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(255, 107, 53, 0.4);
}

.play-button:active {
  transform: scale(0.98);
}

.iframe-game{
 width: 100%;
 height: 500px;
 border-radius: 20px;
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

}

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

/* Lightning Particles Animation */
.lightning-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffd700;
  border-radius: 50%;
  animation: lightning-particle 2s linear infinite;
}

@keyframes lightning-particle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(-200px) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-220px) scale(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .lightning-header {
    height: 192px;
  }

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

  .main-content {
    padding: 32px 0;
  }

  .game-thumbnail {
    height: 300px;
  }

  .play-button {
    padding: 12px 24px;
    font-size: 1.125rem;
  }
}

@media (max-width: 640px) {
  .lightning-header {
    height: 160px;
  }

  .game-title {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 24px 0;
  }

  .game-thumbnail {
    height: 250px;
  }

  .play-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .container {
    padding: 0 12px;
  }
}

/* Enhanced Effects */
.game-image-container:hover .game-thumbnail {
  opacity: 0.9;
}

.game-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 51%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-image-container:hover::after {
  opacity: 1;
}

/* Header Styles */
.navbar {
  background-color: var(--neutral-900);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--transparent);
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--purple-400);
}

/* CTA Button (Desktop) */
.cta-desktop {
  display: none;
}

.cta-button {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
}

.menu-button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  outline: none;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0 0.5rem 0;
}

.mobile-menu-active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--purple-400);
}

.mobile-cta-button {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
}

.mobile-cta-button:hover {
  opacity: 0.9;
}

/* Responsive Design - Medium screens and up (768px+) */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .cta-desktop {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* Hero section  */
/* flex-1 relative h-full */

.main-body {
  display: flex;
  position: relative;
  height: 100%;
}

/* === Zoom and Pulse Animations === */
@keyframes zoom-slow {
  0%,
  100% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.12);
  }
}
.animate-zoom-slow {
  animation: zoom-slow 12s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-pulse {
  animation: pulse 6s ease-in-out infinite;
}

/* === Hero Section Layout === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #171717; /* Tailwind's bg-neutral-900 */
}

/* === Image Layer === */
.hero-image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(23, 23, 23, 0.9),
    rgba(96, 165, 250, 0.6),
    rgba(250, 204, 21, 0.7)
  );
}

/* === Neon Blobs === */
.blob-purple {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(168, 85, 247, 0.3); /* purple-500/30 */
  border-radius: 9999px;
  filter: blur(120px);
}

.blob-blue {
  position: absolute;
  bottom: -8rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  background-color: rgba(59, 130, 246, 0.2); /* blue-500/20 */
  border-radius: 9999px;
  filter: blur(140px);
  animation-delay: 0.3s;
}

/* === Center Content === */
.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* === Inner Card === */
.hero-box {
  max-width: 58rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.06); /* white/10 */
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 4rem 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .hero-box {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-box {
    padding-left: 2rem;
    padding-right: 2rem;
    width: auto;
  }
}

/* === Glow Circle === */
.hero-glow {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 6rem;
  background: linear-gradient(
    to bottom right,
    #a855f7,
    #3b82f6
  ); /* from-purple-500 to-blue-500 */
  border-radius: 9999px;
  filter: blur(2rem);
  opacity: 0.3;
}

/* === Heading === */
.hero-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem; /* text-6xl */
  }
}

.text-gradient {
  background: linear-gradient(to right, #facc15, #ffffff, #f6f4f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white-block {
  display: block;
  color: white;
}

/* === Subtitle Paragraph === */
.hero-description {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

/* === Buttons === */
.hero-button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-button-group {
    flex-direction: row;
  }
}

.hero-button {
  background-color: #ca8a04; /* bg-secondary */
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px rgba(168, 85, 247, 0.3);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  opacity: 0.9;
  transform: translateY(-0.25rem);
}

/* === Trusted Message === */
.hero-trusted {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.trusted-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #e5e7eb;
  font-weight: 500;
}

/* === Star Icon === */
.trusted-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #facc15; /* yellow-400 */
}

/* === Scroll Down Arrow === */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 20;
}

.scroll-link {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.scroll-link:hover {
  opacity: 1;
}

.scroll-icon {
  width: 2.5rem;
  height: 2.5rem;
}

/* Top games */

/* === Section Layout === */
.top-games-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, #171717, #2e1065, #1e3a8a);
  position: relative;
  overflow: hidden;
}

/* === Decorative Blobs === */
.top-games-blob-purple {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(126, 34, 206, 0.2);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.top-games-blob-blue {
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  background-color: rgba(29, 78, 216, 0.2);
  border-radius: 9999px;
  filter: blur(140px);
  pointer-events: none;
}

.top-games-container {
  position: relative;
  z-index: 10;
  /* max-width: 1280px; */
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.top-games-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.top-games-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .top-games-title {
    font-size: 3rem;
  }
}

.gradient-text-top {
  background: linear-gradient(to right, #c084fc, #60a5fa, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-games-subtext {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .top-games-subtext {
    font-size: 1.25rem;
  }
}

.top-games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .top-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .top-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-game-card {
  background: linear-gradient(
    to bottom right,
    #262626,
    rgba(88, 28, 135, 0.4),
    rgba(30, 64, 175, 0.4)
  );
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  transform: translateY(0);
  position: relative;
}

.top-game-card:hover {
  transform: translateY(-0.5rem) scale(1.05);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.card-image-container {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.top-game-card:hover .card-image-container img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 23, 23, 0.8),
    transparent,
    transparent
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.top-game-card:hover .card-overlay {
  opacity: 0.9;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.card-content a {
  width: 100%;
}

.play-button {
  width: 100%;
  padding: 0.5rem 0;
  background-color: #ca8a04;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
  border: none;
  transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
  opacity: 0.9;
  transform: translateY(-0.125rem);
}

.view-all-container {
  margin-top: 3.5rem;
  text-align: center;
}

.view-all-button {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background-color: #ca8a04;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-all-button:hover {
  opacity: 0.9;
  transform: translateY(-0.25rem);
}

/* Banner section */

/* === Banner Section === */
.banner-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.banner-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #4c1d95, #1e3a8a, #5b21b6);
  opacity: 0.9;
  z-index: 0;
}

.banner-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-blob-purple {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  background-color: #c084fc;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.2;
  animation: pulse 6s ease-in-out infinite;
}

.banner-blob-blue {
  position: absolute;
  top: 75%;
  left: 75%;
  width: 8rem;
  height: 8rem;
  background-color: #60a5fa;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.2;
  animation: pulse 6s ease-in-out infinite;
  animation-delay: 0.7s;
}

.banner-blob-indigo {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 9rem;
  height: 9rem;
  background-color: #818cf8;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.1;
  animation: pulse 6s ease-in-out infinite;
  animation-delay: 1s;
}

.banner-container {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.banner-tagline {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(37, 99, 235, 0.3);
  border-radius: 9999px;
}

.banner-tagline span {
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 3rem;
  }
}

.banner-title-gradient {
  background: linear-gradient(to right, #c084fc, #60a5fa, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-description {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.banner-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .banner-buttons {
    flex-direction: row;
  }
}

.banner-buttons a button {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.banner-buttons a button:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.25rem);
}

.banner-buttons .explore-button {
  background-color: #ca8a04;
  color: white;
  border: none;
  cursor: pointer;
}

.banner-buttons .contact-button {
  background-color: white;
  color: #5b21b6;
  border: none;
  cursor: pointer;
}

.banner-bottom-fade {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, #171717, transparent);
  z-index: 20;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

/* === Features Section === */
.features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #171717;
}

.features-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.features-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .features-title {
    font-size: 3rem;
  }
}

.features-title-gradient {
  background: linear-gradient(to right, #c084fc, #60a5fa, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-subtitle {
  color: #9ca3af;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: linear-gradient(
    to bottom right,
    rgba(91, 33, 182, 0.8),
    rgba(30, 64, 175, 0.8)
  );
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature-card.alt {
  background: linear-gradient(
    to bottom right,
    rgba(30, 64, 175, 0.8),
    rgba(91, 33, 182, 0.8)
  );
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, #9333ea, #3b82f6);
}

.feature-icon.alt {
  background: linear-gradient(to bottom right, #3b82f6, #9333ea);
}

.feature-icon img {
  color: white;
  font-size: 1.875rem;
  height: 30px;
}

.feature-icon {
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
}

.feature-text {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
}

/* === Info Rules Section === */
.info-rules-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, #171717, #2e1065, #1e3a8a);
}

.info-rules-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.info-rules-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.info-rules-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .info-rules-title {
    font-size: 3rem;
  }
}

.info-rules-title-gradient {
  background: linear-gradient(to right, #c084fc, #60a5fa, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-rules-subtitle {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
}

.info-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box {
  background: linear-gradient(
    to bottom right,
    rgba(107, 33, 168, 0.8),
    rgba(30, 64, 175, 0.8)
  );
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #9333ea, #3b82f6);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.info-icon i {
  color: white;
  font-size: 1.5rem;
}

.info-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
}

.info-box-list {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  text-align: left;
  list-style-type: disc;
  padding-left: 1rem;
}

.info-notice {
  margin-top: 2.5rem;
  background-color: #1f2937;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
}

@media (min-width: 768px) {
  .info-notice {
    padding: 2rem;
  }
}

.info-notice-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.info-notice-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #9333ea, #3b82f6);
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.info-notice-icon img {
  color: white;
  font-size: 1.25rem;
  height: 30px !important;
}

.info-notice-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.info-notice-list {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  list-style-type: disc;
  padding-left: 1rem;
  text-align: left;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.info-notice-list a {
  color: #c084fc;
  text-decoration: none;
}

.info-notice-list a:hover {
  text-decoration: underline;
}

/* ========== FOOTER STYLES ========== */

/* Body Layout */
.body-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #0a0a0a;
}

/* Footer Container */
.footer {
  background-color: var(--neutral-900);
  color: #d1d5db;
  font-family: "Poppins", Arial, sans-serif;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.75rem 0;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

/* Disclaimer Section */
.disclaimer-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #262626;
  border-radius: 0.5rem;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.disclaimer-icon {
  color: var(--purple-400);
  margin-right: 0.75rem;
}

.disclaimer-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--white);
}

.disclaimer-text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}

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

.support-link {
  color: var(--white);
  font-weight: bold;
  text-decoration: underline;
}

.support-link:hover {
  color: var(--purple-400);
}

/* Footer Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  /* Standard footer column */
}

.column-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
}

.column-links {
  list-style: none;
  padding: 0;
}

.column-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--purple-400);
}

/* Verification Section */
.verification-section {
  grid-column: span 2;
}

.verification-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.age-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-badge-content {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: #ef4444;
  color: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.verification-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}

.verification-link:hover {
  transform: scale(1.05);
}

.verification-bg-gray {
  background-color: #6b7280;
}

.verification-bg-light {
  background-color: #f3f4f6;
}

.verification-img {
  height: 2rem;
  width: auto;
}

/* Copyright Section */
.copyright-section {
  border-top: 1px solid #262626;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.copyright-text {
  color: #9ca3af;
  font-size: 0.875rem;
}
.copyright-text a{
  text-decoration: none;
  color: #c084fc;
}
.copyright-text a:hover{
  text-decoration: underline  ;
}

/* Responsive Design for Footer */
@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }

  .verification-section {
    grid-column: span 2;
  }

  .verification-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(5, 1fr);
  }

  .verification-section {
    grid-column: span 3;
  }

  .verification-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === Age Verification Modal === */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.age-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

.age-modal-box {
  position: relative;
  background: linear-gradient(to bottom right, #171717, #4c1d95, #1e3a8a);
  border: 1px solid #ca8a04;
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.age-modal-bg-pulse {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  filter: blur(100px);
  animation: pulse-scale 6s ease-in-out infinite;
}

.age-modal-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.age-icon-wrap {
  display: flex;
  justify-content: center;
}

.age-icon {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(
    to bottom right,
    #ca8a04,
    rgba(186, 85, 247, 0.2)
  );
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.age-title {
  font-size: 1.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #c084fc, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-description {
  font-size: 1rem;
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .age-buttons {
    flex-direction: row;
  }
}

.verify-btn {
  background: linear-gradient(to right, #ca8a04, #9333ea);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  cursor: pointer;
}

.verify-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3);
}

.exit-btn {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background-color: transparent;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.exit-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
  border-color: #c084fc;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Cookie Policy */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e40af 100%);
  min-height: 100vh;
  color: #e5e7eb;
}

.main-content {
  flex: 1;
  padding: 64px 0;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Page Header */
.page-header {
  margin-bottom: 64px;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #c084fc, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

/* Policy Content Section */
.policy-section {
  background: linear-gradient(
    to right,
    rgba(31, 41, 55, 0.5),
    rgba(49, 46, 129, 0.5)
  );
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #374151;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.policy-section > * {
  margin-bottom: 16px;
}

.policy-section > *:last-child {
  margin-bottom: 0;
}

/* Headings */
.section-heading {
  margin: 4px 0;
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 700;
  line-height: 1.4;
}

/* Paragraphs */
.policy-text {
  margin: 4px 0;
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .main-content {
    padding: 48px 0;
  }

  .page-header {
    margin-bottom: 48px;
  }

  .policy-section {
    padding: 24px;
  }

  .container {
    padding: 0 12px;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 1.75rem;
  }

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

  .page-header {
    margin-bottom: 40px;
  }

  .policy-section {
    padding: 20px;
  }

  .section-heading {
    font-size: 1.0625rem;
  }

  .policy-text {
    font-size: 0.9375rem;
  }
}

/* Enhanced Typography */
.policy-section h5 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-section h5:first-child {
  margin-top: 0;
}

.policy-section p {
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

/* Improved readability */
.policy-text {
  text-align: justify;
  hyphens: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: rgba(168, 85, 247, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background-color: rgba(168, 85, 247, 0.3);
  color: #ffffff;
}
