/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --primary-color: #FF6B9D;
  --secondary-color: #4ECDC4;
  --accent-color: #FFE66D;
  --background-color: #FFF8F0;
  --surface-color: #FFFFFF;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --text-muted: #B2BEC3;
  --border-color: #F0F0F0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 100%);
  --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  --gradient-background: linear-gradient(135deg, #FFF8F0 0%, #FCE4D6 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Breakpoints (for reference) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-color);
  background-image: var(--gradient-background);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #E55A8A;
}

/* Utility Classes */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-3xl);
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-md) 0;
  text-align: center;
  position: relative;
  z-index: 200;
}

.banner-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.banner-icon {
  font-size: var(--font-size-lg);
  animation: bounce 2s infinite;
}

.banner-text {
  margin: 0;
  font-size: var(--font-size-sm);
}

.banner-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
}

.banner-link:hover {
  color: white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: all var(--transition-normal);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo {
  border-radius: var(--border-radius-md);
}

.nav-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  margin: 0;
}

.nav-link {
  font-weight: var(--font-weight-medium);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: var(--background-color);
  color: var(--primary-color);
}

.nav-legal {
  display: flex;
  gap: var(--space-sm);
}

.legal-link {
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-sm);
}

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

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--surface-color);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.coming-soon-btn {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.coming-soon-btn::after {
  content: "SOON";
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: var(--text-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 2px 6px;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.05em;
}

.coming-soon-download {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.coming-soon-download::after {
  content: "COMING SOON";
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 24px;
  height: 24px;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  font-family: var(--font-display);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-phone {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

.floating-candies {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.candy {
  position: absolute;
  font-size: var(--font-size-2xl);
  animation: float 3s ease-in-out infinite;
}

.candy-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.candy-2 {
  top: 60%;
  right: -10%;
  animation-delay: 1s;
}

.candy-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

/* Games Section */
.games {
  padding: var(--space-4xl) 0;
  background: var(--background-color);
}

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

.game-card {
  background: var(--surface-color);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.game-card.featured {
  border: 2px solid var(--primary-color);
}

.game-image {
  position: relative;
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-platforms {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.platform {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform.ios {
  background: #000000;
  color: white;
}

.platform.android {
  background: #4CAF50;
  color: white;
}

.platform.coming-soon {
  background: var(--accent-color);
  color: var(--text-primary);
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.coming-soon-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.game-content {
  padding: var(--space-xl);
}

.game-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.game-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.game-features {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--background-color);
  color: var(--primary-color);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.game-links {
  display: flex;
  gap: var(--space-md);
}

.game-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.ios-link {
  background: #000000;
  color: white;
}

.ios-link:hover {
  background: #333333;
  transform: translateY(-2px);
}

.android-link {
  background: var(--border-color);
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-link {
  background: var(--primary-color);
  color: white;
}

.contact-link:hover {
  background: #E55A8A;
  transform: translateY(-2px);
}

.link-icon {
  width: 20px;
  height: 20px;
}

/* About Section */
.about {
  padding: var(--space-4xl) 0;
  background: var(--surface-color);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  margin-bottom: var(--space-3xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--background-color);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.stat-card .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}

.stat-card .stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--background-color);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-card {
  background: var(--surface-color);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-link {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: #E55A8A;
  text-decoration: underline;
}

.contact-form-section {
  background: var(--surface-color);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* Features Section */
.features {
  padding: var(--space-4xl) 0;
  background: var(--surface-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--surface-color);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.feature-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-lg);
}

.feature-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Gameplay Section */
.gameplay {
  padding: var(--space-4xl) 0;
}

.gameplay-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.gameplay-text {
  padding-right: var(--space-2xl);
}

.gameplay-steps {
  margin-top: var(--space-2xl);
}

.step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: var(--space-sm);
}

.step-content p {
  color: var(--text-secondary);
  margin: 0;
}

.gameplay-visual {
  text-align: center;
}

.gameplay-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Screenshots Section */
.screenshots {
  padding: var(--space-4xl) 0;
  background: var(--surface-color);
}

.screenshots-carousel {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.screenshot-item {
  display: none;
  text-align: center;
}

.screenshot-item.active {
  display: block;
}

.screenshot-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.screenshot-caption {
  margin-top: var(--space-lg);
  font-style: italic;
  color: var(--text-secondary);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: var(--font-size-2xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.screenshot-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
}

/* Download Section */
.download {
  padding: var(--space-4xl) 0;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.download-btn {
  display: flex;
  align-items: center;
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--border-radius-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.app-store-btn {
  background: #000000;
  color: white;
}

.app-store-btn:hover {
  background: #333333;
  transform: translateY(-4px);
}

.google-play-btn {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid var(--border-color);
}

.google-play-btn:hover {
  background: var(--background-color);
  transform: translateY(-4px);
}

.download-btn-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.download-logo {
  width: 32px;
  height: 32px;
}

.download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-platform {
  font-size: var(--font-size-sm);
  opacity: 0.8;
}

.download-store {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.download-info {
  text-align: center;
  color: var(--text-secondary);
}

/* Legal Pages Styles */
.legal-header {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
}

.legal-header h1 {
  color: white;
  margin-bottom: var(--space-sm);
}

.legal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: 0;
}

.legal-content {
  padding: var(--space-4xl) 0;
}

.legal-section {
  margin-bottom: var(--space-3xl);
  max-width: 800px;
}

.legal-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-2xl);
}

.legal-section h3 {
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-md);
  font-size: var(--font-size-lg);
}

.legal-section p {
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.legal-section ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.contact-box {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
}

.contact-form {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  margin: var(--space-lg) 0;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo {
  border-radius: var(--border-radius-sm);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-section h3 {
  color: white;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

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

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  font-size: var(--font-size-sm);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal a:hover {
  color: white;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .gameplay-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .gameplay-text {
    padding-right: 0;
  }
  
  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-color);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-legal {
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .games-showcase {
    grid-template-columns: 1fr;
  }

  .game-links {
    flex-direction: column;
  }

  .game-link {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .nav-container {
    padding: 0 var(--space-md);
  }

  .banner-content {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero {
    padding: calc(70px + var(--space-2xl) + var(--space-2xl)) 0 var(--space-2xl);
  }
  
  .hero-container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
  }
  
  .download-btn {
    padding: var(--space-md) var(--space-lg);
  }
  
  .download-btn-content {
    gap: var(--space-md);
  }
  
  .download-logo {
    width: 24px;
    height: 24px;
  }
}

/* Print Styles */
@media print {
  .header,
  .nav-toggle,
  .hero-buttons,
  .carousel-btn,
  .footer {
    display: none;
  }
  
  .hero {
    padding-top: 0;
  }
  
  body {
    background: white;
  }
  
  .feature-card,
  .download-btn {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1A202C;
    --surface-color: #2D3748;
    --text-primary: #F7FAFC;
    --text-secondary: #A0AEC0;
    --text-muted: #718096;
    --border-color: #4A5568;
    --gradient-background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  }
  
  .header {
    background: rgba(26, 32, 44, 0.95);
  }
  
  .feature-card {
    background: var(--surface-color);
    border-color: var(--border-color);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000000;
    --shadow-color: rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .feature-card {
    border: 2px solid var(--border-color);
  }
}