  :root {
    color-scheme: dark;
    --bg-deep:    #1F2933;
    --bg-dark:    #1F2933;
    --bg-card:    #2B3540;
    --bg-card2:   #2C3642;
    --accent:     #FF3B3B;
    --accent-dim: #FF2424;
    --accent-glow:rgba(255,59,59,0.18);
    --text:       #ffffff;
    --text-muted: #9AA4AF;
    --text-dim:   #c8d0d8;
    --border:     rgba(255,59,59,0.18);
    --border-card:#394552;
    --red:        #FF3B3B;
    --gold:       #21C46A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }
  *, *::before, *::after { min-width: 0; }

  a { color: inherit; text-decoration: none; }

  /* ─── HEADER ─── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1F2933;
    border-bottom: 1px solid #394552;
  }
  .header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .logo span { color: var(--accent); }
  .logo-icon {
    width: 34px; height: 34px;
    background: var(--accent);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 900; color: #fff;
  }
  .header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding-left: 24px;
  }
  .header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: background .18s, color .18s;
    white-space: nowrap;
  }
  .header-nav a:hover { background: var(--bg-card2); color: var(--text); }
  .header-nav a.active { background: var(--bg-card2); color: var(--text); }
  .header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .btn-promo {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card2);
    border: 1px solid #394552;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .18s;
    white-space: nowrap;
  }
  .btn-promo:hover { border-color: var(--accent); color: var(--text); }
  .btn-bonus {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,59,59,0.1);
    border: 1px solid rgba(255,59,59,0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .18s;
    white-space: nowrap;
  }
  .btn-bonus:hover { background: rgba(255,59,59,0.2); }
  .btn-bonus .bonus-amount {
    font-size: 11px;
    font-weight: 800;
    background: var(--accent);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .btn-signin {
    background: var(--bg-card2);
    border: 1px solid #394552;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all .18s;
    white-space: nowrap;
  }
  .btn-signin:hover { border-color: #556070; }
  .btn-register {
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background .18s;
    white-space: nowrap;
  }
  .btn-register:hover { background: var(--accent-dim); }
  .header-bottom {
    background: #2B3540;
    border-top: 1px solid #394552;
  }
  .header-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 42px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .header-bottom-inner::-webkit-scrollbar { display: none; }
  .subnav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    transition: background .18s, color .18s;
    cursor: pointer;
    text-decoration: none;
  }
  .subnav-item:hover { background: rgba(255,255,255,0.06); color: var(--text); }
  .subnav-item.active { background: rgba(255,255,255,0.08); color: var(--text); }
  .subnav-divider {
    width: 1px;
    height: 20px;
    background: #394552;
    margin: 0 6px;
    flex-shrink: 0;
  }
  .header-cta { display: none; }

  /* ─── NAV DROPDOWN (Mehr ▾) ─── */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: background .18s, color .18s;
    white-space: nowrap;
  }
  .nav-dropdown-toggle:hover { background: var(--bg-card2); color: var(--text); }
  .nav-dropdown-toggle .caret {
    font-size: 10px;
    transition: transform .2s;
  }
  .nav-dropdown.open .nav-dropdown-toggle { background: var(--bg-card2); color: var(--text); }
  .nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 110;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-muted);
    transition: background .18s, color .18s;
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: var(--bg-card2); color: var(--text); }
  .nav-dropdown-menu a.active { background: var(--bg-card2); color: var(--text); }

  /* ─── BURGER (mobile) ─── */
  .burger-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border-card);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    transition: border-color .18s;
  }
  .burger-btn:hover { border-color: var(--accent); }
  .burger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  body.menu-open .burger-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .burger-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .burger-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* mobile menu overlay */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15,20,26,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s, visibility .22s;
    overflow-y: auto;
  }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
  .mobile-menu-inner {
    padding: 84px 24px 40px;
    max-width: 480px;
    margin: 0 auto;
  }
  .mobile-menu-group { margin-bottom: 24px; }
  .mobile-menu-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding: 0 16px;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    transition: background .18s;
  }
  .mobile-menu a:hover { background: var(--bg-card2); }
  .mobile-menu a.active { background: var(--bg-card2); color: var(--accent); }
  .mobile-menu .btn-register {
    margin-top: 16px;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    padding: 14px 18px;
  }

  @media (max-width: 960px) {
    .header-nav { display: none; }
    .btn-promo { display: none; }
    .burger-btn { display: flex; }
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,59,59,0.15) 0%, transparent 65%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,59,59,0.15) 0%, transparent 60%),
      linear-gradient(160deg, #1F2933 0%, #192028 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,59,59,0.15) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,59,59,0.15) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,59,59,0.15);
    border: 1px solid rgba(255,59,59,0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  h1 .hl { color: var(--accent); }
  .hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 0 24px rgba(255,59,59,0.15);
  }
  .btn-primary:hover { background: var(--accent-dim); transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,59,59,0.15); }
  .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all .2s;
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

  /* hero bonus card */
  .hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    min-width: 0;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #FF3B3B, #FF2424);
  }
  .hero-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .hero-card-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-card-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .hero-card-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .hero-card-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
  }
  .feat-icon {
    width: 26px; height: 26px;
    background: rgba(255,59,59,0.15);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }
  .hero-card .btn-primary { width: 100%; text-align: center; display: block; }

  /* ─── STATS ─── */
  .stats {
    background: var(--bg-card);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
  }
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--border-card);
  }
  .stat-item:last-child { border-right: none; }
  .stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ─── SECTIONS ─── */
  section { padding: 80px 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.7;
  }

  /* ─── INTRO (Was ist VOdds) ─── */
  .intro-section { background: var(--bg-deep); }
  .intro-lead {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 880px;
    margin-bottom: 40px;
  }
  .intro-lead strong { color: var(--text); font-weight: 600; }
  .intro-lead .hl { color: var(--accent); font-weight: 600; }
  .intro-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .intro-feat {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 22px 18px;
    transition: border-color .25s, transform .25s;
  }
  .intro-feat:hover { border-color: rgba(255,59,59,0.3); transform: translateY(-3px); }
  .intro-feat-icon {
    width: 40px; height: 40px;
    background: rgba(255,59,59,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
  }
  .intro-feat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    color: var(--text);
  }
  .intro-feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  /* ─── CATEGORIES ─── */
  .cats { background: var(--bg-dark); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color .25s, transform .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .cat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .25s;
  }
  .cat-card:hover { border-color: rgba(255,59,59,0.15); transform: translateY(-4px); }
  .cat-card:hover::after { opacity: 1; }
  .cat-emoji { font-size: 32px; margin-bottom: 16px; }
  .cat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .cat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .cat-tag {
    display: inline-block;
    margin-top: 14px;
    background: rgba(255,59,59,0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── SLOTS GRID ─── */
  .slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .slot-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .25s;
  }
  .slot-card:hover { transform: translateY(-4px); }
  .slot-card:hover .slot-img { border-color: rgba(255,59,59,0.4); }
  .slot-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    margin-bottom: 10px;
    transition: border-color .25s;
  }
  .slot-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .slot-rtp-badge {
    position: absolute;
    top: 8px; right: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .slot-live-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .slot-live-badge::before {
    content: '●';
    margin-right: 4px;
    font-size: 8px;
    animation: pulse 2s infinite;
  }

  /* Live Casino section */
  .live-section { background: var(--bg-dark); }
  .slot-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
  }
  .slot-provider {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2px;
  }

  /* ─── GAMES TABLE ─── */
  .games-section { background: var(--bg-deep); }
  .games-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }
  .games-table thead th {
    text-align: left;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-card);
    background: var(--bg-card);
  }
  .games-table tbody tr {
    border-bottom: 1px solid var(--border-card);
    transition: background .2s;
  }
  .games-table tbody tr:hover { background: var(--bg-card2); }
  .games-table td {
    padding: 16px 20px;
    color: var(--text-dim);
    vertical-align: middle;
  }
  .game-name { font-weight: 600; color: var(--text); font-size: 15px; }
  .game-provider { font-size: 13px; color: var(--text-muted); }
  .rating-stars { color: #21C46A; font-size: 14px; letter-spacing: 1px; }
  .tag-hot {
    background: rgba(255,75,75,0.12);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .tag-new {
    background: rgba(255,59,59,0.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .tag-live {
    background: rgba(255,180,50,0.12);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── CRYPTO ─── */
  .crypto-section { background: var(--bg-card); }
  .crypto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .crypto-list { display: flex; flex-direction: column; gap: 16px; }
  .crypto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-deep);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color .2s;
  }
  .crypto-item:hover { border-color: var(--border); }
  .crypto-coin {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }
  .coin-btc { background: rgba(247,147,26,0.15); color: #f7931a; }
  .coin-eth { background: rgba(98,126,234,0.15); color: #627eea; }
  .coin-usdt{ background: rgba(38,161,123,0.15); color: #26a17b; }
  .coin-ltc { background: rgba(190,190,190,0.15); color: #bebebd; }
  .coin-bnb { background: rgba(243,186,47,0.15); color: #f3ba2f; }
  .crypto-info { flex: 1; }
  .crypto-name { font-weight: 600; font-size: 15px; }
  .crypto-tag  { font-size: 12px; color: var(--text-muted); }
  .crypto-speed {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-align: right;
  }
  .crypto-right h2 { margin-bottom: 16px; }
  .crypto-right p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dim);
  }
  .check-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ─── FEATURES ─── */
  .features-section { background: var(--bg-dark); }
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .feat-block {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 28px 22px;
    transition: border-color .2s;
  }
  .feat-block:hover { border-color: var(--border); }
  .feat-block-icon {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .feat-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .feat-block p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

  /* ─── SICHERHEIT ─── */
  .security-section { background: var(--bg-dark); }

  /* ─── STEPS (Wie anmelden) ─── */
  .steps-section { background: var(--bg-deep); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
  }
  .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    padding: 36px 28px 28px;
    position: relative;
    transition: border-color .25s, transform .25s;
  }
  .step-card:hover { border-color: rgba(255,59,59,0.3); transform: translateY(-3px); }
  .step-num {
    position: absolute;
    top: -20px; left: 28px;
    width: 40px; height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(255,59,59,0.35);
  }
  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 8px 0 12px;
    color: var(--text);
  }
  .step-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
  .step-cta { margin-top: 32px; text-align: center; }

  /* ─── BONUS TABLE ─── */
  .bonus-section { background: var(--bg-deep); }
  .bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
  }
  .bonus-table thead th {
    background: var(--bg-card);
    padding: 16px 22px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .bonus-table tbody tr {
    border-bottom: 1px solid var(--border-card);
    transition: background .2s;
  }
  .bonus-table tbody tr:hover { background: var(--bg-card2); }
  .bonus-table td { padding: 18px 22px; color: var(--text-dim); vertical-align: middle; }
  .bonus-table td:first-child { font-weight: 600; color: var(--text); }
  .bonus-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
  }
  .bonus-cta-cell a {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background .2s;
  }
  .bonus-cta-cell a:hover { background: var(--accent-dim); }

  /* ─── FAQ ─── */
  .faq-section { background: var(--bg-card); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .faq-item {
    background: var(--bg-deep);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 24px;
    transition: border-color .2s;
  }
  .faq-item:hover { border-color: var(--border); }
  .faq-q {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .faq-q::before {
    content: 'F';
    background: rgba(255,59,59,0.15);
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    width: 22px; height: 22px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ─── TEXT CONTENT ─── */
  /* ─── AUTHOR ─── */
  .author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 40px;
  }
  .author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-card);
    background: var(--bg-card2);
  }
  .author-info { flex: 1; }
  .author-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
  }
  .author-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 2px;
  }
  .author-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }


  /* ─── AUTHOR EEAT BLOCK ─── */
  .author-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    padding: 60px 0;
  }
  .author-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  /* Left column */
  .author-left {
    background: var(--bg-deep);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
  }
  .author-photo {
    width: 100%;
    height: auto;
    display: block;
    background: #2B3540;
    object-fit: contain;
  }
  .author-left-body { padding: 20px; }
  .author-left-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
  }
  .author-left-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1.4;
  }
  .author-left-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .author-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .author-tag {
    background: var(--bg-card2);
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .author-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-card);
    padding-top: 16px;
  }
  .author-stat {
    flex: 1;
    text-align: center;
  }
  .author-stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .author-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
  }
  /* Right column */
  .author-right { padding-top: 4px; }
  .author-right-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .author-right h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .author-right-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .author-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .author-feat {
    background: var(--bg-deep);
    border: 1px solid var(--border-card);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .author-feat-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .author-feat-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
  }
  .author-feat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  @media (max-width: 860px) {
    .author-layout { grid-template-columns: 1fr; }
    .author-feats { grid-template-columns: 1fr; }
  }

  .text-section { background: var(--bg-dark); }
  .text-content {
    max-width: 860px;
    margin: 0 auto;
  }
  .text-content h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
  .text-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    margin: 32px 0 12px;
  }
  .text-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-card);
    padding: 56px 0 32px;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
  }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border-card);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-bottom p { font-size: 12px; color: var(--text-muted); line-height: 1.6; max-width: 700px; }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 12px; color: var(--text-muted); white-space: nowrap; transition: color .2s; }
  .footer-links a:hover { color: var(--text); }

  /* ─── 18+ badge ─── */
  .badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  /* ─── RESPONSIVE ─── */
  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) {
    /* Header */
    .header-nav { display: none; }
    .btn-promo { display: none; }
    .btn-signin { display: none; }
    .header-bottom { display: none; }

    /* Hero */
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 100%; }

    /* Grids */
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-features { grid-template-columns: repeat(2, 1fr); }
    .slots-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .crypto-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }

    /* Author */
    .author-layout { grid-template-columns: 1fr; }
    .author-feats { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    /* Header */
    .btn-bonus .bonus-amount { display: none; }
    .btn-bonus { padding: 8px 12px; font-size: 12px; }
    .btn-register { padding: 8px 12px; font-size: 12px; }

    /* Hero */
    .hero-inner { padding: 36px 16px; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { text-align: center; }

    /* Grids */
    .cat-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .intro-features { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }

    /* Tables — horizontal scroll */
    /* Tables */
    .games-table thead, .bonus-table thead { display: none; }
    .games-table, .games-table tbody,
    .bonus-table, .bonus-table tbody { display: block; width: 100%; }
    .games-table tr, .bonus-table tr {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 10px;
      padding: 14px 16px;
      margin-bottom: 10px;
      align-items: center;
    }
    .games-table td, .bonus-table td {
      display: block;
      padding: 2px 0;
      white-space: normal;
      border: none;
    }
    .games-table td:first-child { display: none; }
    .games-table td:nth-child(2) { flex: 1 1 100%; }
    .games-table td:nth-child(3) { color: var(--text-muted); font-size: 13px; }
    .games-table td:nth-child(4) { margin-left: auto; font-size: 13px; }
    .games-table td:nth-child(5) { font-size: 13px; }
    .games-table td:nth-child(6) { margin-left: auto; }
    .bonus-table td:nth-child(1) { flex: 1 1 100%; font-weight: 600; font-size: 15px; color: var(--text); }
    .bonus-table td:nth-child(2) { flex: 0 0 auto; }
    .bonus-table td:nth-child(3), .bonus-table td:nth-child(4) { font-size: 13px; color: var(--text-muted); }
    .bonus-table td:nth-child(5) { flex: 0 0 auto; margin-left: auto; }
    .bonus-cta-cell a { padding: 8px 16px; font-size: 12px; }

    /* Stats */
    .stats-inner { grid-template-columns: repeat(2, 1fr); }

    /* Sections padding */
    section { padding: 48px 0; }
    .container { padding: 0 16px; }
    .page-wrap { padding: 36px 16px 60px; }

    /* Footer */
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-grid { padding: 32px 16px; }
  }

  @media (max-width: 400px) {
    .hero-card { padding: 24px 18px; }
    .hero-card-amount { font-size: 44px; }
    .bonus-card { padding: 28px 18px; }
    .bonus-amount { font-size: 52px; }
  }
