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

/* === VARIABLES === */
:root {
  --deep-green: #006400;
  --forest-green: #19723c;
  --nav-solid: #125c30;
  --green-light: #2ea52e;
  --white: #FFFFFF;
  --off-white: #F5F7F5;
  --text: #1a1a1a;
  --text-light: #555555;
  --footer-bg: #0a1a0a;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-width: 1200px;
}

/* === TYPOGRAPHY (DM Serif Display + DM Sans) === */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  color: var(--deep-green);
}

h1 { font-size: 3rem; margin-bottom: 1.25rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.25rem; }

a { color: var(--forest-green); text-decoration: none; }
a:hover { color: var(--deep-green); text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--forest-green); outline-offset: 2px; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--deep-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 1001;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* === HEADER / NAV (Transparent overlay) === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: var(--nav-solid);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: rgba(255,255,255,0.7); font-family: 'DM Sans', sans-serif; font-weight: 300; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
}

/* === HERO (Full-screen) === */
.hero {
  min-height: 60vh;
  background: linear-gradient(160deg, #001a00 0%, #003300 30%, #004d00 60%, #006400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(34,139,34,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(0,100,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* === INNER HERO (smaller, for sub-pages) === */
.hero--inner {
  min-height: 45vh;
  padding: 8rem 1.5rem 4rem;
}

.hero--inner h1 {
  font-size: 2.75rem;
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: var(--forest-green);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.cta-btn:hover { background: var(--deep-green); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.cta-btn:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; }

.cta-btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.cta-btn--outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.cta-btn--large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

/* === SECTIONS === */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section--alt {
  background: var(--off-white);
}

.section--full {
  max-width: none;
  padding: 5rem 1.5rem;
}

.section--full .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--green {
  background: linear-gradient(160deg, #003300 0%, #006400 100%);
  color: var(--white);
}

.section--green h2,
.section--green h3 {
  color: var(--white);
}

.section--green p {
  color: rgba(255,255,255,0.85);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: -2rem auto 3rem;
}

/* === PULL QUOTE === */
.pull-quote {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pull-quote blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--deep-green);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  padding: 0 2rem;
}

.pull-quote blockquote::before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  color: var(--forest-green);
  opacity: 0.3;
  line-height: 1;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--text-light);
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

.card h3 { color: var(--deep-green); }
.card p { color: var(--text-light); }

.card--green-header {
  overflow: hidden;
  padding: 0;
}

.card--green-header .card-header {
  background: linear-gradient(135deg, #003300, #006400);
  padding: 2rem;
  color: var(--white);
}

.card--green-header .card-header h3 { color: var(--white); margin-bottom: 0.5rem; }
.card--green-header .card-header p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

.card--green-header .card-body {
  padding: 2rem;
}

/* === CTA BLOCK === */
.cta-block {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #003300, #006400);
  color: var(--white);
}

.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

/* === REVIEW TABLE === */
.review-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.review-table th,
.review-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.review-table th { background: var(--deep-green); color: var(--white); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.review-table tr:hover { background: var(--off-white); }

/* === RATING === */
.stars { color: #FFB800; font-size: 1.5rem; letter-spacing: 3px; }

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rating-bar-label {
  min-width: 140px;
  font-weight: 500;
}

.rating-bar-track {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest-green), var(--deep-green));
  border-radius: 5px;
}

.rating-bar-value {
  min-width: 40px;
  font-weight: 700;
  color: var(--deep-green);
}

/* === PROS / CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros, .cons {
  padding: 2rem;
  border-radius: var(--radius);
}

.pros { background: #f0f9f0; }
.cons { background: #fff5f5; }

.pros h3 { color: var(--forest-green); }
.cons h3 { color: #c0392b; }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.pros li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
}

.cons li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* === FAQ ACCORDION === */
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--deep-green); }
.faq-question::after { content: '+'; font-size: 1.75rem; color: var(--deep-green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.5rem; display: none; color: var(--text-light); line-height: 1.8; }
.faq-item.active .faq-answer { display: block; }

/* === STEPS === */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  background: var(--off-white);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  border: 2px dashed #ccc;
  margin: 1.5rem 0;
}

/* === BREADCRUMB === */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--forest-green); }
.breadcrumb span { margin: 0 0.5rem; }

/* === FOOTER === */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  font-family: 'DM Serif Display', Georgia, serif;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* === GAME GRID === */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.game-card:hover { transform: translateY(-3px); }

.game-card-img {
  background: linear-gradient(135deg, #002200, #004400);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-body h3 { font-size: 1.2rem; }

/* === BONUS CARD === */
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--deep-green);
  padding: 2rem;
  margin-bottom: 2rem;
}

.bonus-card h3 { margin-bottom: 0.75rem; }

.bonus-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero-content h1 { font-size: 2.25rem; }
  .hero-content p { font-size: 1.05rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero--inner { min-height: 35vh; padding: 6rem 1.5rem 3rem; }
  .hero--inner h1 { font-size: 2rem; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-solid);
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .nav-links.active { display: flex; }

  .section { padding: 3rem 1.5rem; }
  .section--full { padding: 3rem 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }

  .pull-quote blockquote { font-size: 1.35rem; }

  .step { gap: 1.25rem; }
  .step::before { width: 2.75rem; height: 2.75rem; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 1rem; }
  .hero-content h1 { font-size: 1.85rem; }
}
