:root {
  /* Color Palette */
  --forest-dark: #0B1E10;
  --emerald-dew: #00C4B4;
  --soft-lavender: #C19AFF;
  --neon-gradient: linear-gradient(135deg, var(--emerald-dew), var(--soft-lavender));
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dark: rgba(0, 0, 0, 0.8);
  
  /* Typography */
  --font-pixel: 'Press Start 2P', monospace;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Satisfy', cursive;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Borders */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Shadows */
  --shadow-glow: 0 0 20px rgba(0, 196, 180, 0.3);
  --shadow-glow-hover: 0 0 30px rgba(0, 196, 180, 0.5);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--forest-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Animated Background Elements */
.fireflies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.fireflies::before,
.fireflies::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--emerald-dew) 0%, transparent 70%);
  border-radius: 50%;
  animation: firefly 8s infinite ease-in-out;
}

.fireflies::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.fireflies::after {
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes firefly {
  0%, 100% { 
    opacity: 0.3;
    transform: translateY(0px) translateX(0px);
  }
  25% { 
    opacity: 1;
    transform: translateY(-20px) translateX(10px);
  }
  50% { 
    opacity: 0.5;
    transform: translateY(-10px) translateX(-15px);
  }
  75% { 
    opacity: 0.8;
    transform: translateY(-30px) translateX(5px);
  }
}

.mist {
  position: fixed;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 196, 180, 0.05) 25%, 
    rgba(193, 154, 255, 0.05) 75%, 
    transparent 100%);
  animation: mistDrift 20s infinite linear;
  pointer-events: none;
  z-index: 1;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 30, 16, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 196, 180, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
}

.logo-text {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 196, 180, 0.5);
}

.nav {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--emerald-dew);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('/images/mainbg.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

  z-index: 2;
}

.hero-content {
  z-index: 3;
  position: relative;
}

.hero-title {
  font-family: var(--font-pixel);
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 20px rgba(0, 196, 180, 0.6);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(0, 196, 180, 0.6); }
  100% { text-shadow: 0 0 30px rgba(193, 154, 255, 0.8); }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--text-muted);
  font-weight: 300;
}

.cta-button {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--neon-gradient);
  border: none;
  border-radius: var(--border-radius-lg);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
}

/* Page Hero */
.page-hero {
  padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-pixel);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Section Titles */
.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features Section */
.features {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.feature-card h3 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dew);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Experiences Preview */
.experiences-preview {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.games-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.game-preview {
  position: relative;
  cursor: pointer;
  border-radius: var(--border-radius);
  overflow: hidden;
   height: 400px;

  background: linear-gradient(135deg, rgba(0, 196, 180, 0.1), rgba(193, 154, 255, 0.1));
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.game-preview:hover {
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}
.game-thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.game-title {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  z-index: 2;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 196, 180, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-preview:hover .play-overlay {
  opacity: 1;
}

.play-btn {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Games Section */
.games-section {
  padding: var(--spacing-xl) 0 var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

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

.game-card:hover::before {
  transform: scaleX(1);
}

.game-info h3 {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dew);
}

.game-info p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.play-button {
  font-family: var(--font-accent);
  background: var(--neon-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-lg);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Game Modal */
.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.game-modal.active {
  display: flex;
}

.modal-content {
  background: var(--forest-dark);
  border: 2px solid var(--emerald-dew);
  border-radius: var(--border-radius);
  width: 95%;
  height: 95%;
  max-width: 1400px;
  max-height: 900px;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 196, 180, 0.2);
}

.modal-header h3 {
  font-family: var(--font-pixel);
  color: var(--emerald-dew);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--emerald-dew);
}

.modal-body {
  height: calc(100% - 80px);
  padding: var(--spacing-md);
}

.game-container {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* How It Works */
.how-it-works {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 1.5rem;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-glow);
  animation: pulse 2s infinite;
}

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

.step h3 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--emerald-dew);
}

.step p {
  color: var(--text-muted);
}

.step-connector {
  flex: 0 0 50px;
  height: 2px;
  background: var(--neon-gradient);
  position: relative;
  margin: 0 var(--spacing-md);
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--emerald-dew);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Community Spotlight */
.community-spotlight {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.spotlight-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.spotlight-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  display: none;
  animation: slideIn 0.5s ease;
}

.spotlight-card.active {
  display: block;
}

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

.avatar {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.spotlight-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  line-height: 1.8;
}

.spotlight-card cite {
  color: var(--emerald-dew);
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.carousel-btn {
  background: var(--neon-gradient);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
}

.carousel-dots {
  display: flex;
  gap: var(--spacing-sm);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--emerald-dew);
  box-shadow: 0 0 10px var(--emerald-dew);
}

/* Community Features */
.community-features {
  padding: var(--spacing-xl) 0 var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.community-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

.community-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.community-card h3 {
  font-family: var(--font-pixel);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dew);
}

.community-card p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.feature-btn {
  font-family: var(--font-accent);
  background: var(--neon-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-lg);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Active Community */
.active-community {
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.online-users {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: bobFloat 3s ease-in-out infinite;
  box-shadow: var(--shadow-glow);
}

.user-avatar:nth-child(odd) {
  animation-delay: 1s;
}

.user-avatar:nth-child(even) {
  animation-delay: 2s;
}

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

.online-count {
  margin-left: var(--spacing-lg);
  text-align: center;
}

.count-number {
  display: block;
  font-family: var(--font-pixel);
  font-size: 2rem;
  color: var(--emerald-dew);
  text-shadow: 0 0 10px var(--emerald-dew);
}

.count-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Community Feed */
.community-feed {
  padding: var(--spacing-xl) 0 var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.feed-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feed-post {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
}

.feed-post:hover {
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

.post-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.post-content {
  flex: 1;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.post-author {
  font-weight: 600;
  color: var(--emerald-dew);
}

.post-time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.post-actions {
  display: flex;
  gap: var(--spacing-md);
}

.post-btn {
  background: rgba(0, 196, 180, 0.1);
  border: 1px solid rgba(0, 196, 180, 0.3);
  border-radius: var(--border-radius);
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.post-btn:hover {
  background: rgba(0, 196, 180, 0.2);
  color: var(--emerald-dew);
  border-color: var(--emerald-dew);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-xl) 0 var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

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

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--neon-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question h3 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--emerald-dew);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--emerald-dew);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Support Section */
.support-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 2;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-dew);
  box-shadow: var(--shadow-glow);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.support-card h3 {
  font-family: var(--font-pixel);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dew);
}

.support-card p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.support-btn {
  font-family: var(--font-accent);
  background: var(--neon-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-lg);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-pixel);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dew);
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.method-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details h4 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--emerald-dew);
  margin-bottom: var(--spacing-xs);
}

.method-details p {
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--emerald-dew);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid rgba(0, 196, 180, 0.3);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-dew);
  box-shadow: 0 0 10px rgba(0, 196, 180, 0.3);
}

.submit-btn {
  font-family: var(--font-accent);
  background: var(--neon-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-md) var(--spacing-xl);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Footer */
.footer {
  background: rgba(11, 30, 16, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 196, 180, 0.2);
  padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand .logo-text {
  font-family: var(--font-pixel);
  font-size: 1.5rem;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0, 196, 180, 0.5);
  margin-bottom: var(--spacing-md);
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.footer-section h4 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--emerald-dew);
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--emerald-dew);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 196, 180, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  animation: chatPulse 2s infinite;
}

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

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
}

.chat-icon {
  font-size: 1.5rem;
}

.chat-modal {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: rgba(11, 30, 16, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 196, 180, 0.3);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-glow);
  display: none;
  animation: slideUp 0.3s ease;
}

.chat-modal.active {
  display: block;
}

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

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 196, 180, 0.2);
}

.chat-header h4 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--emerald-dew);
  margin: 0;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chat-close:hover {
  color: var(--emerald-dew);
}

.chat-content {
  padding: var(--spacing-md);
}

.chat-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-connector {
    width: 2px;
    height: 50px;
    transform: rotate(90deg);
    margin: var(--spacing-md) 0;
  }
  
  .step-connector::after {
    top: -3px;
    right: -3px;
    border-left: 4px solid var(--emerald-dew);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transform: rotate(90deg);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  
  .chat-modal {
    width: calc(100vw - 2rem);
    right: -240px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .features-grid,
  .games-masonry,
  .community-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .online-users {
    justify-content: center;
  }
  
  .user-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .feed-post {
    flex-direction: column;
    text-align: center;
  }
  
  .post-header {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

/* Additional animations for enhanced experience */
.feature-card,
.game-card,
.community-card,
.support-card,
.faq-item,
.feed-post {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Accessibility improvements */
.feature-card:focus,
.game-card:focus,
.community-card:focus,
.support-card:focus {
  outline: 2px solid var(--emerald-dew);
  outline-offset: 2px;
}

.nav-link:focus,
.cta-button:focus,
.play-button:focus,
.feature-btn:focus,
.support-btn:focus,
.submit-btn:focus {
  outline: 2px solid var(--emerald-dew);
  outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fireflies,
  .mist {
    display: none;
  }
}
/* DISCLAIMER STYLES */
.age-disclaimer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.disclaimer-content {
  background: #222;
  color: #fff;
  padding: 2em 3em;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
}

.disclaimer-content h2 {
  margin-bottom: 0.5em;
}

.disclaimer-content p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

.buttons {
  display: flex;
  justify-content: space-around;
}

.btn {
  padding: 0.6em 1.4em;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn.enter {
  background: #4caf50;
  color: #fff;
}

.btn.leave {
  background: #f44336;
  color: #fff;
}
.age-disclaimer {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(0, 0, 0, 0.85));
    color: #f0f0f0;
    padding: 1.5rem 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #3aff73;
    border-bottom: 2px solid #3aff73;
    position: relative;
    transition: all 0.4s ease;
}

.age-disclaimer .disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
}

.age-disclaimer .disclaimer-icon {
    font-size: 1.8rem;
    color: #ff3c3c;
}

.disclaimer-close {
    background: transparent;
    color: #ff3c3c;
    border: 2px solid #ff3c3c;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.disclaimer-close:hover {
    background: #ff3c3c;
    color: white;
}
