/* Editorial Luxury – CasinoGueide.com (shared) */
:root {
  --bg-deep: #0d1117;
  --bg-surface: #161b22;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.2);
  --cream: #f5f0e8;
  --cream-dim: rgba(245, 240, 232, 0.85);
  --glass: rgba(245, 240, 232, 0.06);
  --glass-border: rgba(201, 162, 39, 0.25);
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='rgba(201,162,39,0.04)' d='M40 0L80 20v40L40 80 0 60V20z'/%3E%3Cpath fill='none' stroke='rgba(201,162,39,0.06)' stroke-width='.5' d='M40 0v80M0 20h80M0 60h80'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 12%),
    radial-gradient(circle at 88% 75%, rgba(201, 162, 39, 0.05) 0%, transparent 15%),
    radial-gradient(circle at 70% 15%, rgba(201, 162, 39, 0.04) 0%, transparent 10%);
  animation: bg-float 18s ease-in-out infinite;
}
@keyframes bg-float {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}
@keyframes shimmer-gold {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.15); }
  50% { box-shadow: 0 0 24px 4px rgba(201, 162, 39, 0.25); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.15); }
}

.regulators-strip {
  padding: 0.5rem 1.25rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--glass-border);
}
.regulators-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.regulators-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.regulators-strip a:hover { color: var(--accent); }
.regulators-strip img { height: 22px; width: auto; max-width: 100px; object-fit: contain; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.97) 0%, rgba(13, 17, 23, 0.92) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.site-header-nav-left .header-inner { flex-direction: row-reverse; }
.site-header-nav-left .header-brand { text-align: right; align-items: flex-end; }
.site-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo:hover { color: var(--accent); }
.header-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.header-tagline { font-size: 0.78rem; color: var(--cream-dim); margin: 0; font-style: italic; }
.header-disclaimer {
  margin: 0.15rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.73rem;
  line-height: 1.25;
  color: var(--cream-dim);
  opacity: 0.95;
}
.badge-18 {
  padding: 0.2rem 0.5rem;
  background: rgba(180, 70, 70, 0.35);
  border: 1px solid rgba(255, 150, 150, 0.4);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffb3b3;
  letter-spacing: 0.04em;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.nav-menu a {
  display: block;
  padding: 0.4rem 0.85rem;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.88rem;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.nav-menu a:hover {
  color: var(--accent);
  border-color: var(--glass-border);
  background: var(--glass);
}

.main-content { max-width: 1100px; margin: 0 auto; padding: 2rem 1.25rem 3rem; position: relative; z-index: 1; }

.hero { text-align: center; padding: 2.5rem 1rem 3rem; position: relative; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 80px;
  height: 80px;
  border-right: 3px solid var(--accent-soft);
  border-bottom: 3px solid var(--accent-soft);
  border-radius: 0 0 8px 0;
  opacity: 0.7;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.hero .subtitle { font-size: 1.05rem; color: var(--cream-dim); max-width: 580px; margin: 0 auto 0.5rem; line-height: 1.65; }
.hero .notice { font-size: 0.85rem; color: rgba(245, 240, 232, 0.6); }

/* Unique: editorial callout – one wide block */
.info-callout {
  padding: 1.75rem 1.5rem;
  margin: 0 0 2rem;
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 100%);
  border-left: 5px solid var(--accent);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.info-callout::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
.info-callout h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--cream); margin-bottom: 0.6rem; }
.info-callout p { font-size: 0.95rem; color: var(--cream-dim); margin: 0; line-height: 1.6; }

/* Unique: three-col info */
.info-threecol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .info-threecol { grid-template-columns: 1fr; } }
.info-threecol .cell {
  padding: 1.35rem;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-align: center;
}
.info-threecol .cell h3 { font-family: var(--font-head); font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-threecol .cell p { font-size: 0.86rem; color: var(--cream-dim); margin: 0; line-height: 1.5; }

/* Unique: two-col support (ROFUS + StopSpillet only) */
.info-twocol-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 600px) { .info-twocol-support { grid-template-columns: 1fr; } }
.info-twocol-support .support-box {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.info-twocol-support .support-box h3 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-twocol-support .support-box p { font-size: 0.9rem; color: var(--cream-dim); margin: 0; line-height: 1.55; }

/* Unique: quote strip with deco */
.quote-strip {
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  margin: 2rem 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
}
.quote-strip::before {
  content: '"';
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--accent-soft);
  line-height: 1;
}
.quote-strip p { font-size: 1rem; color: var(--cream-dim); font-style: italic; margin: 0; line-height: 1.6; }
.quote-strip .attr { font-size: 0.8rem; color: var(--accent); margin-top: 0.5rem; }

.section-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--cream);
}

/* === Showcase 1: Numbered top list – big rank on left === */
.casino-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: rank;
}
@media (min-width: 680px) {
  .casino-list { grid-template-columns: repeat(2, 1fr); }
}
.casino-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  counter-increment: rank;
}
.casino-card::before {
  content: counter(rank);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-soft);
  border-right: 2px solid var(--glass-border);
  border-radius: 12px 0 0 12px;
}
.casino-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 32px rgba(201, 162, 39, 0.15);
  animation: shimmer-gold 2.5s ease-in-out infinite;
}
.casino-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.casino-logo-wrap {
  flex-shrink: 0;
  padding: 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.casino-logo-wrap img { height: 40px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.casino-card h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
}
.casino-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.5rem; font-size: 0.82rem; color: var(--cream-dim); }
.casino-desc { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--cream-dim); line-height: 1.5; }
.casino-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.casino-features li {
  padding: 0.25rem 0.6rem;
  background: var(--accent-soft);
  border-radius: 16px;
  font-size: 0.78rem;
  color: var(--accent);
}
.casino-card-footer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.card-disclaimers { font-size: 0.72rem; color: rgba(245, 240, 232, 0.55); }
.card-disclaimers span { margin-right: 0.5rem; }
.cta-button {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(180deg, var(--accent) 0%, #a68520 100%);
  color: var(--bg-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  border: none;
  transition: filter 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  filter: brightness(1.12);
  box-shadow: 0 4px 16px var(--accent-soft), 0 0 28px rgba(201, 162, 39, 0.35);
  transform: translateY(-1px);
  transition: filter 0.2s, box-shadow 0.25s, transform 0.2s;
}
.cta-button { transition: filter 0.2s, box-shadow 0.2s, transform 0.2s; }

.info-section {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.info-section h2 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 1rem; color: var(--cream); }
.info-section p, .info-section ul { font-size: 0.95rem; color: var(--cream-dim); margin-bottom: 0.5rem; }
.info-section ul { margin-left: 1.25rem; }

.faq-list { list-style: none; margin-top: 1rem; }
.faq-list li { margin-bottom: 0.5rem; border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; }
.faq-list summary {
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--glass);
  color: var(--cream);
}
.faq-list summary:hover { color: var(--accent); }
.faq-list .answer {
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.regulators-block { margin-top: 2rem; padding: 1.5rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; }
.regulators-block h2 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 1rem; color: var(--cream); }
.regulators-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.regulators-grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.regulators-grid a:hover { color: var(--accent); background: var(--glass); }
.regulators-grid img { height: 28px; width: auto; max-width: 120px; object-fit: contain; }

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  position: relative;
  z-index: 1;
}
.page-content h1 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--cream);
}
.page-content h2 { font-family: var(--font-head); font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
.page-content p, .page-content li { margin-bottom: 0.75rem; color: var(--cream-dim); }
.page-content ul { margin-left: 1.25rem; }

.site-footer {
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  border-top: 1px solid var(--glass-border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.site-footer .footer-disclaimers { grid-column: 1 / -1; }
.site-footer-stack .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; max-width: 560px; }
.site-footer-stack .footer-disclaimers { grid-column: auto; }
.site-footer-stack .footer-block { border-bottom: 1px solid var(--glass-border); padding-bottom: 1.5rem; }
.site-footer-stack .footer-block:last-child { border-bottom: none; padding-bottom: 0; }
.site-footer-stack .footer-regs { justify-content: center; }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-col h4,
.footer-block h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0 0 1rem 0; }
.footer-nav li { margin-bottom: 0.4rem; }
.site-footer-stack .footer-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
.footer-nav a { color: var(--cream-dim); text-decoration: none; font-size: 0.88rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-disclaimers { font-size: 0.8rem; color: rgba(245, 240, 232, 0.55); }
.footer-disclaimers span { display: block; margin-bottom: 0.25rem; }
.footer-company-details { font-size: 0.8rem; color: rgba(245, 240, 232, 0.7); line-height: 1.5; margin: 0.5rem 0 0 0; }
.footer-company-details strong { color: var(--cream-dim); }
.footer-regs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.footer-regs a { color: var(--cream-dim); text-decoration: none; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-regs a:hover { color: var(--accent); }
.footer-regs img { height: 18px; width: auto; }

/* === Disclaimer overlay (18+ / RG) === */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: auto;
}
.disclaimer-overlay[hidden] { display: none !important; }
.disclaimer-box {
  max-width: 420px;
  background: var(--bg-surface);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.disclaimer-box h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.disclaimer-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.disclaimer-actions button {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: filter 0.2s;
}
.disclaimer-enter { background: var(--accent); color: var(--bg-deep); }
.disclaimer-leave { background: transparent; color: var(--cream-dim); border: 1px solid var(--glass-border); }

/* === Thematic info blocks (before/after showcase) === */
.info-block-strip {
  padding: 1.5rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.info-block-strip h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.info-block-strip p { font-size: 0.92rem; color: var(--cream-dim); margin: 0; }
.info-block-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .info-block-twocol { grid-template-columns: 1fr; } }
.info-block-twocol .col {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}
.info-block-twocol h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--cream); margin-bottom: 0.5rem; }
.info-block-twocol p { font-size: 0.88rem; color: var(--cream-dim); margin: 0; }
.info-block-numbered {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(201,162,39,0.06) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.5rem;
}
.info-block-numbered h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.75rem; }
.info-block-numbered ol { margin: 0; padding-left: 1.25rem; color: var(--cream-dim); font-size: 0.9rem; }
.info-block-numbered li { margin-bottom: 0.35rem; }
.info-block-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .info-block-cards { grid-template-columns: 1fr; } }
.info-block-cards .card {
  padding: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-align: center;
}
.info-block-cards .card h3 { font-size: 0.95rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-block-cards .card p { font-size: 0.82rem; color: var(--cream-dim); margin: 0; }

/* === Cookie bar – CasinoGueide: full-width bar, gold CTA === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bg-surface);
  border-top: 2px solid var(--accent);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.cookie-banner p { flex: 1; min-width: 220px; font-size: 0.9rem; color: var(--cream-dim); margin: 0; }
.cookie-banner .cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-banner button { padding: 0.5rem 1.1rem; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.88rem; }
#accept-cookies { background: var(--accent); color: var(--bg-deep); border: none; }
#decline-cookies { background: transparent; color: var(--cream-dim); border: 1px solid var(--glass-border); }
