/* ==========================================================================
   Royal Reels Casino — landing styles
   ========================================================================== */

:root {
  color-scheme: light;

  --bg: #ffffff;
  --ink: #111114;
  --ink-soft: #26262c;
  --muted: #5b5b66;
  --rule: #e6e6ec;
  --rule-soft: #f0f0f4;
  --row-alt: #fafafc;

  --gold: #f2be4c;
  --gold-deep: #dd9c18;
  --gold-ink: #2a1d02;

  --container: 1120px;
  --radius: 14px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

/* --- Headings ------------------------------------------------------------ */

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 40px;
}

h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.05rem);
  margin: 56px 0 20px;
}

h3 {
  font-size: clamp(1.15rem, 1.02rem + 0.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 38px 0 14px;
}

/* --- Text ---------------------------------------------------------------- */

p { margin: 0 0 22px; }

strong { color: var(--ink); font-weight: 700; }

a { color: inherit; }

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 52px 0;
}

ol, ul {
  margin: 0 0 24px;
  padding-left: 26px;
}

li { margin-bottom: 10px; }

li::marker { color: var(--muted); font-weight: 600; }

/* --- Banner -------------------------------------------------------------- */

.banner {
  position: relative;
  margin: 0 0 42px;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  background: var(--rule-soft);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.banner__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 5%, 44px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--gold-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92),
    0 14px 30px rgba(24, 16, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.banner__cta:hover {
  transform: translateX(-50%) translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 0 0 3px #ffffff, 0 18px 38px rgba(24, 16, 0, 0.34);
}

.banner__cta:active { transform: translateX(-50%) translateY(0); }

.banner__cta:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* --- Tables -------------------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  margin: 0 0 26px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.55;
}

th, td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}

thead th {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--row-alt);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}

tbody tr:last-child td { border-bottom: 0; }

tbody td:first-child {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

table.plain tbody td:first-child { width: 34%; }

/* --- FAQ ----------------------------------------------------------------- */

.faq { margin-top: 8px; }

.faq__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.faq__item:first-child { padding-top: 0; }
.faq__item:last-child { border-bottom: 0; }

.faq__q {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.faq__item p { margin: 0; }

/* --- Small screens -------------------------------------------------------- */

@media (max-width: 700px) {
  body { font-size: 16.5px; line-height: 1.68; }
  .wrap { padding: 44px 18px 64px; }
  h1 { margin-bottom: 28px; }
  h2 { margin-top: 44px; }
  hr { margin: 40px 0; }
  th, td { padding: 12px 14px; }
  .banner__cta {
    min-width: 0;
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}
