/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Base Colors */
  --bg-primary: #081c15;
  --bg-secondary: #0f2a21;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(15, 42, 33, 0.7);
  --bg-glass-light: rgba(255, 255, 255, 0.06);

  /* Accents */
  --accent-primary: #22c55e;
  --accent-secondary: #4ade80;
  --accent-highlight: #facc15;
  --accent-glow: rgba(34, 197, 94, 0.3);
  --accent-gold-glow: rgba(250, 204, 21, 0.3);

  /* Typography Colors */
  --text-primary: #ecfdf5;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;
  --text-dim: rgba(187, 247, 208, 0.5);

  /* Borders */
  --border-glass: rgba(34, 197, 94, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(34, 197, 94, 0.4);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.15);
  --shadow-gold-glow: 0 0 40px rgba(250, 204, 21, 0.15);

  /* Layout */
  --max-width: 1320px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--accent-highlight);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 800;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   PARTICLES
   ============================================ */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle.leaf {
  position: absolute;
  top: -50px;
  font-size: 1.2rem;
  opacity: 0.15;
  animation: floatLeaf linear infinite;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(-50px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(100vh) rotate(360deg) translateX(100px);
    opacity: 0;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #16a34a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
  color: #fff;
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--accent-secondary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-secondary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(8, 28, 21, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(8, 28, 21, 0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 10;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-dot {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 1px;
  transition: transform var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 28, 21, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
  padding: 40px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 32px;
  color: var(--text-secondary);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-secondary);
  background: var(--bg-glass-light);
}

.mobile-cta {
  margin-top: 32px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(250, 204, 21, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--bg-primary) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-glass-light);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(250, 204, 21, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: var(--radius-md);
  max-width: 540px;
}

.disclaimer-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-disclaimer strong {
  color: var(--accent-highlight);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-game-preview {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.preview-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.preview-slot-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.slot-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.slot-symbol {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.highlight-row .slot-symbol {
  border-color: var(--accent-primary);
  background: rgba(34, 197, 94, 0.08);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.gold-symbol {
  border-color: var(--accent-highlight) !important;
  background: rgba(250, 204, 21, 0.08) !important;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15) !important;
  animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.15); }
  50% { box-shadow: 0 0 30px rgba(250, 204, 21, 0.3); }
}

.preview-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.preview-tag {
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-secondary);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============================================
   PAGE HERO (Sub pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.page-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-glass-light);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(34, 197, 94, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.8rem;
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 120px 0;
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.game-container {
  position: relative;
  margin-bottom: 40px;
}

.game-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}

.game-frame-wrapper {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  aspect-ratio: 16 / 9;
  transition: all var(--transition-smooth);
}

.game-frame-wrapper:hover {
  box-shadow: var(--shadow-lg), 0 0 60px rgba(34, 197, 94, 0.2);
  transform: scale(1.005);
}

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

.game-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  text-align: center;
}

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

.info-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 120px 0;
  position: relative;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-symbols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.symbol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.symbol-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
}

.symbol-emoji {
  font-size: 2rem;
}

.symbol-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.symbol-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Story Visual */
.story-card {
  position: relative;
}

.story-card-inner {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-illustration {
  padding: 40px;
}

.farm-scene {
  position: relative;
  height: 320px;
  background: linear-gradient(180deg, #1a3a2a 0%, #0f2a21 60%, #1a2f20 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.scene-sun {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  animation: sunFloat 6s ease-in-out infinite;
}

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

.scene-cloud {
  position: absolute;
  font-size: 2rem;
  opacity: 0.5;
}

.cloud-1 {
  top: 30px;
  left: 20%;
  animation: cloudDrift 20s linear infinite;
}

.cloud-2 {
  top: 50px;
  left: 60%;
  animation: cloudDrift 25s linear infinite reverse;
}

@keyframes cloudDrift {
  0% { transform: translateX(-20px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}

.scene-barn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
}

.scene-tractor {
  position: absolute;
  bottom: 50px;
  right: 30px;
  font-size: 2.5rem;
  animation: tractorBounce 3s ease-in-out infinite;
}

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

.scene-crop {
  position: absolute;
  bottom: 40px;
  font-size: 2rem;
}

.crop-1 { left: 15%; }
.crop-2 { left: 30%; }
.crop-3 { right: 15%; }

.scene-animal {
  position: absolute;
  bottom: 20px;
  font-size: 1.8rem;
}

.animal-1 { left: 20%; animation: animalWalk 4s ease-in-out infinite; }
.animal-2 { left: 45%; animation: animalWalk 5s ease-in-out infinite reverse; }
.animal-3 { right: 20%; animation: animalWalk 6s ease-in-out infinite; }

@keyframes animalWalk {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.story-card-footer {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
}

.story-card-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.story-card-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TIPS SECTION
   ============================================ */
.tips-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.02), transparent);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition-smooth);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.tip-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(34, 197, 94, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.tip-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.tip-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 50%;
  font-size: 1.5rem;
  border: 2px solid var(--border-glass);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIBLE BANNER
   ============================================ */
.responsible-banner {
  padding: 80px 0;
}

.responsible-inner {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(250, 204, 21, 0.04));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-2xl);
  padding: 60px 48px;
  text-align: center;
}

.responsible-icon-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 2rem;
}

.responsible-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.responsible-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 32px;
}

.responsible-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.responsible-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badge-item {
  padding: 8px 20px;
  background: var(--bg-glass-light);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding-top: 80px;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--accent-primary);
  background: rgba(34, 197, 94, 0.1);
  transform: translateY(-2px);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 32px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 600px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-badge {
  padding: 4px 12px;
  background: var(--bg-glass-light);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.footer-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.footer-nav-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-nav-links a:hover {
  color: var(--accent-secondary);
}

/* ============================================
   CONTENT SECTIONS (Sub Pages)
   ============================================ */
.content-section {
  padding: 80px 0 120px;
}

.content-layout {
  max-width: 880px;
  margin: 0 auto;
}

.content-main {
  max-width: 880px;
  margin: 0 auto;
}

.content-main h2,
.content-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 48px;
}

.content-main h2:first-of-type,
.content-title:first-of-type {
  margin-top: 0;
}

.content-main h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent-secondary);
}

.content-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-main ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-main ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-main ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.value-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  margin-top: 0;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Block */
.cta-block {
  margin-top: 60px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(250, 204, 21, 0.04));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  margin-top: 0;
}

.cta-block p {
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236ee7b7' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}

.info-card-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-method-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.quick-links a:hover {
  color: var(--accent-secondary);
  padding-left: 4px;
}

/* ============================================
   RESPONSIBLE GAMING PAGE
   ============================================ */
.responsible-hero-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(250, 204, 21, 0.04));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 48px;
}

.rhc-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.responsible-hero-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.responsible-hero-card p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tips-responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
}

.tip-responsible-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.tip-r-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.tip-responsible-card h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  color: var(--text-primary);
}

.tip-responsible-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 32px;
}

.resource-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.resource-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.resource-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.resource-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}
/* ENDFILE */

<!-- FILE: responsive.css -->
/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-game-preview {
    max-width: 400px;
  }

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

  .story-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    align-items: center;
  }

  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-desktop {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .preview-card {
    padding: 24px;
  }

  .slot-symbol {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .features {
    padding: 80px 0;
  }

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

  .game-section {
    padding: 80px 0;
  }

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

  .story-section {
    padding: 80px 0;
  }

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

  .farm-scene {
    height: 240px;
  }

  .tips-section {
    padding: 80px 0;
  }

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

  .testimonials-section {
    padding: 80px 0;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .responsible-inner {
    padding: 40px 24px;
  }

  .responsible-title {
    font-size: 1.6rem;
  }

  .responsible-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero .hero-title {
    font-size: 2.2rem;
  }

  .content-section {
    padding: 60px 0 80px;
  }

  .content-main h2,
  .content-title {
    font-size: 1.5rem;
  }

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

  .tips-responsible-grid {
    grid-template-columns: 1fr;
  }

  .cta-block {
    padding: 32px 24px;
  }

  .responsible-hero-card {
    padding: 32px 24px;
  }

  .contact-info-wrap {
    order: -1;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .slot-symbol {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .slot-row {
    gap: 8px;
  }

  .preview-card {
    padding: 20px;
  }

  .game-info-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .info-item {
    padding: 14px 10px;
  }

  .story-symbols {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .responsible-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   RESPONSIVE - GAME IFRAME
   ============================================ */
@media (max-width: 768px) {
  .game-frame-wrapper {
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .game-frame-wrapper {
    border-radius: var(--radius-md);
    aspect-ratio: 3 / 4;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }
}