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

:root {
  --bg-deep:    #081a0e;
  --bg-dark:    #0d2318;
  --bg-card:    #102a1a;
  --bg-section: #0a1f12;
  --gold:       #c9a84c;
  --gold-light: #e0c06a;
  --gold-dim:   #8a6d28;
  --white:      #f4f4f4;
  --muted:      #9db09e;
  --border:     #1e3d26;
  --green-mid:  #154020;
  --star:       #f5c518;
  --btn-hover:  #b8923e;
  --radius:     8px;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:      1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img, svg { display: block; }

ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

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

.logo span { color: var(--white); }

/* ===== NAV ===== */
.site-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav a {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #0d2b18 0%, #081408 100%);
  padding: 64px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-checks span {
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-checks span::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ===== FEATURED SECTION ===== */
.featured {
  background: var(--bg-section);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  text-align: center;
  margin-bottom: 32px;
}

.section-label h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.section-label p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== OFFER CARD ===== */
.offers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 40px 120px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}

.offer-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,.12);
}

.offer-rank {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.offer-rank strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  height: 56px;
}

.offer-logo img {
  max-width: 100px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-info { min-width: 0; }

.offer-stars {
  color: var(--star);
  font-size: 0.9rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-stars span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.offer-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 4px;
}

.offer-bonus {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.offer-terms {
  font-size: 0.75rem;
  color: var(--muted);
}

.offer-cta {
  text-align: right;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a1a08;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #080f06;
  transform: translateY(-1px);
}

.offer-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.content-section:last-of-type { border-bottom: none; }

.content-inner { max-width: 820px; margin: 0 auto; }

.content-inner h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.content-inner h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin: 28px 0 10px;
}

.content-inner h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 8px;
}

.content-inner p {
  color: var(--muted);
  margin-bottom: 14px;
}

.content-inner ul,
.content-inner ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-inner ol { list-style: decimal; }

.content-inner li {
  color: var(--muted);
  margin-bottom: 8px;
}

.content-inner li strong { color: var(--white); }

/* Factor cards */
.factor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.factor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.factor-card h4 {
  color: var(--gold);
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.factor-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.factor-pct {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Check list */
.check-list { list-style: none !important; padding: 0 !important; }

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Payment table */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.payment-table th,
.payment-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.payment-table th {
  color: var(--gold);
  font-weight: 600;
  background: var(--bg-card);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.payment-table td { color: var(--muted); }

.payment-table td:first-child { color: var(--white); font-weight: 500; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-section); }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
  font-family: var(--font);
  line-height: 1.4;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  color: var(--muted);
  font-size: 0.92rem;
  padding-bottom: 18px;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ===== SUPPORT ORGS ===== */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.org-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.org-card h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.org-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.org-card a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #0d2b18 0%, #081408 100%);
  padding: 52px 0 44px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  max-width: 620px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font);
  padding: 11px 14px;
  border-radius: var(--radius);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

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

.btn-submit {
  background: var(--gold);
  color: #0a1a08;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font);
  width: 100%;
}

.btn-submit:hover { background: var(--gold-light); }

/* ===== RESPONSIBLE GAMBLING BANNER ===== */
.rg-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 32px 0 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rg-banner-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.rg-banner p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.rg-banner p strong { color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

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

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color .2s;
}

.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-legal {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 700px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-18 {
  background: var(--gold);
  color: #0a1a08;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .03em;
}

.badge-bga {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.team-avatar {
  width: 56px;
  height: 56px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
}

.team-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.team-card p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .site-nav { display: none; }
  .burger { display: flex; }

  .offer-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
  }

  .offer-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: 100px;
    height: 44px;
    padding: 6px;
  }

  .offer-rank {
    grid-row: 1;
  }

  .offer-info {
    grid-column: 1 / -1;
  }

  .offer-cta {
    grid-column: 1 / -1;
    text-align: left;
  }

  .btn-primary { width: 100%; text-align: center; }

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

  .footer-brand p { max-width: 100%; }

  .contact-form { padding: 24px 18px; }

  .hero { padding: 40px 0 36px; }
  .featured { padding: 36px 0 44px; }
  .content-section { padding: 44px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-checks { gap: 12px; }
  .org-grid { grid-template-columns: 1fr; }
  .factor-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
