@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --white: #ffffff;
  --off: #f7f7f5;
  --black: #0d0d0d;
  --gray: #6b6b6b;
  --light: #e8e8e4;
  --accent: #1a6bff;
  --accent2: #00c853;
  --radius: 8px;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--light); border-radius: 4px; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--light);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--black);
}

.logo strong { color: var(--accent); font-weight: 800; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 0.875rem; color: var(--gray); transition: color 0.15s; }
nav a:hover { color: var(--black); }

.nav-cta {
  background: var(--black);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem !important;
  font-weight: 500;
  display: inline-block;
}

.age-gate { display: flex; align-items: center; gap: 6px; }
.age-badge {
  background: #e53e3e;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.age-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}

#burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

#burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.hero { padding: 80px 0 64px; border-bottom: 1px solid var(--light); }
.hero-label { font-size: 0.78rem; font-weight: 500; color: var(--gray); margin-bottom: 20px; letter-spacing: 0.02em; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: 20px; max-width: 600px; }
.hero-sub { font-size: 1rem; color: var(--gray); max-width: 500px; line-height: 1.7; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pills span { font-size: 0.78rem; color: var(--black); background: var(--off); border: 1px solid var(--light); padding: 6px 14px; border-radius: 20px; font-weight: 500; }

.section { padding: 72px 0; }
.section--off { background: var(--off); border-top: 1px solid var(--light); border-bottom: 1px solid var(--light); }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.section-head p { font-size: 0.9rem; color: var(--gray); }
.cards { display: flex; flex-direction: column; gap: 20px; }

.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--light); border: 1px solid var(--light); border-radius: 12px; overflow: hidden; }
.criterion { background: #fff; padding: 28px 24px; }
.section--off .criterion { background: var(--off); }
.c-num { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--light); margin-bottom: 12px; line-height: 1; }
.criterion h3 { font-size: 0.95rem; margin-bottom: 8px; }
.criterion p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

.bonus-table { border: 1px solid var(--light); border-radius: 12px; overflow: hidden; }
.bt-row { display: grid; grid-template-columns: 1.5fr 2fr 1.2fr; border-bottom: 1px solid var(--light); }
.bt-row:last-child { border-bottom: none; }
.bt-row span { padding: 14px 18px; font-size: 0.82rem; color: var(--gray); border-right: 1px solid var(--light); }
.bt-row span:last-child { border-right: none; }
.bt-head { background: var(--off); }
.bt-head span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.bt-row strong { color: var(--black); }

.faq-list { max-width: 680px; display: flex; flex-direction: column; border: 1px solid var(--light); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--light); background: #fff; }
.faq-item:last-child { border-bottom: none; }
.fq { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 18px 20px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--black); text-align: left; cursor: pointer; transition: color 0.15s; }
.fq:hover { color: var(--accent); }
.fq-icon { flex-shrink: 0; color: var(--gray); transition: transform 0.2s; }
.fq[aria-expanded="true"] .fq-icon { transform: rotate(180deg); }
.fa { padding: 0 20px 18px; }
.fa p { font-size: 0.83rem; color: var(--gray); line-height: 1.75; }

.on-page {
  min-height: 100vh;
  background: #080812;
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(26,107,255,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(0,200,83,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(255,215,0,0.04) 0%, transparent 50%);
  color: #fff;
}

.on-nav { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 24px; }
.on-nav-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.on-nav-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.on-nav-dot { width: 8px; height: 8px; border-radius: 50%; background: #00c853; box-shadow: 0 0 8px #00c853; }
.on-nav-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.on-hero { text-align: center; padding: 72px 24px 56px; }
.on-hero-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ffd700; background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.2); padding: 5px 16px; border-radius: 20px; margin-bottom: 24px; }
.on-hero-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px; background: linear-gradient(160deg, #ffffff 0%, #ffd700 40%, #ffffff 70%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.on-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.on-trust-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px; }
.on-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.on-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #00c853; box-shadow: 0 0 6px rgba(0,200,83,0.8); flex-shrink: 0; }
.on-cards { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; display: flex; flex-direction: column; gap: 24px; }

.pc-card { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); backdrop-filter: blur(10px); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.pc-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.pc-card--betsson { border-top: 3px solid #e8000d; }
.pc-card--betsson:hover { box-shadow: 0 24px 70px rgba(232,0,13,0.18); }
.pc-card--bet365 { border-top: 3px solid #00a651; }
.pc-card--bet365:hover { box-shadow: 0 24px 70px rgba(0,166,81,0.18); }
.pc-card--sapphirebet { border-top: 3px solid #1a6bff; }
.pc-card--sapphirebet:hover { box-shadow: 0 24px 70px rgba(26,107,255,0.22); }
.pc-card--dragonslots { border-top: 3px solid #ff6500; }
.pc-card--dragonslots:hover { box-shadow: 0 24px 70px rgba(255,101,0,0.22); }
.pc-card--spinarium { border-top: 3px solid #7c3aed; }
.pc-card--spinarium:hover { box-shadow: 0 24px 70px rgba(124,58,237,0.22); }

.pc-rank-ribbon { display: flex; align-items: center; gap: 10px; padding: 10px 20px 0; }
.pc-rank-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
.pc-rank-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ffd700; opacity: 0.8; }
.pc-header { display: grid; grid-template-columns: 88px 1fr auto; gap: 20px; align-items: center; padding: 14px 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pc-logo-wrap { width: 88px; height: 64px; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0; }
.pc-logo-wrap--betsson { background: rgba(255,255,255,0.95); }
.pc-logo-wrap--bet365 { background: #00a651; }
.pc-logo-wrap--sapphirebet, .pc-logo-wrap--dragonslots, .pc-logo-wrap--spinarium { background: rgba(255,255,255,0.08); }
.pc-logo { max-width: 72px; max-height: 48px; object-fit: contain; display: block; }
.pc-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 8px; line-height: 1; }
.pc-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
.pc-rating-num { font-size: 0.82rem; font-weight: 700; color: #ffd700; margin-left: 4px; }
.pc-license-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(0,200,83,0.12); border: 1px solid rgba(0,200,83,0.28); color: #00e676; font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.02em; }
.pc-bonus-box { background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.06)); border: 1px solid rgba(255,215,0,0.22); border-radius: 14px; padding: 16px 22px; text-align: center; min-width: 190px; flex-shrink: 0; box-shadow: 0 0 30px rgba(255,215,0,0.06); }
.pc-bonus-eyebrow { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,215,0,0.7); margin-bottom: 6px; }
.pc-bonus-amount, .casino-bonus { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: #ffd700; line-height: 1; margin-bottom: 6px; }
.pc-bonus-note { font-size: 0.64rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.pc-body { display: flex; align-items: stretch; }
.pc-pros-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.06); align-content: center; }
.pc-pro { display: flex; align-items: flex-start; gap: 7px; font-size: 0.77rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
.pc-pro-check { color: #00e676; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-features-col { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; padding: 20px 24px; min-width: 220px; flex-shrink: 0; }
.pc-feats, .detail-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-feat { font-size: 0.68rem; color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 10px; }
.pc-cta { display: flex; flex-direction: column; gap: 8px; }
.pc-btn-review { display: block; text-align: center; padding: 10px 16px; background: transparent; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; border-radius: 9px; transition: border-color 0.15s, color 0.15s; }
.pc-btn-review:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.pc-btn-play { display: block; text-align: center; padding: 13px 16px; font-size: 0.88rem; font-weight: 700; border-radius: 9px; transition: opacity 0.15s, box-shadow 0.2s; letter-spacing: 0.01em; color: #fff; }
.pc-btn-play--betsson { background: linear-gradient(135deg, #e8000d, #ff3d47); box-shadow: 0 4px 20px rgba(232,0,13,0.35); }
.pc-btn-play--bet365 { background: linear-gradient(135deg, #00a651, #00d468); box-shadow: 0 4px 20px rgba(0,166,81,0.35); }
.pc-btn-play--sapphirebet { background: linear-gradient(135deg, #1a6bff, #4d93ff); box-shadow: 0 4px 20px rgba(26,107,255,0.35); }
.pc-btn-play--dragonslots { background: linear-gradient(135deg, #ff6500, #ff8c40); box-shadow: 0 4px 20px rgba(255,101,0,0.35); }
.pc-btn-play--spinarium { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 4px 20px rgba(124,58,237,0.35); }
.pc-btn-play:hover { opacity: 0.88; }
.pc-tac { font-size: 0.6rem; color: rgba(255,255,255,0.22); text-align: center; line-height: 1.5; }

.legal { padding: 60px 0 80px; }
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.intro, .date { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; }
.legal h2 { font-size: 1rem; margin: 28px 0 8px; }
.legal p { font-size: 0.875rem; color: var(--gray); line-height: 1.8; max-width: 680px; }
.legal a { color: var(--accent); }
.grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 800px; align-items: start; }
.info { display: flex; flex-direction: column; gap: 6px; }
.il { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-top: 18px; }
form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.78rem; font-weight: 500; color: var(--gray); }
input, textarea { background: var(--off); border: 1px solid var(--light); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.875rem; padding: 10px 14px; color: var(--black); resize: vertical; transition: border-color 0.15s; }
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
button { background: var(--black); color: #fff; border: none; border-radius: var(--radius); padding: 12px 24px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.875rem; cursor: pointer; align-self: flex-start; transition: opacity 0.15s; }
button:hover { opacity: 0.8; }
.form-success { margin-bottom: 24px; background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; border-radius: 10px; padding: 14px 16px; }

.casino-page { padding: 48px 0 80px; }
.casino-hero { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; margin-bottom: 24px; }
.casino-brand, .casino-cta-panel, .casino-main-card, .casino-side-card, .detail-card { background: #fff; border: 1px solid var(--light); border-radius: 18px; padding: 24px; }
.casino-brand { display: flex; gap: 20px; align-items: center; }
.casino-brand-logo { width: 110px; height: 82px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--off); padding: 12px; flex-shrink: 0; }
.casino-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 10px; }
.casino-tagline { color: var(--gray); max-width: 56ch; }
.casino-cta-panel p { color: var(--gray); margin-bottom: 16px; }
.casino-grid, .detail-columns { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 24px; margin-bottom: 24px; }
.casino-main-card p, .casino-side-card p, .detail-card li, .bonus-details span { color: var(--gray); }
.detail-rating { font-family: 'Syne', sans-serif; font-size: 3rem; line-height: 1; margin: 14px 0 8px; }
.detail-rating-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.detail-card h2, .casino-main-card h2, .casino-side-card h2 { margin-bottom: 16px; }
.detail-card ul { display: grid; gap: 12px; }
.detail-card li { padding-left: 18px; position: relative; }
.detail-card li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.bonus-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.bonus-details div { background: var(--off); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 6px; }

.not-found { padding: 80px 0; min-height: 40vh; }
.not-found p { color: var(--gray); margin: 14px 0 24px; }

footer { background: var(--off); border-top: 1px solid var(--light); padding: 56px 0 32px; margin-top: 96px; }
.top { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--light); flex-wrap: wrap; }
.brand { max-width: 300px; }
.brand p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }
.cols { display: flex; gap: 48px; }
.col { display: flex; flex-direction: column; gap: 10px; }
.col-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 2px; }
.col a { font-size: 0.83rem; color: var(--gray); transition: color 0.15s; }
.col a:hover { color: var(--black); }
.rg-bar { padding: 28px 0; border-bottom: 1px solid var(--light); }
.rg-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 14px; }
.rg-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.rg-logo { height: 52px; width: auto; object-fit: contain; background: #1a1a1a; border: 1px solid #333; border-radius: 8px; padding: 8px 16px; }
.age-bar { display: flex; align-items: flex-start; gap: 14px; background: #fff5f5; border: 1px solid #feb2b2; border-radius: 8px; padding: 14px 18px; margin: 20px 0; }
.age-bar p { font-size: 0.78rem; color: #c53030; line-height: 1.6; margin: 0; }
.disclaimer { padding: 20px 0; font-size: 0.75rem; color: var(--gray); line-height: 1.7; border-bottom: 1px solid var(--light); }
.disclaimer strong { color: var(--black); }
.bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 20px; font-size: 0.75rem; color: var(--gray); }

.on-footer { text-align: center; padding: 40px 24px; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.25); font-size: 0.72rem; line-height: 2; }
.on-footer strong { color: rgba(255,255,255,0.5); }
.on-footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
.on-footer-links a { color: rgba(255,255,255,0.3); font-size: 0.68rem; transition: color 0.15s; }
.on-footer-links a:hover { color: rgba(255,255,255,0.6); }

#off-content .pc-card {
  background: #ffffff;
  border: 1px solid var(--light);
  backdrop-filter: none;
}

#off-content .pc-header {
  border-bottom: 1px solid var(--light);
}

#off-content .pc-name {
  color: var(--black);
}

#off-content .pc-pro {
  color: var(--gray);
}

#off-content .pc-feat {
  color: var(--gray);
  background: var(--off);
  border: 1px solid var(--light);
}

#off-content .pc-btn-review {
  color: var(--black);
  border: 1px solid var(--light);
}

#off-content .pc-btn-review:hover {
  color: var(--black);
  border-color: var(--gray);
}

#off-content .pc-tac {
  color: var(--gray);
}

#off-content .pc-pros-grid {
  border-right: 1px solid var(--light);
}

@media (max-width: 900px) {
  .casino-hero, .casino-grid, .detail-columns { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .pc-header { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; gap: 16px; padding: 14px 18px 18px; }
  .pc-bonus-box { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 16px; min-width: unset; padding: 12px 16px; }
  .pc-bonus-eyebrow { margin-bottom: 0; }
  .pc-bonus-amount { font-size: 1.25rem; margin-bottom: 0; }
  .pc-body { flex-direction: column; }
  .pc-pros-grid { grid-template-columns: 1fr; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 18px; }
  .pc-features-col { min-width: unset; padding: 16px 18px; }
  .pc-cta { flex-direction: row; }
  .pc-btn-review, .pc-btn-play { flex: 1; }
}

@media (max-width: 640px) {
  .age-text { display: none; }
  nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--light); flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 0; }
  nav.open { display: flex; }
  nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--light); font-size: 0.95rem !important; }
  nav a:last-child { border: none; }
  #burger { display: flex; }
  .bt-row { grid-template-columns: 1fr; }
  .bt-row span { border-right: none; border-bottom: 1px solid var(--light); }
  .bt-row span:last-child { border-bottom: none; }
  .grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 500px) {
  .on-hero { padding: 48px 20px 40px; }
  .pc-cta { flex-direction: column; }
  .on-trust-bar { gap: 8px 16px; }
  .on-footer-links, .bottom, .top, .cols, .age-bar { flex-direction: column; }
  .casino-brand { flex-direction: column; align-items: flex-start; }
}
