/* Nordkasino — bold editorial-modern theme */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #f7f2e6;
  --paper-2: #ebe4d1;
  --white: #fefdf8;
  --plum: #3d1a3d;
  --plum-2: #5a2a5a;
  --plum-3: #7a3d78;
  --gold: #c99a1f;
  --gold-dark: #a67c14;
  --gold-light: #e5c051;
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --ink-3: #6a6a68;
  --taupe: #a89984;
  --line: #d9cebc;
  --line-2: #e5dcc8;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 30%;
  height: 3px;
  background: var(--gold);
}

.brand span { color: var(--plum); }

nav {
  display: flex;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.15s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover { color: var(--plum); }
nav a.active {
  color: var(--plum);
  border-bottom-color: var(--gold);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  color: var(--ink-3);
  padding: 24px 0 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { margin: 0 10px; color: var(--taupe); }

/* Main content */
main { padding-bottom: 60px; }

.content { max-width: 780px; margin: 0 auto; }

/* Eyebrow */
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 800;
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink);
  max-width: 80px;
}

.eyebrow-meta {
  color: var(--ink-3);
  font-weight: 600;
}

/* Headings */
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 900;
  color: var(--ink);
  margin: 8px 0 24px;
  letter-spacing: -1.5px;
}

h1 em {
  font-style: italic;
  color: var(--plum);
  font-weight: 900;
}

h1 .highlight {
  background: linear-gradient(180deg, transparent 60%, var(--gold-light) 60%);
  padding: 0 4px;
  font-style: normal;
  color: var(--ink);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  margin: 60px 0 20px;
  letter-spacing: -0.8px;
  scroll-margin-top: 90px;
  position: relative;
  padding-top: 20px;
}

h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: var(--plum);
  margin: 36px 0 14px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 36px;
  font-weight: 400;
  font-style: italic;
}

p { margin-bottom: 20px; }
p a {
  color: var(--plum);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  font-weight: 600;
  transition: color 0.15s, border-color 0.15s;
}
p a:hover { color: var(--gold-dark); border-color: var(--plum); }

strong { color: var(--plum); font-weight: 700; }
em { font-style: italic; color: var(--ink); }

ul, ol { margin: 22px 0 26px 0; padding-left: 26px; }
li { margin-bottom: 10px; }
li::marker { color: var(--gold-dark); font-weight: 800; }

/* Hero */
.hero-figure {
  margin: 36px -20px 44px;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.hero-figure::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-figure figcaption {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  padding: 16px 22px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* Verdict box */
.verdict-box {
  background: var(--plum);
  color: var(--paper);
  padding: 32px 36px;
  margin: 40px -20px;
  position: relative;
}

.verdict-box::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.verdict-box .v-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

.verdict-box h3 {
  color: var(--white);
  margin-top: 0;
  font-size: 22px;
}

.verdict-box p { color: rgba(255,253,248,0.9); margin-bottom: 12px; }
.verdict-box p:last-child { margin-bottom: 0; }
.verdict-box a { color: var(--gold-light); border-color: var(--gold); }

/* Pullquote */
.pullquote {
  border-left: 4px solid var(--plum);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}

.pullquote .attribution {
  display: block;
  font-family: -apple-system, sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 700;
  margin-top: 12px;
}

/* Data strip */
.data-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px -20px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.data-cell {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.data-cell:last-child { border-right: none; }

.data-cell .d-value {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.data-cell .d-label {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* TOC */
.toc {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 32px 40px;
  margin: 44px 0;
  position: relative;
}

.toc::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--gold);
  z-index: -1;
}

.toc-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  columns: 2;
  column-gap: 40px;
}

.toc li {
  break-inside: avoid;
  margin-bottom: 12px;
  padding-left: 42px;
  position: relative;
  counter-increment: toc;
  font-size: 15px;
  line-height: 1.4;
}

.toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: Georgia, serif;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.5px;
}

.toc a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}

.toc a:hover { color: var(--plum); }

/* Compare table */
.compare-table {
  border: 2px solid var(--ink);
  margin: 32px -20px;
  overflow: hidden;
  background: var(--white);
}

.compare-table table { width: 100%; border-collapse: collapse; }

.compare-table th {
  background: var(--plum);
  color: var(--gold-light);
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
}

.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
}

.compare-table td:first-child { font-weight: 700; color: var(--ink); font-family: Georgia, serif; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--paper); }

/* FAQ */
.faq { margin: 60px 0; }

.faq h2 { margin-bottom: 28px; }

.faq details {
  background: var(--white);
  border: 2px solid var(--ink);
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform 0.15s;
}

.faq details:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gold); }

.faq summary {
  cursor: pointer;
  padding: 20px 60px 20px 24px;
  font-weight: 800;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 18px;
  position: relative;
  list-style: none;
}

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

.faq summary::before {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-family: Georgia, serif;
  color: var(--gold-dark);
  font-weight: 700;
  transition: transform 0.15s;
}

.faq details[open] summary::before {
  content: "−";
}

.faq details[open] summary {
  color: var(--plum);
  border-bottom: 2px solid var(--line);
}

.faq details p {
  padding: 18px 24px 22px;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
}

/* Author bio */
.author-bio {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 28px 32px;
  margin: 56px -20px 40px;
  position: relative;
}

.author-bio::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--plum);
  z-index: -1;
}

.author-bio img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  filter: contrast(1.05);
}

.author-bio .author-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.author-bio .author-name {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.author-bio .author-title {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.author-bio p { font-size: 15px; margin: 0; color: var(--ink-2); line-height: 1.55; }

/* Responsible gambling box */
.rg-box {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 32px;
  margin: 48px -20px;
  border-left: 6px solid var(--gold);
}

.rg-box strong { color: var(--gold-light); }
.rg-box a { color: var(--gold-light); border-bottom: 1px solid var(--gold); }

/* Related */
.related { margin: 60px 0 40px; }
.related h2 { margin-bottom: 28px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 24px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  position: relative;
}

.related-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--plum);
}

.related-card .label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 14px;
}

.related-card .rc-title {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.related-card p { font-size: 14px; margin: 0; color: var(--ink-3); }

/* Simple page */
.simple-page { max-width: 760px; margin: 0 auto; padding: 20px 0; }

.contact-form {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 36px;
  margin: 36px 0;
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--gold);
  z-index: -1;
}

.form-row { margin-bottom: 22px; }

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 800;
  margin-bottom: 8px;
}

.form-row input, .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: background 0.15s;
}

.form-row input:focus, .form-row textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--plum);
}

.contact-form button {
  background: var(--plum);
  color: var(--paper);
  border: 2px solid var(--ink);
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.contact-form button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gold); }

/* Footer */
.site-footer {
  background: var(--plum);
  color: rgba(247,242,230,0.9);
  padding: 60px 0 34px;
  margin-top: 60px;
  border-top: 4px solid var(--gold);
}

.site-footer a { color: rgba(247,242,230,0.75); text-decoration: none; transition: color 0.15s; }
.site-footer a:hover { color: var(--gold-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 44px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.footer-brand span { color: var(--gold); }

.footer-heading {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer p { font-size: 14px; margin: 0; color: rgba(247,242,230,0.7); line-height: 1.55; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(247,242,230,0.15);
  font-size: 12px;
  color: rgba(247,242,230,0.55);
  letter-spacing: 0.3px;
}

.footer-bottom p { color: inherit; margin-bottom: 6px; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .site-header .container { flex-direction: column; gap: 14px; align-items: flex-start; padding-top: 16px; padding-bottom: 16px; }
  nav { gap: 18px; font-size: 12px; }
  h1 { font-size: 34px; letter-spacing: -1px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .lead { font-size: 18px; }
  .toc ol { columns: 1; }
  .toc { padding: 24px; }
  .toc::before { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .author-bio { flex-direction: column; text-align: left; align-items: flex-start; padding: 22px; margin: 40px 0; }
  .author-bio::before { display: none; }
  .author-bio img { width: 80px; height: 80px; }
  .data-strip { grid-template-columns: 1fr; margin: 24px 0; }
  .data-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .data-cell:last-child { border-bottom: none; }
  .hero-figure { margin: 30px 0 34px; }
  .hero-figure::before { display: none; }
  .verdict-box, .compare-table, .rg-box { margin-left: 0; margin-right: 0; }
  .verdict-box::before, .contact-form::before, .related-card::before { display: none; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* Print */
@media print {
  .site-header, .site-footer, nav, .related { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  h1, h2, h3 { color: black; page-break-after: avoid; }
  .container { max-width: 100%; }
  a { color: black; text-decoration: underline; border: none; }
  .verdict-box, .compare-table { border: 1px solid #999; background: #f5f5f5; color: black; }
  .verdict-box *, .rg-box * { color: black !important; }
}
