/* ============================================================
   SweepJungle.de – Main Stylesheet
   Brand Colors: #3CB522 (jungle green), #FFD700 (gold), #1A1A2E (dark)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Exo+2:wght@400;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --green-primary: #3CB522;
  --green-dark: #2A8018;
  --green-light: #5DD43F;
  --green-glow: rgba(60, 181, 34, 0.4);
  --gold: #FFD700;
  --gold-dark: #E6B800;
  --gold-orange: #FF9A00;
  --gold-glow: rgba(255, 215, 0, 0.4);
  --dark-bg: #0D1117;
  --dark-card: #161B22;
  --dark-border: #21262D;
  --dark-surface: #1C2128;
  --text-primary: #E6EDF3;
  --text-secondary: #8B949E;
  --text-muted: #484F58;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-green: 0 0 30px rgba(60, 181, 34, 0.3);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Nunito', sans-serif;
  --font-heading: 'Exo 2', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

/* ── Skip to content (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: #000; }
body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  box-shadow: 0 6px 30px var(--green-glow);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-orange));
  color: #1A1A00;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFE55C, var(--gold));
  box-shadow: 0 6px 30px var(--gold-glow);
  transform: translateY(-2px);
  color: #1A1A00;
}
.btn-outline {
  background: transparent;
  color: var(--green-light);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Header ── */
/* notif-bar height = ~40px, header sits below it */
.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 17, 23, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
  box-sizing: border-box;
}
.header-inner .header-nav { flex: 1; justify-content: center; }
.header-inner .header-cta { flex-shrink: 0; }
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--green-light);
  background: rgba(60, 181, 34, 0.1);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.burger:hover { background: rgba(60, 181, 34, 0.1); }
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — always rendered, toggled via transform */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  padding: 28px 20px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  display: block;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
}
.mobile-cta { margin-top: 16px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ── Hero Section ── */
/* 40px notif-bar + 72px header = 112px total offset */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1117 0%, #0e2010 40%, #1a2e0a 70%, #0D1117 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(60,181,34,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,215,0,0.1) 0%, transparent 50%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(60,181,34,0.15);
  border: 1px solid rgba(60,181,34,0.3);
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ── Section ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ── Cards ── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(60,181,34,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-green);
}
.card-gold:hover {
  border-color: rgba(255,215,0,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(60,181,34,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-green);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Table ── */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.data-table thead {
  background: linear-gradient(135deg, var(--green-dark), #1a3a0a);
}
.data-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(33,38,45,0.8);
  vertical-align: middle;
}
.data-table tbody tr { background: var(--dark-card); transition: var(--transition); }
.data-table tbody tr:hover { background: rgba(60,181,34,0.05); }
.data-table tbody tr:last-child td { border-bottom: none; }
.badge-green {
  display: inline-block;
  background: rgba(60,181,34,0.15);
  color: var(--green-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(60,181,34,0.3);
}
.badge-gold {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,215,0,0.3);
}

/* ── Chart/Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stat-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-green); }
.stat-box-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box-label { color: var(--text-secondary); font-size: 0.9rem; font-weight: 600; margin-top: 6px; }

/* ── Bar Chart Visual ── */
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-item { display: flex; align-items: center; gap: 16px; }
.bar-label { font-size: 0.875rem; color: var(--text-secondary); min-width: 130px; font-weight: 600; }
.bar-track {
  flex: 1;
  height: 10px;
  background: var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.bar-fill.animated { width: var(--target-width); }
.bar-value { font-size: 0.875rem; font-weight: 700; color: var(--gold); min-width: 50px; text-align: right; }

/* ── Donut Chart Visual ── */
.donut-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}
.donut-svg { width: 180px; height: 180px; transform: rotate(-90deg); overflow: visible; }
.donut-legend { display: flex; flex-direction: column; gap: 14px; }
.legend-item { display: flex; align-items: center; gap: 12px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 600; }
.legend-pct { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-left: auto; }

/* ── Bonus Cards ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--dark-card), rgba(60,181,34,0.05));
  border: 1px solid rgba(60,181,34,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  text-align: center;
}
.bonus-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-green);
}
.bonus-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
}
.bonus-type {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(60,181,34,0.4); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
}
.faq-q:hover { color: var(--green-light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(60,181,34,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--green-light);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-primary); color: white; }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Author Block ── */
.author-block {
  background: linear-gradient(135deg, var(--dark-card), rgba(60,181,34,0.05));
  border: 1px solid rgba(60,181,34,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin: 60px 0 0;
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--green-primary);
  box-shadow: 0 0 20px rgba(60,181,34,0.3);
}
.author-info { flex: 1; }
.author-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 6px;
}
.author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.author-name a { color: var(--text-primary); }
.author-name a:hover { color: var(--gold); }
.author-bio { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.author-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-secondary); }

/* ── Page Hero (inner pages) ── */
/* 40px notif-bar + 72px header + 16px gap = 128px top */
.page-hero {
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1117 0%, #0e2010 100%);
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(60,181,34,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

/* ── Image Banner ── */
.img-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
.img-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.img-banner:hover img { transform: scale(1.02); }
.img-banner-short img { height: 300px; }

/* ── Pros/Cons ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-box, .cons-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pros-box { border-top: 3px solid var(--green-primary); }
.cons-box { border-top: 3px solid #FF4444; }
.pros-box h3 { color: var(--green-light); }
.cons-box h3 { color: #FF6666; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.check-list .ico { flex-shrink: 0; margin-top: 2px; font-size: 1rem; }

/* ── Steps (Registration / How to) ── */
.steps-list { display: flex; flex-direction: column; gap: 24px; counter-reset: step; }
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.step-item:hover { border-color: rgba(60,181,34,0.3); transform: translateX(4px); }
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(60,181,34,0.4);
}
.step-content h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── Game Cards ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.5), var(--shadow-green); border-color: rgba(60,181,34,0.4); }
.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #1a3a0a, #2a5010);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.game-card-body { padding: 16px; }
.game-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.game-provider { font-size: 0.8rem; color: var(--text-muted); }

/* ── App Download Section ── */
.app-stores { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  transition: var(--transition);
  cursor: pointer;
}
.store-btn:hover { border-color: var(--green-primary); background: rgba(60,181,34,0.08); transform: translateY(-2px); }
.store-btn-icon { font-size: 2rem; }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-sub { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.store-btn-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--text-primary); }

/* ── Rating ── */
.rating-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.rating-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--text-primary); }

/* ── Tabs ── */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--dark-card);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(60,181,34,0.4);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Footer ── */
.site-footer {
  background: #080C10;
  border-top: 1px solid var(--dark-border);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand img { width: 160px; height: auto; margin-bottom: 20px; display: block; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.responsible-text {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

/* ── Article Text ── */
.article-body { max-width: 860px; }
.article-body p { margin-bottom: 24px; line-height: 1.8; color: var(--text-secondary); }
.article-body h2 { font-size: 1.8rem; margin: 48px 0 20px; color: var(--text-primary); }
.article-body h3 { font-size: 1.3rem; margin: 36px 0 16px; color: var(--text-primary); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 24px; }
.article-body li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.article-body strong { color: var(--text-primary); font-weight: 700; }
.article-body a { color: var(--green-light); border-bottom: 1px solid transparent; }
.article-body a:hover { border-bottom-color: var(--green-light); }
.article-highlight {
  background: linear-gradient(135deg, rgba(60,181,34,0.08), rgba(255,215,0,0.04));
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── Two-col Layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Scroll Animation ── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ── Glow Divider ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  margin: 60px 0;
  opacity: 0.5;
}

/* ── Notification Bar ── */
.notif-bar {
  background: linear-gradient(90deg, var(--green-dark), #1a3a0a, var(--green-dark));
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}
.notif-bar a { color: var(--gold); font-weight: 700; }
.notif-bar a:hover { color: var(--gold-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* ── Mobile Header ── */
  .header-nav { display: none !important; }
  .burger { display: flex !important; }

  /* Header inner: logo | spacer | compact-cta | burger */
  .header-inner {
    gap: 10px;
    height: 64px;
    padding: 0 16px;
  }

  /* Logo smaller on mobile */
  .header-logo img { height: 36px; max-width: 110px; }

  /* Compact CTA button on mobile — stays visible next to burger */
  .header-cta { gap: 8px; }
  .header-cta .btn-gold {
    padding: 7px 10px;
    font-size: 0.68rem;
    letter-spacing: 0;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }

  /* Mobile menu top offset = notif-bar(40) + header(64) = 104px */
  .mobile-menu { top: 104px; }

  /* Layout */
  .notif-bar { font-size: 0.72rem; padding: 8px 16px; }
  .site-header { top: 40px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .bar-label { min-width: 90px; }
  .page-hero { padding: 110px 0 60px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* Prevent any element from breaking layout */
  * { max-width: 100%; }
  img, video, canvas, svg { max-width: 100% !important; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-primary); }
