:root {
  --ink: #101828;
  --muted: #667085;
  --gold: #e2b538;
  --gold-dark: #bd8d11;
  --soft: #fbf7ed;
  --line: #e7e7e7;
  --dark: #070b12;
  --dark-2: #111722;
  --white: #fff;
  --red: #d41317;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(16, 24, 40, .09);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #000;
  text-decoration: none
}

button,
input {
  font: inherit
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
}



h1 {
  font-size: clamp(30px, 3vw, 42px)
}

h2 {
  font-size: 24px
}

h3 {
  font-size: 22px
}

p {
  margin: 0 0 16px
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #111
}

.btn-gold:hover {
  background: #f0c94b
}

.btn-dark {
  background: #111;
  color: #fff
}

.btn-dark:hover {
  background: #262b36
}

.btn-outline {
  border-color: #d7aa2e;
  color: #000;
  background: transparent
}

.btn-outline:hover {
  background: #fbf7ed
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: #a90e11
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px
}

/* ---------- Header ---------- */
.site-header {
  height: 74px;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em
}

.brand img {
  width: 190px;
  height: auto;
  margin-bottom: 8px
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700
}

.nav a {
  color: var(--ink)
}

.nav a:hover {
  color: var(--gold-dark)
}

.header-actions {
  display: flex;
  gap: 12px
}

.menu-btn {
  display: none;
  background: none;
  color: #000;
  border: 0;
  font-size: 28px;
  cursor: pointer
}

/* ---------- Language switch ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.lang-btn {
  background: #fff;
  border: 0;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}
.lang-btn:hover { color: var(--gold-dark) }
.lang-btn.is-active { background: var(--gold); color: #111 }

/* ---------- Hero ---------- */
.hero {
  background: #05080d;
  color: #fff
}

.hero-banner {
  min-height: 470px;
  background-image: linear-gradient(90deg, rgba(4, 7, 11, .93) 0%, rgba(4, 7, 11, .58) 38%, rgba(4, 7, 11, .08) 70%), url('https://images.unsplash.com/photo-1767215560223-5d6f16347069?q=80&w=1947&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-wrap {
  position: relative
}

.hero-copy {
  max-width: 580px;
  padding: 64px 0
}

.hero-copy .offer-kicker {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #f0c94b;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-weight: 600;
  text-transform: uppercase;
  margin: 5px 0;
}

.hero-copy h1 strong {
  color: var(--gold)
}

.hero-copy .terms {
  font-size: 16px;
  max-width: 460px;
  color: #c6cbd3;
  margin-top: 18px;
  line-height: 1.5
}

.hero-arrows {
  position: absolute;
  inset: 50% 22px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold)
}

/* ---------- Sections ---------- */
.section {
  padding: 60px 0
}

.section-title {
  text-align: center;
  margin-bottom: 34px
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px
}

.section-title p {
  max-width: 660px;
  margin: auto;
  color: var(--muted)
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.media-card img {
  width: 100%;
  height: 390px;
  object-fit: cover
}

.info-panel {
  background: var(--soft);
  padding: 42px;
  border-radius: var(--radius)
}

.info-panel p {
  color: #475467
}

.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0
}

.checks li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
  color: #475467
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px
}

.photo-collage img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 8px
}

.photo-collage img:first-child {
  height: 382px;
  grid-row: span 2
}

.bonus-area {
  background: #fcfcfd;
  padding: 60px 0
}

.bonus-list {
  display: grid;
  gap: 15px
}

.bonus-item {
  background: var(--soft);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(16, 24, 40, .04)
}

.bonus-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px
}

.bonus-item span {
  color: var(--muted);
  font-size: 14px
}

/* ---------- Game grid ---------- */
#spiele .section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center
}

#spiele .section-title p {
  color: #475467;
  font-size: 16px;
  line-height: 1.7
}

#spiele .offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px
}

#spiele .offer-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid #344258;
  border-radius: 26px;
  background: #081120;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

#spiele .offer-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  opacity: .86;
  transition: transform .45s ease, opacity .3s ease;
}

#spiele .offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(3, 8, 23, .03) 20%, rgba(3, 8, 23, .28) 48%, rgba(3, 8, 23, .95) 100%);
  pointer-events: none;
}

#spiele .offer-card-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  z-index: 2;
  text-align: center
}

#spiele .offer-card-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .9);
}

#spiele .offer-card-content a {
  display: inline-block;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  transition: color .25s ease, transform .25s ease;
}

#spiele .offer-card-content a:hover {
  color: #e1b536;
  transform: translateY(-2px)
}

#spiele .offer-card:hover {
  transform: translateY(-6px);
  border-color: #d3a72e;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .32)
}

#spiele .offer-card:hover>img {
  transform: scale(1.07);
  opacity: 1
}

/* ---------- Article / SEO content ---------- */
.article {
  
  margin: 0 auto;
  padding: 20px 0 10px
}

.article .lead {
  font-size: 19px;
  color: #344258;
  font-weight: 600
}

.article h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-top: 6px
}

.article p {
  color: #3f4756
}

.article a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(189, 141, 17, .4)
}

.article ul {
  color: #3f4756;
  padding-left: 22px
}

.article li {
  margin: 8px 0
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px
}

.article th,
.article td {
  border: 1px solid var(--line);
  padding: 11px 14px;
  text-align: left
}

.article th {
  background: var(--soft);
  font-weight: 800
}

.article td.ok {
  color: var(--gold-dark);
  font-weight: 700
}

.tag {
  display: inline-block;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin: 3px 3px 0 0;
}

.note-box,
.ok-box {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  font-size: 15px;
  color: #475467;
}

.ok-box {
  border-left-color: var(--red);
  background: #fdf2f2
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 28px 30px;
  margin: 26px 0;
}

.cta-box h3 {
  color: #fff;
  margin-bottom: 6px
}

.cta-box p {
  color: #c6cbd3;
  margin-bottom: 6px;
  font-size: 15px
}

.cta-box small {
  color: #8b93a3
}

.cta-box small a {
  color: #f0c94b;
  border: 0
}

.facts-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 22px 0;
  background: #fff;
}

.facts-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  padding: 16px 22px;
  font-weight: 800;
  font-size: 16px;
}

.facts-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px
}

.facts-box td {
  border-bottom: 1px solid var(--line);
  padding: 12px 22px;
  vertical-align: top
}

.facts-box tr:last-child td {
  border-bottom: 0
}

.facts-box td.k {
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
  background: #fafafa
}

.facts-box td a {
  color: var(--gold-dark)
}

.rating-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
  margin: 22px 0;
}

.rating-grid {
  display: grid;
  grid-template-columns: 220px 1fr
}

.rating-score {
  background: var(--dark);
  color: #fff;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-score .score {
  font-size: 54px;
  font-weight: 900;
  line-height: 1
}

.rating-score .score small {
  font-size: 20px;
  color: #98a2b3
}

.rating-score .stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin: 8px 0
}

.rating-score .vote {
  color: #98a2b3;
  font-size: 13px
}

.rating-body {
  padding: 26px 30px
}

.rating-body h3 {
  font-size: 20px;
  margin-bottom: 14px
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.pc-list h4 {
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px
}

.pc-pro h4 {
  color: #188038
}

.pc-con h4 {
  color: var(--red)
}

.pc-list ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.pc-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: #475467;
  margin: 8px 0
}

.pc-list li svg {
  flex-shrink: 0;
  margin-top: 3px
}

.pc-pro li svg {
  color: #188038
}

.pc-con li svg {
  color: var(--red)
}

.rating-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap
}

.rating-cta .hint {
  font-size: 13px;
  color: var(--muted)
}

.faq-list {
 
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

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

.faq-item:last-child {
  border-bottom: 0
}

.faq-q {
  width: 100%;
  background: #fff;
  border: 0;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q .chev {
  transition: transform .25s ease;
  color: var(--gold-dark)
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-a p {
  margin: 0;
  padding: 0 22px 18px;
  color: #475467;
  font-size: 15px
}

.author-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--soft);
  border-radius: 12px;
  padding: 26px 28px;
  margin: 40px 0 20px;
}

.author-box .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}

.author-box h4 {
  margin: 0 0 2px;
  font-size: 16px
}

.author-box .role {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px
}

.author-box p {
  font-size: 14px;
  color: #475467;
  margin: 0
}

.author-box a {
  color: var(--gold-dark)
}

/* ---------- Responsible ---------- */
.responsible {
  background: #f7f7f8;
  border-top: 1px solid var(--line);
  padding: 48px 0
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px
}

.responsible-grid h2 {
  font-size: 26px
}

.responsible-grid p {
  color: #475467
}

.notice {
  font-size: 14px;
  color: #475467
}

.notice strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px
}

/* ---------- CTA ---------- */
.cta {
  margin: 60px auto;
  background: #111;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 48px 30px
}

.cta h2 {
  font-size: 30px
}

.cta p {
  color: #d0d5dd
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  color: #000;
  padding: 52px 0 0;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px
}

.footer-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #000;
  margin-bottom: 15px;
  font-weight: 800
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: #475467
}

.footer-links a {
  color: #475467
}

.footer-links a:hover {
  color: var(--gold-dark)
}

.footer-brand p {
  color: #475467;
  max-width: 330px;
  font-size: 14px
}

.footer-brand .brand img {
  margin-bottom: 12px
}

.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 24px 0;
  color: #475467;
  font-size: 13px
}

.footer-legal a {
  color: var(--gold-dark)
}

.footer-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px
}

.badge {
  border: 1px solid #000;
  padding: 7px 11px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  color: #000
}

.badge:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark)
}

.badge-age {
  border-color: #e04b4b;
  color: #ff7b7b;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 16px
}

.license-info p {
  margin: 0 0 10px
}

/* ---------- Legal pages ---------- */
.legal-hero {
  padding: 72px 0;
  background: #111722;
  color: #fff
}

.legal-hero h1 {
  font-size: clamp(32px, 4vw, 48px)
}

.legal-hero p {
  color: #b9c0cc;
  max-width: 720px
}

.legal-main {
  padding: 62px 0
}

.legal-wrap {

  margin: auto;
  color: #3f4756
}

.legal-wrap h2 {
  font-size: 26px;
  margin-top: 40px;
  font-weight: 800
}

.legal-wrap h3 {
  font-size: 19px;
  margin-top: 26px
}

.legal-wrap p {
  margin-bottom: 14px
}

.legal-wrap ul {
  padding-left: 22px
}

.legal-wrap li {
  margin: 7px 0
}

.legal-wrap a {
  color: var(--gold-dark)
}

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 10, .82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.age-gate.show {
  display: flex
}

.age-box {
  background: #fff;
  width: min(470px, 100%);
  padding: 36px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3)
}

.age-box h2 {
  margin-bottom: 8px
}

.age-box p {
  color: #475467;
  font-size: 15px
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px
}

/* ---------- Cookie banner ---------- */
#cookieBanner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, .18);
  padding: 18px 22px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  color: #475467;
}

#cookieBanner.show {
  display: flex
}

#cookieBanner p {
  margin: 0
}

#cookieBanner a {
  color: var(--gold-dark)
}

#cookieBanner div {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

/* ---------- Back to top ---------- */
#toTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .15);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#toTop.show {
  opacity: 1;
  pointer-events: auto
}

#toTop:hover {
  background: var(--gold);
  color: #111
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  #spiele .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  #spiele .offer-card {
    min-height: 300px
  }

  .rating-grid {
    grid-template-columns: 1fr
  }

  .rating-score {
    flex-direction: row;
    gap: 18px;
    align-items: center;
    padding: 20px
  }
}

@media (max-width: 900px) {

  .nav,
  .header-actions {
    display: none
  }

  .menu-btn {
    display: block
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 24, 40, .08);
  }

  .hero-banner {
    min-height: 520px;
    background-position: 64% center
  }

  .hero-copy {
    max-width: 500px
  }

  .split {
    grid-template-columns: 1fr
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1140px)
  }

  .section {
    padding: 48px 0
  }

  .section-title h2 {
    font-size: 26px
  }

  .hero-banner {
    min-height: 420px;
    background-position: 70% center
  }

  .hero-copy {
    padding-top: 56px
  }

  .hero-copy h1 {
    font-size: 48px
  }

  .hero-copy .offer-kicker {
    font-size: 20px
  }

  .hero-arrows {
    inset: 50% 8px auto
  }

  #spiele .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
  }

  #spiele .offer-card {
    min-height: 240px;
    border-radius: 18px
  }

  #spiele .offer-card-content {
    left: 10px;
    right: 10px;
    bottom: 20px
  }

  #spiele .offer-card-content h3 {
    font-size: 15px;
    margin-bottom: 8px
  }

  #spiele .offer-card-content a {
    font-size: 15px
  }

  .info-panel {
    padding: 28px
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr
  }

  .photo-collage img,
  .photo-collage img:first-child {
    height: 170px;
    grid-row: auto
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .pros-cons {
    grid-template-columns: 1fr
  }

  .cta-box {
    flex-direction: column;
    text-align: center
  }

  .age-actions {
    flex-direction: column
  }

  #cookieBanner {
    flex-direction: column;
    text-align: center
  }
}