/* shmoniks.com — Kafé Slot · VIP Gæming · DK 2026 */
:root {
  --sm-bg: #0c1218;
  --sm-bg-soft: #141c26;
  --sm-bg-card: #1a2430;
  --sm-bg-panel: #111820;
  --sm-gold: #d4a24c;
  --sm-gold-light: #f0c878;
  --sm-cream: #e8e0d2;
  --sm-muted: #8a96a8;
  --sm-text: #eef2f7;
  --sm-accent: #3ecfae;
  --sm-accent-dim: rgba(62, 207, 174, 0.15);
  --sm-cta: #e84545;
  --sm-cta-hover: #ff5a5a;
  --sm-vip: #7c5cbf;
  --sm-border: rgba(212, 162, 76, 0.22);
  --sm-radius: 14px;
  --sm-radius-sm: 8px;
  --sm-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --sm-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --sm-display: "Cormorant Garamond", Georgia, serif;
  --sm-max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sm-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--sm-text);
  background: var(--sm-bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--sm-gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--sm-accent);
}
ul {
  padding-left: 1.2rem;
}
h1,
h2,
h3,
h4 {
  font-family: var(--sm-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
p {
  margin: 0 0 1rem;
}
.sm-wrap {
  width: min(100% - 2rem, var(--sm-max));
  margin-inline: auto;
}

/* Age & Cookie */
.sm-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 8, 12, 0.92);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
}
.sm-age-overlay.is-hidden {
  display: none;
}
.sm-age-box {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: var(--sm-radius);
  padding: 2rem;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--sm-shadow);
}
.sm-age-box img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}
.sm-age-badge {
  display: inline-block;
  background: var(--sm-accent-dim);
  color: var(--sm-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.sm-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.sm-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--sm-bg-panel);
  border-top: 1px solid var(--sm-border);
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sm-cookie-bar.is-visible {
  transform: translateY(0);
}
.sm-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.sm-cookie-actions {
  display: flex;
  gap: 0.5rem;
}

/* Buttons */
.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sm-font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--sm-radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sm-btn-cta {
  background: linear-gradient(135deg, var(--sm-cta), #c93030);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 69, 69, 0.4);
}
.sm-btn-cta:hover {
  background: linear-gradient(135deg, var(--sm-cta-hover), var(--sm-cta));
  color: #fff;
  transform: translateY(-1px);
}
.sm-btn-gold {
  background: linear-gradient(135deg, var(--sm-gold), #a87828);
  color: #0c1218;
}
.sm-btn-gold:hover {
  color: #0c1218;
  filter: brightness(1.08);
}
.sm-btn-ghost {
  background: transparent;
  color: var(--sm-cream);
  border: 1px solid var(--sm-border);
}
.sm-btn-ghost:hover {
  border-color: var(--sm-gold);
  color: var(--sm-gold-light);
}
.sm-btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

/* Header */
.sm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 18, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sm-border);
}
.sm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.sm-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--sm-text);
  font-weight: 700;
  font-size: 1.05rem;
}
.sm-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.sm-brand span {
  color: var(--sm-gold-light);
}
.sm-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sm-nav a {
  color: var(--sm-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.sm-nav a:hover {
  color: var(--sm-gold-light);
}
.sm-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.sm-burger span {
  display: block;
  height: 2px;
  background: var(--sm-cream);
  border-radius: 2px;
  transition: 0.25s;
}
.sm-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sm-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.sm-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.sm-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(
      ellipse 60% 50% at 75% 20%,
      rgba(124, 92, 191, 0.25),
      transparent
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 80%,
      rgba(62, 207, 174, 0.12),
      transparent
    ),
    var(--sm-bg);
}
.sm-hero::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 45vw);
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    var(--sm-vip),
    var(--sm-gold),
    var(--sm-accent),
    var(--sm-vip)
  );
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(2px);
  animation: sm-spin 30s linear infinite;
}
@keyframes sm-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.sm-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.sm-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sm-accent);
  background: var(--sm-accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.sm-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  color: var(--sm-cream);
  max-width: 18ch;
}
.sm-hero-lead {
  color: var(--sm-muted);
  max-width: 58ch;
  font-size: 1.02rem;
}
.sm-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--sm-muted);
}
.sm-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--sm-bg-card);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--sm-border);
}

/* Filters */
.sm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0 0.5rem;
}
.sm-filter-btn {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  color: var(--sm-muted);
  font-family: var(--sm-font);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.sm-filter-btn.is-active,
.sm-filter-btn:hover {
  background: var(--sm-accent-dim);
  border-color: var(--sm-accent);
  color: var(--sm-accent);
}

/* Casino list */
.sm-section {
  padding: 2.5rem 0;
}
.sm-section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--sm-cream);
  margin-bottom: 0.5rem;
}
.sm-section-sub {
  color: var(--sm-muted);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

.sm-casino-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sm-casino-row {
  display: grid;
  grid-template-columns: auto minmax(130px, 150px) minmax(0, 1fr) minmax(
      140px,
      auto
    );
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: var(--sm-radius);
  padding: 1rem 1.25rem;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.sm-casino-row:hover {
  border-color: var(--sm-gold);
  transform: translateY(-2px);
}

.sm-rank {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sm-bg-soft);
  border: 1px solid var(--sm-border);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--sm-gold);
}
.sm-casino-logo {
  background: #fff0;
  border-radius: var(--sm-radius-sm);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 0;
  width: 100%;
  overflow: visible;
}
.sm-casino-logo img {
  display: block;
  max-height: 44px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sm-casino-logo--dark {
  background: #1a2430;
  border: 1px solid var(--sm-border);
}

.sm-casino-info {
  min-width: 0;
}
.sm-casino-info h3 {
  font-family: var(--sm-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.sm-bonus-text {
  font-family: var(--sm-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sm-gold-light);
}
.sm-stars {
  color: var(--sm-gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.sm-stars span {
  color: var(--sm-muted);
  font-size: 0.78rem;
  margin-left: 0.35rem;
}

.sm-casino-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  min-width: 140px;
}
.sm-casino-cta .sm-btn {
  width: 100%;
  box-sizing: border-box;
}
.sm-review-link {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--sm-muted);
  text-decoration: underline;
}
.sm-review-link:hover {
  color: var(--sm-accent);
}

.sm-tag {
  position: absolute;
  top: -10px;
  left: 1.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}
.sm-tag--top {
  background: var(--sm-gold);
  color: #0c1218;
}
.sm-tag--pop {
  background: var(--sm-vip);
  color: #fff;
}
.sm-tag--new {
  background: var(--sm-accent);
  color: #0c1218;
}

/* Featured banner */
.sm-featured {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 191, 0.35),
    rgba(212, 162, 76, 0.2)
  );
  border: 1px solid rgba(124, 92, 191, 0.5);
  border-radius: var(--sm-radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  margin: 0.5rem 0;
}
.sm-featured-badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--sm-gold-light);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem 0.4rem;
  border-radius: 6px;
}
.sm-featured h3 {
  font-size: 1.5rem;
  color: var(--sm-cream);
}
.sm-featured p {
  color: var(--sm-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* SEO content */
.sm-content-block {
  background: var(--sm-bg-panel);
  border: 1px solid var(--sm-border);
  border-radius: var(--sm-radius);
  padding: 2rem 2.25rem;
}
.sm-content-block h2 {
  font-size: 1.55rem;
  color: var(--sm-cream);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sm-border);
}
.sm-content-block h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.sm-content-block h3 {
  font-size: 1.15rem;
  color: var(--sm-gold-light);
  margin-top: 1.25rem;
}
.sm-content-block p,
.sm-content-block li {
  color: var(--sm-muted);
  font-size: 0.95rem;
}
.sm-content-block ul {
  margin-bottom: 1rem;
}

/* Legal page */
.sm-page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--sm-border);
  margin-bottom: 2rem;
}
.sm-page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--sm-cream);
}
.sm-page-hero p {
  color: var(--sm-muted);
  max-width: 65ch;
}
.sm-legal-body {
  padding-bottom: 3rem;
}
.sm-legal-body h2 {
  font-size: 1.3rem;
  color: var(--sm-gold-light);
  margin-top: 2rem;
}
.sm-legal-body p,
.sm-legal-body li {
  color: var(--sm-muted);
}

/* Footer */
.sm-footer {
  background: var(--sm-bg-panel);
  border-top: 1px solid var(--sm-border);
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}
.sm-footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.sm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sm-footer-links li {
  margin-bottom: 0.55rem;
}
.sm-footer-links a {
  color: var(--sm-muted);
  font-size: 0.88rem;
}
.sm-footer-links a:hover {
  color: var(--sm-gold-light);
}
.sm-footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--sm-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.sm-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--sm-cream);
  font-weight: 700;
}
.sm-footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.sm-footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--sm-border);
}
.sm-footer-icons img {
  height: 50px;
  width: auto;
  margin-top: 8px;
}
.sm-footer-copy {
  text-align: center;
  padding: 1rem 0 1.5rem;
  font-size: 0.78rem;
  color: var(--sm-muted);
  border-top: 1px solid var(--sm-border);
}

/* Responsive */
@media (max-width: 900px) {
  .sm-casino-row {
    grid-template-columns: auto minmax(130px, 150px) minmax(0, 1fr);
    column-gap: 1.25rem;
    row-gap: 0.75rem;
  }
  .sm-casino-logo {
    min-width: 130px;
    width: 100%;
  }
  .sm-casino-logo img {
    max-width: 120px;
    max-height: 46px;
  }
  .sm-casino-cta {
    grid-column: 1 / -1;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
  .sm-casino-cta .sm-btn {
    display: flex;
    width: 100%;
    max-width: none;
    white-space: nowrap;
  }
  .sm-review-link {
    text-align: center;
  }
  .sm-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sm-featured-badge {
    writing-mode: horizontal-tb;
    transform: none;
    display: inline-block;
  }
  .sm-footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .sm-burger {
    display: flex;
  }
  .sm-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--sm-bg-panel);
    border-bottom: 1px solid var(--sm-border);
    flex-direction: column;
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }
  .sm-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sm-casino-row {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "rank logo"
      "info info"
      "cta cta";
    text-align: left;
    gap: 0.65rem 0.85rem;
    padding: 1rem;
  }
  .sm-rank {
    grid-area: rank;
    margin: 0;
    align-self: center;
  }
  .sm-casino-logo {
    grid-area: logo;
    margin: 0;
    max-width: none;
    width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 0.65rem 0.85rem;
  }
  .sm-casino-logo img {
    max-width: 100%;
    max-height: 48px;
    margin: 0 auto;
  }
  .sm-casino-info {
    grid-area: info;
    text-align: center;
  }
  .sm-casino-cta {
    grid-area: cta;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 0.25rem;
  }
  .sm-casino-cta .sm-btn {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 48px;
    margin: 0;
    padding: 0.85rem 1.25rem;
    white-space: nowrap;
  }
  .sm-review-link {
    width: 100%;
    text-align: center;
  }
  .sm-tag {
    left: 50%;
    transform: translateX(-50%);
  }
  .sm-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
