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

:root {
  --color-primary: #1a7a3c;
  --color-primary-dark: #145f2e;
  --color-primary-light: #e8f5ee;
  --color-white: #ffffff;
  --color-surface: #f8fafb;
  --color-border: #e2e8e4;
  --color-text: #1a2e22;
  --color-text-muted: #5a7265;
  --color-accent: #f0faf4;
  --color-warning: #d97706;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Google Sans', 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-green { background: var(--color-primary); color: var(--color-white); }
.tag-outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }

section { padding: 72px 0; }
section.alt { background: var(--color-surface); }

h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.age-banner {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.age-banner a { color: var(--color-white); text-decoration: underline; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.15s;
}
nav a:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
nav a.active { color: var(--color-primary); font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px;
}
.mobile-nav a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

.disclaimer-bar {
  background: var(--color-primary-light);
  border: 1px solid #b6dfc6;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  color: var(--color-primary-dark);
  line-height: 1.5;
}
.disclaimer-bar strong { font-weight: 700; }

.hero {
  background: var(--color-white);
  padding: 80px 0 64px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-primary-light);
  border: 1px solid #b6dfc6;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.game-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.game-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.game-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #d1ead9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 800;
}
.game-card-body { padding: 18px; }
.game-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.game-card-body h3 { font-size: 17px; margin-bottom: 6px; }
.game-card-body p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 14px; line-height: 1.5; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p { font-size: 14px; color: var(--color-text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.author-.com { font-weight: 600; font-size: 14px; }
.author-city { font-size: 12px; color: var(--color-text-muted); }

.support-box {
  background: var(--color-primary-light);
  border: 1px solid #b6dfc6;
  border-radius: 12px;
  padding: 28px 32px;
}
.support-box h3 { color: var(--color-primary-dark); margin-bottom: 16px; }
.support-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.support-list li { font-size: 14px; color: var(--color-text); display: flex; gap: 8px; align-items: flex-start; }
.support-list li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--color-primary); margin-top: 8px; flex-shrink: 0; }
.support-list a { color: var(--color-primary-dark); font-weight: 600; }

.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-white); }
.cta-section p { color: rgba(255,255,255,0.85); }
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  display: inline-flex;
  margin: 20px auto;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
}
.btn-white { background: var(--color-white); color: var(--color-primary); font-weight: 700; }
.btn-white:hover { background: var(--color-accent); color: var(--color-primary-dark); text-decoration: none; }

.full-disclaimer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-localcircleconnect p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.6; }
.footer-logo { color: white; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--color-primary); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: white; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col ul li a:hover { color: white; text-decoration: none; }
.footer-support { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; margin-bottom: 20px; }
.footer-support p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-support a { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }

.page-hero {
  background: var(--color-primary-light);
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--color-text-muted); max-width: 640px; }

.content-section { padding: 64px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section h3 { margin: 28px 0 12px; color: var(--color-primary-dark); }
.content-section p { margin-bottom: 14px; line-height: 1.7; }
.content-section ul, .content-section ol { padding-left: 20px; margin-bottom: 14px; }
.content-section ul li, .content-section ol li { margin-bottom: 6px; line-height: 1.6; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}
.info-card h4 { margin-bottom: 8px; color: var(--color-primary-dark); }
.info-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

.cannot-list { list-style: none; padding: 0; }
.cannot-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}
.cannot-list li:last-child { border-bottom: none; }
.can-icon { color: #1a7a3c; font-weight: 700; flex-shrink: 0; }
.cannot-icon { color: #c0392b; font-weight: 700; flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label { font-size: 14px; font-weight: 600; color: var(--color-text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-text);
  transition: 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.game-full-wrapper {
  background: var(--color-text);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}
.game-disclaimer-bar {
  background: #1a2e22;
  padding: 10px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
}

.fc-003 {
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.fc-003 h3 { color: var(--color-primary-dark); margin-bottom: 12px; }
.fc-003 p { font-size: 14px; color: var(--color-text); margin-bottom: 8px; }

.legal-section {
  max-width: 820px;
}
.legal-section h2 { margin-bottom: 16px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.legal-section h2:first-of-type { margin-top: 0; border-top: none; }
.legal-section p { margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.legal-section ul { padding-left: 20px; margin-bottom: 14px; }
.legal-section ul li { margin-bottom: 6px; font-size: 15px; line-height: 1.6; }
.legal-section .updated { color: var(--color-text-muted); font-size: 13px; margin-bottom: 32px; }


.alert-success {
  background: #e8f5ee;
  border: 1px solid #b6dfc6;
  color: var(--color-primary-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}
.alert-success.visible { display: block; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 48px 0; }
  nav { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 48px 0 40px; }
  .cta-section { padding: 48px 0; }
  .header-inner .btn { display: none; }
}
