:root {
  /* Jungle Theme Colors */
  --jungle-dark: #0a0d0b;
  --cursed-pink: #e94e77;
  --sun-gold: #f7ce5b;
  --jungle-green: #1a4d3a;
  --stone-gray: #3d3d3d;
  --glow-green: #4ade80;
  --mist-white: #f8fafc;
  
  /* Typography */
  --font-title: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

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

body {
  background: var(--jungle-dark);
  color: var(--mist-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(233, 78, 119, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247, 206, 91, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(26, 77, 58, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 13, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 206, 91, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sun-gold), var(--cursed-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 1.5rem;
  animation: flicker 2s infinite alternate;
}

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

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

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

.nav-links a:hover {
  color: var(--sun-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cursed-pink);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--sun-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--sun-gold), var(--cursed-pink), var(--glow-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sun-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

.cta-button {
  display: inline-block;
  position: relative;
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(135deg, var(--cursed-pink), var(--sun-gold));
  color: var(--jungle-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 78, 119, 0.4);
}

.button-glow {
  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;
}

.cta-button:hover .button-glow {
  left: 100%;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.temple-gate {
  position: relative;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 206, 91, 0.2), rgba(233, 78, 119, 0.1));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 3s infinite ease-in-out;
}

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

.gate-glow {
  width: 200px;
  height: 200px;
  background: conic-gradient(from 0deg, var(--sun-gold), var(--cursed-pink), var(--glow-green), var(--sun-gold));
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

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

.mystical-symbols {
  position: absolute;
  width: 100%;
  height: 100%;
}

.symbol {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.symbol:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.symbol:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.symbol:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 1s; }
.symbol:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 1.5s; }

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

.torch {
  position: absolute;
  width: 20px;
  height: 60px;
  background: linear-gradient(to top, var(--stone-gray), var(--sun-gold));
  border-radius: 10px;
  top: 50px;
}

.torch::after {
  content: '🔥';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation: flicker 1.5s infinite alternate;
}

.torch-left {
  left: 50px;
}

.torch-right {
  right: 50px;
}

/* Sections */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--sun-gold), var(--cursed-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.8);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl) auto;
  line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
  padding: var(--spacing-2xl) 0;
  background: rgba(26, 77, 58, 0.05);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.why-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-lg);
  background: rgba(61, 61, 61, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(247, 206, 91, 0.1);
  transition: all 0.3s ease;
}

.why-item:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.why-item:nth-child(even) .why-image {
  order: 2;
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--cursed-pink);
  box-shadow: 0 15px 40px rgba(233, 78, 119, 0.2);
}

.why-image {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-item:hover .why-image img {
  transform: scale(1.05);
}

.why-content h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--sun-gold);
}

.why-content p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.7;
}

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

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

.game-card {
  background: rgba(61, 61, 61, 0.3);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(247, 206, 91, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(233, 78, 119, 0.3);
  border-color: var(--cursed-pink);
}

.game-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 11, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  color: var(--sun-gold);
  animation: bounce 1s infinite;
  margin-bottom: var(--spacing-sm);
}

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

.game-features {
  display: flex;
  gap: var(--spacing-xs);
}

.feature-tag {
  background: var(--cursed-pink);
  color: var(--jungle-dark);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.game-info {
  padding: var(--spacing-md);
}

.game-info h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--sun-gold);
}

.game-info p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.game-stats {
  display: flex;
  gap: var(--spacing-sm);
}

.stat {
  font-size: 0.8rem;
  color: var(--glow-green);
  background: rgba(74, 222, 128, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
}

/* Game Mechanics Section */
.mechanics-section {
  padding: var(--spacing-2xl) 0;
  background: rgba(233, 78, 119, 0.05);
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.mechanic-item {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 15px;
  background: rgba(61, 61, 61, 0.2);
  border: 1px solid rgba(247, 206, 91, 0.1);
  transition: all 0.3s ease;
}

.mechanic-item:hover {
  transform: translateY(-5px);
  border-color: var(--cursed-pink);
  box-shadow: 0 10px 30px rgba(233, 78, 119, 0.2);
}

.mechanic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md) auto;
  border-radius: 50%;
  overflow: hidden;
}

.mechanic-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mechanic-item h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--sun-gold);
}

.mechanic-item p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: var(--spacing-2xl) 0;
  background: rgba(26, 77, 58, 0.1);
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

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

.about-feature {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.feature-number {
  background: var(--cursed-pink);
  color: var(--jungle-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-content h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--sun-gold);
  margin-bottom: var(--spacing-xs);
}

.feature-content p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.about-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 13, 11, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-around;
}

.about-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sun-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.7);
}

/* Features Section */
.features-section {
  padding: var(--spacing-2xl) 0;
}

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

.feature-item {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 15px;
  background: rgba(61, 61, 61, 0.2);
  border: 1px solid rgba(247, 206, 91, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--cursed-pink);
  box-shadow: 0 10px 30px rgba(233, 78, 119, 0.2);
}

.feature-image {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm) auto;
  border-radius: 50%;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.feature-item h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--sun-gold);
}

.feature-item p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.6;
}

/* Gaming Tips Section */
.tips-section {
  padding: var(--spacing-2xl) 0;
  background: rgba(74, 222, 128, 0.05);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.tip-card {
  background: rgba(61, 61, 61, 0.3);
  padding: var(--spacing-lg);
  border-radius: 15px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-color: var(--glow-green);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

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

.tip-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--glow-green);
}

.tip-card p {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: var(--spacing-xl) 0;
  background: rgba(233, 78, 119, 0.1);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 15px;
  background: rgba(61, 61, 61, 0.3);
  border: 1px solid var(--cursed-pink);
}

.disclaimer-content h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--cursed-pink);
}

.disclaimer-content p {
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: var(--spacing-xl) 0;
  background: rgba(10, 13, 11, 0.9);
  border-top: 1px solid rgba(247, 206, 91, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--sun-gold);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.6);
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
}

.footer-center a {
  color: var(--mist-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: var(--cursed-pink);
}

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

.footer-right p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

.footer-social span {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
}

/* Game Page Styles */
.game-page {
  min-height: 100vh;
  padding-top: 70px;
}

.game-header {
  padding: var(--spacing-xl) 0;
  text-align: center;
  background: rgba(26, 77, 58, 0.1);
}

.game-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--sun-gold);
}

.back-button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(61, 61, 61, 0.5);
  color: var(--mist-white);
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid var(--cursed-pink);
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-lg);
}

.back-button:hover {
  background: var(--cursed-pink);
  color: var(--jungle-dark);
}

.game-container {
  padding: var(--spacing-lg) 0;
}

.game-frame {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  padding-top: 70px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.legal-content h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--sun-gold);
  text-align: center;
}

.legal-content h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin: var(--spacing-xl) 0 var(--spacing-md) 0;
  color: var(--cursed-pink);
}

.legal-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.9);
}

.legal-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-xl);
  background: rgba(61, 61, 61, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(247, 206, 91, 0.2);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  background: rgba(10, 13, 11, 0.5);
  border: 1px solid rgba(247, 206, 91, 0.3);
  border-radius: 8px;
  color: var(--mist-white);
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cursed-pink);
  box-shadow: 0 0 10px rgba(233, 78, 119, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--cursed-pink), var(--sun-gold));
  color: var(--jungle-dark);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .why-item,
  .why-item:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .why-item:nth-child(even) .why-image {
    order: 0;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .footer-right {
    text-align: center;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .features-grid,
  .mechanics-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .game-frame {
    height: 500px;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-frame {
    height: 400px;
  }
  
  .why-image {
    height: 150px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}