/* =========================================================
   Royal Reels Casino — review site stylesheet
   Palette: royal purple, gold, ruby, cream
   ========================================================= */

:root {
  --ink: #160a2b;          /* deepest royal purple-black */
  --royal: #2c1457;        /* royal purple */
  --royal-soft: #3a1d6e;   /* lighter royal */
  --surface: #241046;      /* card surface */
  --surface-2: #2f1659;    /* alt card surface */
  --gold: #f4c64a;         /* primary gold */
  --gold-deep: #c9962a;    /* darker gold */
  --ruby: #d11f43;         /* CTA ruby */
  --ruby-deep: #a8132f;    /* CTA ruby hover */
  --cream: #f6efe0;        /* primary text on dark */
  --cream-dim: #cdbfe0;    /* muted text */
  --line: rgba(244, 198, 74, 0.22); /* gold hairline */
  --radius: 16px;
  --maxw: 1120px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(244, 198, 74, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(209, 31, 67, 0.12), transparent 55%),
    linear-gradient(180deg, var(--ink), var(--royal) 55%, var(--ink));
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

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

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--cream);
}
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 800; letter-spacing: .2px; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 700; color: var(--gold); }
p { margin: 0 0 1.05em; }
.eyebrow {
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: .6em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  letter-spacing: .4px;
  border-radius: 999px;
  padding: 15px 34px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ruby), var(--ruby-deep));
  box-shadow: 0 10px 26px rgba(209, 31, 67, 0.45);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); text-decoration: none; box-shadow: 0 14px 32px rgba(209, 31, 67, 0.55); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 10px 26px rgba(244, 198, 74, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
  padding: 13px 30px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 10, 43, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { display: block; width: 46px; height: 46px; flex: none; }
.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.05;
  color: var(--cream);
}
.brand-name span { display: block; font-size: .62rem; letter-spacing: 4px; color: var(--gold); font-family: "Mulish", sans-serif; font-weight: 800; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--cream-dim); font-weight: 700; font-size: .92rem; }
.nav a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Hero + top bonus banner ---------- */
.hero { padding: 30px 0 10px; }
.bonus-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 300px at 85% 20%, rgba(244, 198, 74, 0.18), transparent 60%),
    linear-gradient(135deg, var(--surface-2), var(--royal));
  box-shadow: var(--shadow);
  padding: 40px 38px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}
.bonus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(244, 198, 74, 0.05) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.bonus-hero__copy { position: relative; }
.bonus-hero h1 { margin-bottom: .35em; }
.bonus-hero .lede { color: var(--cream-dim); font-size: 1.05rem; margin-bottom: 1.3em; max-width: 46ch; }
.bonus-card {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(0,0,0,0.18));
  border: 2px dashed var(--gold);
  border-radius: 18px;
  padding: 26px 22px;
}
.bonus-card .tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .68rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.bonus-card .amount {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.9rem);
  color: var(--gold);
  line-height: 1.05;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.bonus-card .amount small { display: block; font-size: 1rem; color: var(--cream); letter-spacing: 1px; margin-top: 4px; }
.bonus-card .btn { width: 100%; margin-top: 18px; }
.bonus-card .terms { font-size: .72rem; color: var(--cream-dim); margin: 12px 0 0; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.trust-row span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cream-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- Sections ---------- */
.section { padding: 46px 0; }
.section--tight { padding: 30px 0; }
.section__head { max-width: 60ch; margin-bottom: 26px; }
.section p { color: var(--cream); }
.section p.muted { color: var(--cream-dim); }

/* ---------- Quick facts ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.fact .k { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 800; }
.fact .v { font-weight: 700; font-size: 1.02rem; margin-top: 4px; }

/* ---------- Cards grid ---------- */
.cards { display: grid; gap: 18px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.card--alt { background: var(--surface-2); }
.card h3 { margin-top: 0; }
.card p { font-size: .96rem; color: var(--cream-dim); margin-bottom: 0; }
.card .ico { width: 40px; height: 40px; margin-bottom: 12px; }

/* pros / cons */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pc { border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.pc--pro { background: linear-gradient(160deg, rgba(244,198,74,0.10), var(--surface)); }
.pc--con { background: linear-gradient(160deg, rgba(209,31,67,0.10), var(--surface)); }
.pc ul { list-style: none; margin: 0; padding: 0; }
.pc li { padding: 8px 0 8px 30px; position: relative; color: var(--cream); font-size: .96rem; }
.pc--pro li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.pc--con li::before { content: "✕"; position: absolute; left: 0; color: var(--ruby); font-weight: 800; }

/* ---------- Tables ---------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
caption { text-align: left; padding: 14px 18px 0; color: var(--gold); font-weight: 700; font-size: .85rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(244, 198, 74, 0.12); font-size: .94rem; }
th { background: rgba(0,0,0,0.22); color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-size: .74rem; }
tbody tr:hover { background: rgba(244, 198, 74, 0.05); }
td strong { color: var(--cream); }

/* ---------- Bonus strip ---------- */
.bonus-strip {
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 200px at 10% 0%, rgba(209,31,67,0.25), transparent 60%),
    linear-gradient(120deg, var(--ruby-deep), var(--royal) 70%);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.bonus-strip h3 { margin: 0 0 4px; color: var(--gold); }
.bonus-strip p { margin: 0; color: var(--cream); font-weight: 600; }
.bonus-strip .btn { flex: none; }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  color: var(--cream);
  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.6rem;
  line-height: 1;
  transition: transform .2s ease;
  font-family: "Mulish", sans-serif;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; margin: 0; color: var(--cream-dim); font-size: .97rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-family: "Playfair Display", serif;
}
.step strong { color: var(--gold); }
.step p { margin: 4px 0 0; color: var(--cream-dim); font-size: .94rem; }

/* ---------- Responsible gambling note ---------- */
.note {
  border-left: 4px solid var(--gold);
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 18px 22px;
  color: var(--cream-dim);
  font-size: .92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  padding: 36px 0 28px;
  margin-top: 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; }
.site-footer h4 { color: var(--gold); font-family: "Playfair Display", serif; margin: 0 0 12px; }
.site-footer a { color: var(--cream-dim); display: block; padding: 4px 0; font-size: .9rem; }
.site-footer a:hover { color: var(--gold); }
.foot-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.age {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 2px solid var(--ruby);
  border-radius: 50%;
  color: var(--ruby);
  font-weight: 800;
  font-size: .72rem;
  flex: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .bonus-hero { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .bonus-hero { padding: 26px 20px; }
  .section { padding: 36px 0; }
  .cards--3, .cards--2, .pc-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .bonus-strip { flex-direction: column; align-items: flex-start; }
  .bonus-strip .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
