/* ================================================================
   AmunBet Casino — style.css
   Theme: Dark + Yellow accent (#FACC15)
   Fonts: Poppins (headings) + Inter (body) via Google Fonts
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

/* ── Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:        #FACC15;
  --accent-dark:   #EAB308;
  --accent-light:  rgba(250,204,21,0.07);
  --accent-border: rgba(250,204,21,0.18);
  --bg:            #0D0D0D;
  --surface:       #181818;
  --border:        #2C2C2C;
  --text:          #F0F0F0;
  --text-muted:    #9CA3AF;
  --text-light:    #6B7280;
  --dark-bg:       #050505;
  --dark-mid:      #0A0A0A;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 1px 3px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.4);
  --shadow-lg:     0 8px 30px rgba(0,0,0,.6);
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
  --max-w:         1160px;
  --tr:            0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--accent-dark); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li  { margin-bottom: 0.4rem; }
p   { margin-bottom: 1rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin: 2.5rem 0 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); margin: 2rem 0 0.75rem; font-weight: 600; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #0D0D0D;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250,204,21,.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0D0D0D;
}
.btn-lg   { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm   { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0D0D;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--accent); }
.header-cta { flex-shrink: 0; }

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 480px) { .header-inner { height: 58px; } }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1C1800 50%, #0D0D0D 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 460px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img   { order: -1; }
  .hero { padding: 40px 0 36px; }
}

/* ── Key-facts bar ──────────────────────────────────────────── */
.keyfacts {
  background: var(--dark-bg);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.keyfacts-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.keyfact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.keyfact-icon { font-size: 1.3rem; }
.keyfact-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
}
.keyfact-text span { font-size: 0.74rem; color: var(--text-light); }

@media (max-width: 600px) {
  .keyfacts-inner { justify-content: flex-start; gap: 18px 32px; padding: 0 4px; }
}

/* ── Main two-column layout ─────────────────────────────────── */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 44px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 20px;
}

@media (max-width: 1040px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 620px) {
  .sidebar { grid-template-columns: 1fr; }
  .main-layout { padding: 28px 16px; }
}

/* ── Article ────────────────────────────────────────────────── */
.article-content { min-width: 0; }

.article-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.article-content h2 {
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.75rem 0;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.info-card h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.info-card ul { margin-bottom: 0; }

.highlight-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; }

.article-cta { margin: 1.75rem 0; }

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar-sticky {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1040px) {
  .sidebar-sticky { position: static; display: contents; }
}

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Rating widget */
.rating-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rating-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.stars       { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; display: block; }
.rating-count { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.rating-bars  { display: flex; flex-direction: column; gap: 7px; }
.rating-bar   { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; }
.rating-bar-label { width: 76px; color: var(--text-muted); flex-shrink: 0; }
.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}
.rating-bar-val { width: 28px; text-align: right; font-weight: 600; flex-shrink: 0; color: var(--text); }

/* Bonus widget */
.bonus-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.bonus-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: #0D0D0D;
}
.bonus-desc { font-size: 0.83rem; opacity: .75; margin-bottom: 14px; color: #0D0D0D; }
.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
}
.bonus-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #0D0D0D;
}
.bonus-features li::before {
  content: "✓";
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  color: #0D0D0D;
}
.bonus-box .btn {
  background: rgba(0,0,0,.18);
  color: #0D0D0D;
  border-color: rgba(0,0,0,.3);
}
.bonus-box .btn:hover {
  background: #0D0D0D;
  color: var(--accent);
  border-color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}

/* Quick facts widget */
.quick-list { list-style: none; padding: 0; margin: 0; }
.quick-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  gap: 8px;
  margin-bottom: 0;
}
.quick-list li:last-child { border-bottom: none; }
.quick-list .ql-label { color: var(--text-muted); flex-shrink: 0; }
.quick-list .ql-value { font-weight: 600; text-align: right; color: var(--text); }

.widget-cta-logo {
  max-width: 130px;
  margin: 0 auto 14px;
  border-radius: 8px;
}
.widget-disclaimer { font-size: 0.72rem; color: var(--text-light); margin: 8px 0 0; text-align: center; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  background: var(--dark-bg);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 8px;
  border: none;
  display: block;
  padding: 0;
}
.section-header p { color: var(--text-muted); margin: 0; }

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--tr), border-color var(--tr);
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(250,204,21,.35); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 20px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--tr);
  line-height: 1.4;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--tr), color var(--tr);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 0; }

/* ── Bottom CTA banner ──────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--surface) 0%, #1C1800 100%);
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  padding: 0;
  border: none;
  display: block;
}
.cta-section p { color: var(--text-muted); max-width: 480px; margin: 0 auto 28px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-bg);
  color: var(--text-muted);
  padding: 52px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.83rem; line-height: 1.6; max-width: 270px; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--tr); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; margin: 0; color: var(--text-muted); }
.footer-bottom-right { display: flex; align-items: flex-start; gap: 12px; }
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--text);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-disclaimer {
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text-light);
  max-width: 620px;
  margin: 0;
}

/* ── Sub-page layout ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--surface) 0%, #1C1800 100%);
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-light); }
.page-hero h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0;
}
.page-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}
.page-article h2 {
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.page-article h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 1.75rem 0 0.65rem;
  font-weight: 600;
}
.page-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.page-article p  { margin-bottom: 1rem; }
.page-article ul,
.page-article ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-article li { margin-bottom: 0.4rem; }

/* ── Utility ────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
