/* =====================================================================
   CLEOBETRA CASINO — affiliate review (Australia)
   Theme: Egyptian luxury · deep teal-navy + gold
   ===================================================================== */

:root {
  /* palette */
  --bg-deep:    #07151f;
  --bg:         #0a1a26;
  --bg-alt:     #0e2433;
  --panel:      #11293a;
  --panel-2:    #15334733;
  --line:       #1d4257;

  --gold:       #d4af37;
  --gold-light: #f6dd96;
  --gold-deep:  #a9831f;
  --teal:       #2f9b94;
  --teal-soft:  #9fc7c2;

  --text:       #e8ecef;
  --muted:      #9fb2bd;
  --sand:       #e4d1a8;

  --good:       #4fd49b;
  --bad:        #e57373;

  /* type */
  --display: 'Cinzel', 'Times New Roman', serif;
  --body:    'Mulish', 'Segoe UI', system-ui, sans-serif;

  /* shape */
  --radius:   16px;
  --radius-s: 10px;
  --maxw:     1180px;
  --gold-grad: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 78% -10%, #133145 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 8%, #0f2c3d 0%, transparent 55%),
    var(--bg-deep);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint papyrus texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(212,175,55,.018) 0 2px, transparent 2px 4px);
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; font-weight: 700; }

a { color: var(--teal-soft); text-decoration: none; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- decorative section heading ---------- */
.eyebrow {
  font-family: var(--display);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.section-title .gold-text { display: inline; }
.lead { color: var(--muted); max-width: 720px; }
.divider {
  width: 120px; height: 2px; margin: 18px 0 34px;
  background: var(--gold-grad);
  position: relative;
}
.divider::after {
  content: "✦"; color: var(--gold); font-size: .8rem;
  position: absolute; right: -22px; top: -11px;
}

section { padding: 78px 0; position: relative; z-index: 1; }
section.alt { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-block: 1px solid var(--line); }

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; letter-spacing: .04em;
  border: none; cursor: pointer; border-radius: 999px;
  padding: 15px 34px; font-size: 1rem;
  color: #2a1d04;
  background: var(--gold-grad);
  box-shadow: 0 10px 26px rgba(212,175,55,.28), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(212,175,55,.42); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn.ghost {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); box-shadow: none;
}
.btn.ghost:hover { background: rgba(212,175,55,.1); }
.btn.lg { padding: 18px 46px; font-size: 1.12rem; }
.btn.block { display: flex; width: 100%; }

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,21,31,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.brand img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  color: var(--text); font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 5px 0; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: 70px 0 90px;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  opacity: .22; filter: saturate(.85);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(7,21,31,.4), var(--bg-deep) 92%);
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); margin: 10px 0 8px; }
.hero h1 small { display: block; font-size: .42em; color: var(--teal-soft); letter-spacing: .2em; font-weight: 400; margin-top: 10px; }
.hero p.tag { font-size: 1.15rem; color: var(--sand); max-width: 540px; margin-bottom: 18px; }
.offer-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-alt));
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 22px 26px; margin: 8px 0 26px; max-width: 540px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.offer-card .label { color: var(--gold); font-family: var(--display); letter-spacing: .18em; font-size: .72rem; text-transform: uppercase; }
.offer-card .amount { font-family: var(--display); font-size: clamp(1.7rem,4vw,2.5rem); margin: 4px 0; }
.offer-card .fine { color: var(--muted); font-size: .82rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { position: relative; z-index: 2; }
.hero-art img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 30px 60px rgba(0,0,0,.5); }

/* ====================================================================
   TRUST BAR
   ==================================================================== */
.trust { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; }
.trust-item .k { font-family: var(--display); font-size: 1.35rem; color: var(--gold-light); }
.trust-item .v { color: var(--muted); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }

/* ====================================================================
   GENERIC GRID CARDS
   ==================================================================== */
.cards { display: grid; gap: 22px; }
.cards.c4 { grid-template-columns: repeat(4,1fr); }
.cards.c3 { grid-template-columns: repeat(3,1fr); }
.cards.c2 { grid-template-columns: repeat(2,1fr); }

.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-alt));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-deep); box-shadow: 0 22px 44px rgba(0,0,0,.4); }
.card img { width: 100%; aspect-ratio: 14/9; object-fit: cover; display: block; border-bottom: 1px solid var(--line); }
.card .body { padding: 20px 22px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--gold-light); }
.card p { color: var(--muted); font-size: .96rem; }

/* ====================================================================
   ARTICLE / PROSE
   ==================================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: #d6dee3; }
.prose h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin: 38px 0 10px; }
.prose h3 { font-size: 1.3rem; color: var(--gold-light); margin: 28px 0 8px; }
.prose .divider { margin: 16px 0 26px; }
.prose blockquote {
  border-left: 3px solid var(--gold); background: var(--panel-2);
  padding: 14px 22px; margin: 22px 0; border-radius: 0 var(--radius-s) var(--radius-s) 0;
  color: var(--sand); font-style: italic;
}
.byline { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.byline strong { color: var(--gold-light); font-family: var(--display); }

/* ====================================================================
   STRIPS (providers / payments)
   ==================================================================== */
.strip img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }

/* ====================================================================
   SPLIT (image + text)
   ==================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split.rev .media { order: 2; }
.split .media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.feat-list { list-style: none; margin-top: 16px; }
.feat-list li { padding: 8px 0 8px 30px; position: relative; color: #d6dee3; }
.feat-list li::before { content: "𓋹"; position: absolute; left: 0; color: var(--gold); }

/* ====================================================================
   PROS & CONS
   ==================================================================== */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pc .col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.pc .col h3 { font-family: var(--display); margin-bottom: 14px; font-size: 1.2rem; }
.pc .col.pros h3 { color: var(--good); }
.pc .col.cons h3 { color: #e9a26b; }
.pc ul { list-style: none; }
.pc li { padding: 7px 0 7px 28px; position: relative; color: #d6dee3; }
.pc .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.pc .cons li::before { content: "–"; position: absolute; left: 2px; color: #e9a26b; font-weight: 700; }

/* ====================================================================
   STEPS
   ==================================================================== */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--display); font-size: 1.4rem; font-weight: 700;
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; color: #2a1d04; background: var(--gold-grad);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.step h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ====================================================================
   FAQ (CSS-only)
   ==================================================================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-s);
  background: var(--panel); margin-bottom: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--display); font-weight: 700; color: var(--gold-light);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 22px 20px; color: var(--muted); }

/* ====================================================================
   CTA BAND
   ==================================================================== */
.cta-band {
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% -40%, rgba(212,175,55,.18), transparent 70%),
    linear-gradient(180deg, var(--bg-alt), var(--bg-deep));
  border-block: 1px solid var(--gold-deep);
}
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 12px; }
.cta-band p { color: var(--sand); max-width: 620px; margin: 0 auto 26px; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 34px; }
.site-footer h4 { color: var(--gold-light); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--muted); font-size: .92rem; }
.site-footer a:hover { color: var(--gold-light); }
.foot-brand img { height: 44px; margin-bottom: 14px; }
.foot-brand p { color: var(--muted); font-size: .9rem; max-width: 320px; }
.rg {
  margin-top: 34px; padding: 20px 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--panel-2);
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.rg .badge {
  font-family: var(--display); font-weight: 700; color: #2a1d04;
  background: var(--gold-grad); border-radius: 8px; padding: 6px 12px; font-size: .85rem;
}
.rg p { color: var(--muted); font-size: .86rem; flex: 1; min-width: 260px; }
.copyright { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); color: #6f8794; font-size: .82rem; text-align: center; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .cards.c4 { grid-template-columns: repeat(2,1fr); }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .media { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; right: 16px;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px 22px; gap: 14px; box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .cards.c4, .cards.c3, .cards.c2, .pc { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.burger) { padding: 11px 20px; font-size: .85rem; }
  .foot-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
