   :root{
    /* Base */
    --bg: #0b0d12;
    --surface: #101521;
    --surface-2: #0f1420;
    --text: #e8eefc;
    --muted: rgba(232, 238, 252, .72);
    --border: rgba(255,255,255,.10);
  
    /* OneCasino accents */
    --green: #39f27a;        /* neon green */
    --green-2: #17d85f;
    --purple: #6a2cf0;       /* hero purple */
    --purple-2: #3b1d8c;
    --orange: #ff6a00;       /* CTA orange */
    --orange-2: #ff8a2a;
  
    --radius: 18px;
    --shadow: 0 18px 42px rgba(0,0,0,.38);
    --max: 1120px;
  
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  }
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin: 0;
    font-family: var(--font);
    background:
      radial-gradient(1100px 500px at 50% -120px, rgba(106,44,240,.35), transparent 70%),
      radial-gradient(900px 520px at 15% 0%, rgba(57,242,122,.10), transparent 60%),
      var(--bg);
    color: var(--text);
    line-height: 1.65;
  }
  
  img{ max-width: 100%; height: auto; display: block; }
  a{ color: inherit; text-decoration: none; }
  
  .container{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
  }
  
  /* ================= HEADER ================= */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(8,10,14,.95), rgba(8,10,14,.85));
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
  }
  
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
  }
  
  .site-logo img{
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
  }
  
  /* Header actions */
  .header-actions{
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .header-btn{
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  
  .header-btn-secondary{
    background: rgba(255,255,255,.06);
    color: var(--text);
    border-color: rgba(255,255,255,.12);
  }
  
  .header-btn-primary{
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #06110a;
    border-color: rgba(0,0,0,.10);
    box-shadow: 0 12px 26px rgba(57,242,122,.22);
  }
  
  .header-btn:hover{
    transform: translateY(-1px);
    opacity: .96;
  }
  
  /* ================= HERO ================= */
  .hero{ padding: 0; }
  
  .hero-inner{
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items: stretch;
    padding: 18px 0;
  }
  
  .hero-banner,
  .hero-content{
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
  
  /* Left banner like original: purple stage */
  .hero-banner{
    background:
      radial-gradient(820px 360px at 22% 35%, rgba(255,255,255,.10), transparent 55%),
      radial-gradient(900px 520px at 70% 40%, rgba(57,242,122,.10), transparent 60%),
      linear-gradient(135deg, rgba(106,44,240,.95), rgba(64,28,155,.92));
    min-height: 300px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
  
  .hero-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Right block */
  .hero-content{
    background: linear-gradient(180deg, rgba(16,21,33,.96), rgba(16,21,33,.90));
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-content h1{
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.2px;
  }
  
  .hero-content p{
    margin: 0 0 14px;
    color: var(--muted);
  }
  
  .cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #111018;
    width: fit-content;
    box-shadow: 0 14px 28px rgba(255,106,0,.18);
    transition: transform .15s ease, opacity .15s ease;
  }
  
  .cta-button:hover{
    transform: translateY(-1px);
    opacity: .97;
  }
  
  /* ================= MAIN CONTENT ================= */
  .site-content{ padding: 8px 0 28px; }
  
  .content-section{ margin-top: 16px; }
  
  .content-section .container{
    background: linear-gradient(180deg, rgba(16,21,33,.92), rgba(16,21,33,.86));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
  }
  
  .content-section h2{
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -0.1px;
  }
  
  .content-section p{ margin: 0; color: var(--muted); }
  
  /* Pros / Cons */
  .pros-list, .cons-list{
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
  }
  .pros-list li, .cons-list li{ margin: 6px 0; }
  .pros-list li::marker{ color: var(--green); }
  .cons-list li::marker{ color: #ff4d4d; }
  
  /* ================= TABLE ================= */
  .brand-table{ margin: 18px 0 24px; }
  
  .card{
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(16,21,33,.92), rgba(16,21,33,.86));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
  
  .brand-table h2{
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
  }
  
  .muted{
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
  }
  
  .table-wrap{
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
  }
  
  .info-table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: rgba(10,12,18,.55);
  }
  
  .info-table th,
  .info-table td{
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    vertical-align: top;
  }
  
  .info-table th{
    width: 34%;
    text-align: left;
    font-weight: 800;
    color: rgba(232,238,252,.92);
    background: rgba(57,242,122,.08);
  }
  
  .info-table td{
    color: rgba(232,238,252,.78);
  }
  
  .table-cta{
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #06110a;
    font-weight: 950;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 14px 26px rgba(57,242,122,.16);
  }
  
  .table-cta:hover{
    opacity: .96;
    transform: translateY(-1px);
  }
  
  /* ================= FAQ ================= */
  .faq{
    display: grid;
    gap: 10px;
    max-width: 980px;
  }
  
  .faq__q{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(10,12,18,.55);
    color: rgba(232,238,252,.92);
    text-align: left;
    cursor: pointer;
    font-weight: 900;
  }
  
  .faq__q::after{
    content: "+";
    font-weight: 950;
    color: rgba(57,242,122,.95);
    opacity: .9;
  }
  
  .faq__q[aria-expanded="true"]{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .faq__q[aria-expanded="true"]::after{ content: "–"; }
  
  .faq__a{
    padding: 12px 16px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-top: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: linear-gradient(180deg, rgba(57,242,122,.08), rgba(106,44,240,.06));
    color: var(--muted);
  }
  
  /* ================= FOOTER ================= */
  .site-footer{
    margin-top: 18px;
    padding: 22px 0 42px;
    color: var(--muted);
  }
  
  .footer-inner{
    background: linear-gradient(180deg, rgba(16,21,33,.92), rgba(16,21,33,.86));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
  }
  
  .footer-links{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 12px;
  }
  
  .footer-links a{
    font-size: 13px;
    color: rgba(232,238,252,.88);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .footer-links a:hover{ color: var(--green); }
  
  .site-footer p{ margin: 0 0 10px; }
  .site-footer p:last-child{ margin-bottom: 0; }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 920px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-content h1{ font-size: 28px; }
    .site-logo img{ width: 150px; }
  }
  
  @media (max-width: 520px){
    .container{ padding: 0 16px; }
    .header-actions{ gap: 6px; }
    .header-btn{ padding: 9px 12px; font-size: 12px; }
    .hero-inner{ padding: 14px 0; }
    .hero-content{ padding: 18px; }
    .content-section .container{ padding: 18px; }
  }
  /* ================= SLOT GRID ================= */
.slot-grid{
  margin: 16px 0 24px;
}

.grid-4-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.slot-card{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  background:
    radial-gradient(140px 60px at 50% -20%, rgba(255,255,255,.12), transparent 60%),
    rgba(10,12,18,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
}

.slot-card:hover{
  transform: translateY(-2px);
  opacity: .96;
  border-color: rgba(57,242,122,.35);
}

@media (max-width: 720px){
  .grid-4-4{ grid-template-columns: repeat(2, 1fr); }
}

/* ================= TOC (Inhoudsopgave) ================= */
.toc-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16,21,33,.92), rgba(16,21,33,.86));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.toc__toggle{
  width: 100%;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.toc__icon{
  color: var(--green);
  font-size: 18px;
}

.toc__list{
  padding: 8px 18px 18px;
}

.toc__list ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.toc__list a{
  font-size: 14px;
  color: var(--muted);
}

.toc__list a:hover,
.toc__list a.is-active{
  color: var(--green);
}
.toc-card .toc__list{
  display: none;
}

.toc-card[open] .toc__list{
  display: block;
}
.toc__toggle{
  list-style: none;
}

.toc__toggle::-webkit-details-marker{
  display: none;
}
.toc-card[open] .toc__icon{
  transform: rotate(90deg);
}

/* TOC accordion */
.toc__toggle{
  list-style: none;
}

.toc__toggle::-webkit-details-marker{
  display: none;
}

.toc-card .toc__list{
  display: none;
}

.toc-card[open] .toc__list{
  display: block;
}

.toc__icon{
  transition: transform .2s ease;
}

.toc-card[open] .toc__icon{
  transform: rotate(90deg);
}
/* ================= INLINE LINKS / CTA ================= */
.inline-links{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.text-link{
  font-weight: 800;
  color: var(--green);
}

.text-link:hover{
  text-decoration: underline;
}

.section-cta{
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  background: rgba(57,242,122,.12);
  border: 1px solid rgba(57,242,122,.35);
  color: var(--green);
}

.section-cta:hover{
  background: rgba(57,242,122,.18);
}

/* ================= SIMPLE LIST ================= */
.simple-list{
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.simple-list li{
  margin: 6px 0;
}

/* ================= REVIEWS ================= */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.review-card{
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(10,12,18,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.review-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 13px;
}

.stars{
  color: #ffd166;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 900px){
  .reviews-grid{
    grid-template-columns: 1fr;
  }
}
/* TOC closed by default */
.toc__list{
  display: none;
}
/* ================= SLOT CARD WITH IMAGE ================= */
.slot-card{
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
}

/* ================= SLOT CARD (FIXED, NO CROPPING) ================= */
.slot-thumb{
  width: 100%;
  aspect-ratio: 4 / 3; /* ближе к реальным слотам */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-thumb img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* КЛЮЧЕВОЕ */
  display: block;
}


.slot-title{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  color: rgba(232,238,252,.92);
  line-height: 1.25;
}
/* ================= BREADCRUMBS ================= */
.breadcrumbs{
  margin-top: 10px;
  margin-bottom: 6px;
}

.breadcrumbs ol{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.breadcrumbs li{
  color: var(--muted);
}

.breadcrumbs li a{
  color: rgba(232,238,252,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs li a:hover{
  color: var(--green);
}

.breadcrumbs li::after{
  content: "›";
  margin-left: 6px;
  opacity: .6;
}

.breadcrumbs li:last-child::after{
  content: "";
}
