/* ===========================================================
   Godz Casino — Danish review page
   Palette: Dannebrog red on carved-stone dark, silver rune accents
   =========================================================== */

:root {
  --bg: #14100e;
  --bg-panel: #1c1613;
  --bg-panel-raised: #221a16;
  --rule: #34281f;
  --ink: #f2ede6;
  --ink-muted: #b7ac9f;
  --red: #c8102e;
  --red-deep: #8f0b21;
  --silver: #c7cdd3;
  --silver-dim: #7c8288;
  --focus: #e7c15a;

  --font-display: "Cinzel", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --measure: 42em;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

a {
  color: var(--silver);
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Diamond rune glyph (the shared brand motif) ---------- */

.rune {
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.rune-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  margin: 3.2rem 0;
  color: var(--silver-dim);
}

.rune-divider::before,
.rune-divider::after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 5.5rem;
  background: linear-gradient(90deg, transparent, var(--rule));
}

.rune-divider::after {
  background: linear-gradient(90deg, var(--rule), transparent);
}

/* ---------- Layout shell ---------- */

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand .rune {
  color: var(--red);
  border-color: var(--red);
}

.brand:hover {
  color: var(--ink);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(200, 16, 46, 0.16), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
}

.hero .kicker {
  font-family: var(--font-body);
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.hero .lede {
  max-width: 34em;
  margin: 0 auto 2.1rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.cta {
  display: inline-block;
  background: var(--red);
  color: #fff5f0;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--red-deep);
  transition: background 150ms ease, transform 150ms ease;
}

.cta:hover {
  background: var(--red-deep);
  color: #fff5f0;
  transform: translateY(-1px);
}

.hero .fineprint {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--silver-dim);
}

/* ---------- Body sections ---------- */

main {
  padding: 3.5rem 0 1rem;
}

section {
  margin-bottom: 3.2rem;
}

h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 1.8rem 0 0.8rem;
}

p {
  margin: 0 0 1.1rem;
}

.lead-note {
  color: var(--ink-muted);
}

/* game list */

.game-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.game-list li {
  position: relative;
  padding-left: 1.7rem;
}

.game-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.55em;
  height: 0.55em;
  border: 1.5px solid var(--red);
  transform: rotate(45deg);
}

.game-list strong {
  color: var(--ink);
}

/* payment list */

.plain-list {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--ink);
}

.plain-list li {
  margin-bottom: 0.4rem;
}

/* callout */

blockquote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--bg-panel);
  border-left: 3px solid var(--red);
  border-radius: 0 3px 3px 0;
}

blockquote p {
  margin: 0;
  color: var(--ink);
}

blockquote strong {
  color: var(--red);
}

/* table */

.table-scroll {
  overflow-x: auto;
  margin: 0 0 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  background: var(--bg-panel);
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.96rem;
}

th {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--silver);
  background: var(--bg-panel-raised);
}

tr:last-child td {
  border-bottom: none;
}

/* jurisdiction disclosure note */

.disclosure {
  font-size: 0.92rem;
  color: var(--ink-muted);
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  margin: 1.2rem 0 0;
}

.disclosure strong {
  color: var(--silver);
}

/* verdict section */

.verdict {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.9rem;
}

.verdict h2 {
  border-bottom: none;
  padding-bottom: 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.9rem 1.1rem 0;
  position: relative;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 1.05rem;
  color: var(--red);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer {
  margin: 0 0 1.3rem;
  color: var(--ink-muted);
  max-width: 38em;
}

/* ---------- Footer / responsible gambling ---------- */

footer.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2.4rem 0 3rem;
  background: var(--bg-panel);
}

.rg-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.rg-badge {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid var(--silver-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--silver);
}

.rg-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.rg-notice a {
  color: var(--silver);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--silver-dim);
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
}

.footer-meta p {
  margin: 0 0 0.5rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .hero {
    padding: 3.2rem 0 2.6rem;
  }
  .verdict {
    padding: 1.4rem;
  }
  th,
  td {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }
}
