/* ═══════════════════════════════════════════════════
       DESIGN SYSTEM — Clean Dark
       Focus: clarity, trust, immediate value
       ═══════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:          #080f0d;
      --bg-2:        #0d1810;
      --bg-3:        #111e16;
      --surface:     #162520;
      --surface-2:   #1c3028;
      --green:       #1a6b3c;
      --green-b:     #22854a;
      --green-l:     #2aaa5e;
      --gold:        #c9a84c;
      --gold-dim:    #7a6230;
      --text:        #e8f0eb;
      --text-2:      #7a9488;
      --text-3:      #3d5e4a;
      --border:      rgba(255,255,255,0.06);
      --border-g:    rgba(42,170,94,0.25);
      --radius:      14px;
      --radius-sm:   8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    /* ─── TYPOGRAPHY ─── */
    .serif  { font-family: 'Inter', sans-serif; font-weight: 800; }
    .serif-i { font-family: 'Inter', sans-serif; font-weight: 800; font-style: italic; }

    .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green-l);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(26px, 4vw, 44px);
      color: var(--text);
      line-height: 1.15;
    }

    .section-sub {
      color: var(--text-2);
      font-size: 15px;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ─── BUTTONS ─── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: var(--green-b);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-primary:hover {
      background: var(--green-l);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(42,170,94,0.35);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--text-2);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      transition: all 0.3s;
    }

    .btn-secondary:hover {
      border-color: var(--green-b);
      color: var(--green-l);
    }

    /* ─── HEADER ─── */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(8,15,13,0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .header-logo span { color: var(--green-l); }

    .header-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .header-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-2);
      transition: color 0.2s;
    }

    .header-links a:hover { color: var(--text); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 110px 32px 80px;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42,170,94,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(42,170,94,0.04) 0%, transparent 60%),
        var(--bg);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
    }

    /* Top badge: real and trusted */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(42,170,94,0.12);
      border: 1px solid var(--border-g);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 600;
      color: var(--green-l);
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }

    .hero-badge i { font-size: 10px; }

    .hero h1 {
      position: relative;
      z-index: 1;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(38px, 6.5vw, 76px);
      line-height: 1.06;
      color: var(--text);
      max-width: 760px;
      margin-bottom: 16px;
      letter-spacing: -1.5px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--green-l);
    }

    .hero-sub {
      position: relative;
      z-index: 1;
      font-size: clamp(14px, 1.6vw, 17px);
      color: var(--text-2);
      max-width: 460px;
      margin-bottom: 48px;
      line-height: 1.7;
    }

    /* ── OFFER CARD ── */
    .offer-card {
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
      border: 1px solid var(--border-g);
      border-radius: 20px;
      padding: 36px 52px;
      margin-bottom: 32px;
      box-shadow: 0 0 60px rgba(42,170,94,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .offer-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green-l);
      margin-bottom: 6px;
    }

    .offer-amount {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(40px, 7vw, 68px);
      color: var(--text);
      line-height: 1;
      letter-spacing: -2px;
    }

    .offer-amount .euro { color: var(--green-l); }

    .offer-desc {
      font-size: 13px;
      color: var(--text-2);
      font-weight: 500;
      margin-top: 6px;
    }

    .offer-note {
      position: relative;
      z-index: 1;
      font-size: 12px;
      color: var(--text-3);
      margin-top: -12px;
      margin-bottom: 28px;
    }

    .offer-note strong { color: var(--green-l); font-weight: 600; }

    /* ── HERO ACTIONS ── */
    .hero-actions {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .trust-item {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-3);
      padding: 8px 20px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .trust-item i { color: var(--green-b); font-size: 11px; }
    .trust-item:not(:last-child) { border-right: 1px solid var(--border); }

    /* ─── SECTION SHARED ─── */
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 32px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-header .eyebrow { margin-bottom: 12px; }
    .section-header .section-title { margin-bottom: 12px; }
    .section-header .section-sub { margin: 0 auto; }

    /* ─── GAMES SECTION ─── */
    .games-section {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .games-categories {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .cat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-2);
      background: var(--surface);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: var(--green-b);
      color: #fff;
      border-color: var(--green-b);
    }

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

    .game-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 3/4;
      background: var(--surface);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.35s;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 20px 14px;
    }

    .game-card:hover {
      border-color: var(--green-b);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(42,170,94,0.15);
    }

    .game-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.4s;
    }

    /* Slot symbol decorative layer */
    .game-bg::before {
      content: '★ ✦ ◆ ▲ ♠ ♥ ♣';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-15deg);
      font-size: 11px;
      letter-spacing: 6px;
      color: rgba(255,255,255,0.07);
      white-space: nowrap;
      pointer-events: none;
    }

    /* Diagonal highlight */
    .game-bg::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -20%;
      width: 80%;
      height: 80%;
      background: radial-gradient(ellipse at top right, rgba(255,255,255,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .game-card:hover .game-bg { transform: scale(1.04); }

    .game-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8,15,13,0) 30%, rgba(8,15,13,0.85) 100%);
    }

    .game-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      background: var(--green-b);
      color: #fff;
    }

    .game-tag.live { background: #e53e3e; }

    .game-play {
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(6px);
      transition: all 0.25s;
      margin-bottom: 8px;
    }

    .game-card:hover .game-play { opacity: 1; transform: translateY(0); }

    .game-play-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      background: var(--green-b);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .game-play-btn:hover { background: var(--green-l); }

    .game-name {
      position: relative;
      z-index: 1;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      text-align: center;
    }

    .game-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      font-size: 36px;
      z-index: 1;
      opacity: 0.6;
      transition: opacity 0.3s;
      pointer-events: none;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    }

    .game-card:hover .game-icon { opacity: 0.9; }

    /* ─── FEATURES SECTION ─── */
    .features-section {
      background: var(--bg);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: all 0.3s;
    }

    .feature-card:hover {
      border-color: var(--border-g);
      background: var(--surface-2);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(42,170,94,0.12);
      border: 1px solid var(--border-g);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--green-l);
      flex-shrink: 0;
    }

    .feature-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .feature-card p {
      font-size: 13px;
      color: var(--text-2);
      line-height: 1.7;
    }

    /* ─── BONUS SECTION ─── */
    .bonus-section {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }

    .bonus-card {
      max-width: 700px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
      border: 1px solid var(--border-g);
      border-radius: 20px;
      padding: 64px 48px;
    }

    .bonus-amount {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(40px, 6vw, 64px);
      color: var(--text);
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -2px;
    }

    .bonus-amount .green { color: var(--green-l); }

    .bonus-sub {
      font-size: 14px;
      color: var(--text-2);
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .bonus-highlights {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .bonus-hi {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-2);
    }

    .bonus-hi i { color: var(--green-l); font-size: 12px; }

    /* ─── PROVIDERS ─── */
    .providers-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

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

    .provider-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 20px 16px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-2);
      letter-spacing: 0.5px;
      transition: all 0.2s;
    }

    .provider-card:hover {
      border-color: var(--border-g);
      color: var(--green-l);
    }

    /* ─── FINAL CTA ─── */
    .final-cta {
      background:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(42,170,94,0.08) 0%, transparent 70%),
        var(--bg-2);
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 100px 32px;
    }

    .final-cta h2 {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 44px);
      color: var(--text);
      margin-bottom: 12px;
    }

    .final-cta p {
      font-size: 15px;
      color: var(--text-2);
      max-width: 420px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }

    /* ─── FOOTER ─── */
    .site-footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 64px 32px 40px;
      text-align: center;
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer-divider {
      width: 40px;
      height: 1px;
      background: var(--border);
      margin: 40px auto;
    }

    .footer-disclaimer {
      font-size: 11px;
      color: var(--text-3);
      max-width: 680px;
      margin: 0 auto 16px;
      line-height: 1.8;
    }

    .footer-legal {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .footer-legal a {
      font-size: 11px;
      color: var(--text-3);
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: var(--green-l); }

    .footer-copy {
      font-size: 10px;
      color: var(--text-3);
      opacity: 0.5;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .games-grid { grid-template-columns: repeat(3, 1fr); }
      .providers-grid { grid-template-columns: repeat(4, 1fr); }
    }

    @media (max-width: 768px) {
      .games-grid { grid-template-columns: repeat(2, 1fr); }
      .providers-grid { grid-template-columns: repeat(3, 1fr); }
      .features-grid { grid-template-columns: 1fr; }
      .header-links { display: none; }
    }

    @media (max-width: 600px) {
      .section-inner { padding: 72px 20px; }
      .hero { padding: 100px 20px 72px; }
      .offer-card { padding: 28px 28px; }
      .hero-actions { flex-direction: column; }
      .bonus-card { padding: 48px 28px; }
      .bonus-highlights { gap: 16px; }
    }