@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  /* Color Palette - Level Garden Theme */
  --bg-deep: #050b08;
  --bg-dark: #0a1410;
  --bg-card: #0e1e17;
  --bg-card-hover: #142b21;
  --border-color: rgba(16, 185, 129, 0.15);
  --border-hover: rgba(52, 211, 153, 0.4);
  
  /* Brand/Accent Colors */
  --primary: #10b981; /* Emerald Sprout */
  --primary-glow: rgba(16, 185, 129, 0.4);
  --secondary: #34d399; /* Neon Mint */
  --secondary-glow: rgba(52, 211, 153, 0.3);
  --accent: #fbbf24; /* Golden Harvest / Level Up Gold */
  --accent-glow: rgba(251, 191, 36, 0.4);
  
  /* Text Colors */
  --text-light: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-primary: #10b981;
  
  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --shadow-gold: 0 0 20px var(--accent-glow);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 2px solid var(--bg-deep);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: var(--bg-deep);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  background: rgba(52, 211, 153, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(52, 211, 153, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-light) 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-deep);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
  background: rgba(16, 185, 129, 0.05);
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 11, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.header-scrolled {
  background: rgba(5, 11, 8, 0.95);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  background: linear-gradient(135deg, var(--text-light) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

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

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

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

.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  margin: 6px 0;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 120px 0;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  animation: pulse 2s infinite;
}

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

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Garden Illustration Placeholder */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.garden-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  background: radial-gradient(circle, rgba(14, 30, 23, 0.8) 0%, rgba(5, 11, 8, 0.9) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.garden-placeholder-img {
  width: 85%;
  height: 60%;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.03);
  border: 1px dashed rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.garden-placeholder-img svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 12px;
  animation: float 4s ease-in-out infinite;
}

.garden-placeholder-img p {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 20px;
}

.garden-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: rgba(14, 30, 23, 0.9);
  border: 1px solid var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-glow);
}

.badge-1 {
  top: 15%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.badge-2 {
  bottom: 20%;
  right: 8%;
  animation: float 6s ease-in-out infinite 1s;
}

.badge-3 {
  top: 45%;
  right: 12%;
  animation: float 4s ease-in-out infinite 2s;
}

/* Skill Beds (Készségágyások) */
.skill-beds {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.beds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.bed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-normal);
}

.bed-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), 0 10px 30px rgba(16, 185, 129, 0.05);
}

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

.bed-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 28px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: var(--transition-normal);
}

.bed-card:hover .bed-icon {
  background: var(--primary);
  color: var(--bg-deep);
  box-shadow: var(--shadow-glow);
}

.bed-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bed-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.bed-progress-container {
  margin-bottom: 24px;
}

.bed-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bed-progress-label span:last-child {
  color: var(--primary);
}

.bed-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bed-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

.bed-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bed-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Daily Missions (Napi Küldetések) */
.daily-missions {
  padding: 100px 0;
  background: var(--bg-deep);
}

.missions-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.missions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.missions-title {
  font-size: 1.75rem;
}

.missions-reset {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.missions-reset span {
  color: var(--accent);
  font-weight: 700;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(5, 11, 8, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition-normal);
  cursor: pointer;
}

.mission-row:hover {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.03);
  transform: translateX(4px);
}

.mission-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.mission-checkbox svg {
  width: 14px;
  height: 14px;
  color: var(--bg-deep);
  opacity: 0;
  transition: var(--transition-fast);
}

.mission-row.completed .mission-checkbox {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.mission-row.completed .mission-checkbox svg {
  opacity: 1;
}

.mission-row.completed .mission-details h5 {
  text-decoration: line-through;
  color: var(--text-dim);
}

.mission-details {
  flex-grow: 1;
}

.mission-details h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  transition: var(--transition-fast);
}

.mission-details p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mission-reward {
  text-align: right;
  flex-shrink: 0;
}

.reward-xp {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reward-xp svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.reward-type {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Guide Cards (Útmutatók) */
.guides {
  padding: 100px 0;
  background: var(--bg-dark);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.guide-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050b08;
  overflow: hidden;
}

.guide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(5, 11, 8, 0.95) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
}

.guide-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 12px;
}

.guide-placeholder p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.guide-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 11, 8, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.guide-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.guide-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-meta svg {
  width: 14px;
  height: 14px;
}

.guide-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.guide-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.guide-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.guide-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-link:hover {
  color: var(--secondary);
}

.guide-link svg {
  transition: transform var(--transition-fast);
}

.guide-link:hover svg {
  transform: translateX(4px);
}

/* Progress Timeline (Fejlődési Idővonal) */
.timeline-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-glow);
  color: var(--primary);
  font-weight: 700;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -20px;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.timeline-step {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

/* Player Reflections (Visszajelzések) */
.reflections {
  padding: 100px 0;
  background: var(--bg-dark);
}

.reflections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.reflection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.reflection-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reflection-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: rgba(16, 185, 129, 0.1);
  font-family: serif;
  z-index: -1;
}

.reflection-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.user-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-deep);
}

.user-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.user-level {
  margin-left: auto;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* FAQ (GYIK) */
.faq {
  padding: 100px 0;
  background: var(--bg-deep);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: rgba(16, 185, 129, 0.02);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* Interactive Widget: Skill Growth Simulator */
.garden-widget-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.widget-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.widget-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.widget-controls h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.widget-controls p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.widget-opt-btn {
  background: rgba(5, 11, 8, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.widget-opt-btn:hover {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.03);
}

.widget-opt-btn.active {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow-glow);
}

.widget-opt-btn span:last-child {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
}

.widget-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 11, 8, 0.6);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(16, 185, 129, 0.05);
  min-height: 260px;
  text-align: center;
}

.widget-plant {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-plant svg {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.widget-plant.growing svg {
  transform: scale(1.15) rotate(5deg);
}

.widget-level-badge {
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  margin-bottom: 12px;
  box-shadow: var(--shadow-gold);
}

.widget-status-text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.widget-xp-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 12px;
}

.widget-xp-fill {
  width: 20%;
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

/* Legal Pages Styling (Privacy & Terms) */
.legal-hero {
  padding: 140px 0 60px 0;
  background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

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

.legal-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content {
  padding: 80px 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
}

.legal-text {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.legal-text h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px 0;
  color: var(--primary);
}

.legal-text h2:first-of-type {
  margin-top: 0;
}

.legal-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-text ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-muted);
}

.legal-text li {
  margin-bottom: 10px;
}

.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
}

.sidebar-box h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.sidebar-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Footer (Lábléc) */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(5, 11, 8, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.newsletter-btn {
  background: var(--primary);
  color: var(--bg-deep);
  border: none;
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--secondary);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-legal-link:hover {
  color: var(--primary);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    width: 100%;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-badge,
  .timeline-item:nth-child(even) .timeline-badge {
    left: 20px;
    right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    z-index: 999;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .missions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .mission-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .mission-reward {
    text-align: left;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 12px;
  }
  
  .widget-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .legal-text {
    padding: 24px;
  }
}
