/* =========================================
   AVANTGARDE CASINO — style.css
   Brand palette: deep navy, rich gold, ivory
   ========================================= */

:root {
  --navy:      #0d1b2a;
  --navy-mid:  #162335;
  --navy-card: #1a2a40;
  --gold:      #c9a84c;
  --gold-light:#e2c27a;
  --gold-dark: #a8842e;
  --ivory:     #f5f0e8;
  --ivory-dim: #d8d0c0;
  --white:     #ffffff;
  --text-main: #e8e0d0;
  --text-dim:  #9ea8b8;
  --red-warn:  #c0392b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 0 18px rgba(201,168,76,.25);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;
  --transition:   0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

img { display: none !important; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--gold); letter-spacing: .02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--gold-light); margin-bottom: .5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); color: var(--ivory); margin-bottom: .4rem; }
h4 { font-size: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

strong { color: var(--gold-light); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3.5rem 0; }
section + section { border-top: 1px solid rgba(201,168,76,.12); }

/* ---- FAVICONS SVG (head only) ---- */

/* ---- HEADER ---- */
.site-header {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
}
.logo-text .brand-sub {
  font-size: .65rem;
  color: var(--ivory-dim);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* NAV */
.header-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.header-nav a {
  font-size: .82rem;
  color: var(--text-dim);
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.btn-header {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .82rem !important;
  border-radius: var(--radius-sm);
  padding: .45rem 1.1rem !important;
  transition: var(--transition);
}
.btn-header:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ---- BONUS STRIP (top of page, above hero) ---- */
.bonus-strip-top {
  background: linear-gradient(90deg, #7a1010 0%, #a02020 40%, #7a1010 100%);
  border-bottom: 2px solid var(--gold);
  padding: .6rem 1.25rem;
  text-align: center;
  font-size: .88rem;
}
.bonus-strip-top .strip-text { color: var(--ivory); font-weight: 600; letter-spacing: .02em; }
.bonus-strip-top .strip-text strong { color: var(--gold); }
.bonus-strip-top .btn-strip {
  display: inline-block;
  margin-left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
  padding: .3rem .9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  vertical-align: middle;
}
.bonus-strip-top .btn-strip:hover { background: var(--gold-light); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(160deg, #0d1b2a 0%, #162335 55%, #1e2e45 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: .75rem; }
.hero-lead {
  font-size: 1.05rem;
  color: var(--ivory-dim);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,168,76,.45); background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  padding: .65rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-dark);
  cursor: pointer;
  transition: var(--transition);
  margin-left: .75rem;
}
.btn-secondary:hover { background: rgba(201,168,76,.1); }

/* Hero bonus card */
.hero-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: 'WELCOME OFFER';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .25rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.hero-card .offer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 1.2rem;
  margin-bottom: .5rem;
}
.hero-card .offer-sub { font-size: .85rem; color: var(--text-dim); margin-bottom: 1.2rem; }
.offer-items { list-style: none; padding: 0; margin-bottom: 1.4rem; }
.offer-items li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
  color: var(--text-dim);
}
.offer-items li strong { color: var(--ivory); }
.hero-card .btn-primary { width: 100%; text-align: center; }

/* ---- RATING STRIP ---- */
.rating-strip {
  background: var(--navy-mid);
  padding: 1.25rem 0;
}
.rating-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.rating-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--ivory-dim);
}
.rating-pill .rp-icon { font-size: 1rem; }
.rating-pill strong { color: var(--gold); }

/* ---- PROMO CARDS ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.promo-card {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  position: relative;
  transition: var(--transition);
}
.promo-card:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
}
.promo-card h3 { font-size: 1rem; color: var(--ivory); margin-bottom: .4rem; }
.promo-card p { font-size: .82rem; color: var(--text-dim); margin-bottom: .9rem; }
.promo-card ul { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.promo-card ul li { font-size: .8rem; color: var(--text-dim); padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.promo-card ul li strong { color: var(--ivory); }
.btn-claim {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
  font-weight: 600;
  font-size: .8rem;
  padding: .5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-claim:hover { background: var(--gold); color: var(--navy); }

/* ---- SECTION INTROS ---- */
.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.section-intro {
  font-size: 1rem;
  color: var(--ivory-dim);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

/* ---- BONUS BANNER MID-PAGE ---- */
.bonus-banner-mid {
  background: linear-gradient(100deg, #1a2a40 0%, #0f1f31 100%);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.bonus-banner-mid::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.bbm-text h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: .3rem; }
.bbm-text p { color: var(--text-dim); font-size: .88rem; margin: 0; }
.bbm-text strong { color: var(--ivory); }

/* ---- TABLES ---- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem; }
.table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .88rem;
}
.table-wrap thead tr { background: rgba(201,168,76,.15); }
.table-wrap th {
  padding: .7rem 1rem;
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.table-wrap td { padding: .65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--text-dim); }
.table-wrap tr:hover td { background: rgba(201,168,76,.04); color: var(--ivory); }

/* ---- FEATURE GRID (2-col) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--navy-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,.12);
  padding: 1.4rem 1.3rem;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold-dark); }
.feature-card .fc-icon {
  width: 40px; height: 40px;
  margin-bottom: .9rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .85rem; color: var(--text-dim); margin: 0; }

/* ---- 3-COL SMALL CARDS ---- */
.small-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.small-card {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  transition: var(--transition);
}
.small-card:hover { border-color: var(--gold-dark); }
.small-card .sc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.small-card h4 { font-size: .8rem; color: var(--ivory); margin-bottom: .4rem; text-transform: none; letter-spacing: 0; }
.small-card p { font-size: .78rem; color: var(--text-dim); margin: 0; }

/* ---- PAYMENT ICONS ROW ---- */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  align-items: center;
}
.pay-icon {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-sm);
  padding: .55rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.pay-icon svg { flex-shrink: 0; }

/* ---- ARTICLE BODY ---- */
.article-body { font-size: .97rem; color: var(--text-main); }
.article-body p { margin-bottom: 1.1rem; }
.article-body h2 { margin-top: 2rem; margin-bottom: .6rem; }
.article-body h3 { margin-top: 1.5rem; margin-bottom: .5rem; }

/* ---- FAQ ---- */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  color: var(--gold);
  font-size: .75rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: .9rem;
  color: var(--text-dim);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 0 1.1rem; }
.faq-answer-inner p { margin-bottom: .6rem; }

/* ---- RESPONSIBLE GAMBLING ---- */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.rg-card {
  background: var(--navy-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1rem;
}
.rg-card h4 { font-size: .85rem; color: var(--gold); margin-bottom: .4rem; text-transform: none; letter-spacing: 0; }
.rg-card p { font-size: .82rem; color: var(--text-dim); margin: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: #07111c;
  border-top: 2px solid var(--gold-dark);
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.footer-col p { font-size: .8rem; color: var(--text-dim); line-height: 1.65; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { font-size: .82rem; color: var(--text-dim); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .75rem; color: var(--text-dim); margin: 0; }

.age-badge {
  background: rgba(201,168,76,.12);
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---- UTIL ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 600px) {
  section { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .bonus-banner-mid { flex-direction: column; align-items: flex-start; }
  .bonus-banner-mid .btn-primary { width: 100%; text-align: center; }
  .small-cards { grid-template-columns: 1fr 1fr; }
  .bonus-strip-top .btn-strip { display: block; margin: .5rem auto 0; }
}

@media (max-width: 400px) {
  .small-cards { grid-template-columns: 1fr; }
}
