/* ============================================================
   LegionBet review (NL) — onafhankelijke stylesheet
   Palet: graphite #161616 / rood #C0202F / goud #D9A521 / wit
   Systeemfont-stack (geen webfont) voor PageSpeed. Prefix: lgn
   ============================================================ */

:root {
    --lgn-bg:        #161616;
    --lgn-bg-2:      #1d1d1d;
    --lgn-card:      #232323;
    --lgn-bar:       #101010;
    --lgn-red:       #C0202F;
    --lgn-red-soft:  #e23a4a;
    --lgn-gold:      #D9A521;
    --lgn-gold-soft: #f1c452;
    --lgn-white:     #ffffff;
    --lgn-mute:      #a6a6a6;
    --lgn-line:      rgba(255,255,255,.08);
    --lgn-radius:    12px;
    --lgn-radius-s:  8px;
    --lgn-bar-h:     66px;
    --lgn-font:      Georgia,"Times New Roman",serif;
    --lgn-ease:      .24s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
    font-family: var(--lgn-font);
    background: var(--lgn-bg);
    color: #e9e9e9;
    line-height: 1.62;
    font-size: 15.5px;
    overflow-x: clip;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}
body::before { content: ""; position: fixed; inset: 0; background: url('../img/body-bg.webp') center/cover no-repeat; opacity: .55; z-index: -1; pointer-events: none; }
h1, h2, h3 { font-family: var(--lgn-font); font-weight: 800; line-height: 1.2; color: var(--lgn-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; color: #fff; }
hr { border: 0; border-top: 1px solid var(--lgn-line); margin: 34px 0; }

/* ===== Knoppen ===== */
.lgn-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 6px;
    padding: 13px 26px; font-size: 14px; transition: transform var(--lgn-ease), box-shadow var(--lgn-ease), background var(--lgn-ease);
    white-space: nowrap;
}
.lgn-btn-red {
    background: linear-gradient(135deg, var(--lgn-red), var(--lgn-red-soft));
    color: #fff;
    box-shadow: 0 6px 22px rgba(192,32,47,.34);
}
.lgn-btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,32,47,.5); }
.lgn-btn-gold { background: linear-gradient(135deg, var(--lgn-gold), var(--lgn-gold-soft)); color: #20180a; }
.lgn-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217,165,33,.4); }
.lgn-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--lgn-line); }
.lgn-btn-ghost:hover { background: rgba(255,255,255,.12); }
.lgn-btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ===== Topbalk (desktop) ===== */
.lgn-top {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    height: var(--lgn-bar-h); padding: 0 30px;
    background: var(--lgn-bar);
    border-bottom: 1px solid var(--lgn-line);
    position: sticky; top: 0; z-index: 60;
}
.lgn-logo { display: block; }
.lgn-logo img { height: 47px; width: auto; display: block; }
.lgn-nav { display: flex; gap: 6px; align-items: center; }
.lgn-nav a {
    padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 600; color: #cfcfcf;
    transition: background var(--lgn-ease), color var(--lgn-ease);
}
.lgn-nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.lgn-nav a.lgn-on { color: var(--lgn-red-soft); }
.lgn-top-cta { display: flex; align-items: center; }

/* ===== Mobiele header ===== */
.lgn-mtop {
    display: none; align-items: center; justify-content: space-between; gap: 12px;
    height: 58px; padding: 0 16px; background: var(--lgn-bar);
    border-bottom: 1px solid var(--lgn-line); position: sticky; top: 0; z-index: 60;
}
.lgn-burger { width: 40px; height: 40px; background: transparent; border: 1px solid var(--lgn-line); border-radius: 8px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.lgn-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.lgn-mlogo { display: block; }
.lgn-mlogo img { height: 47px; width: auto; display: block; }
.lgn-mnav {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%; z-index: 80;
    background: var(--lgn-bg-2); border-right: 1px solid var(--lgn-line);
    padding: 22px 16px; display: flex; flex-direction: column; gap: 4px;
    transition: left .28s ease;
}
.lgn-mnav.lgn-open { left: 0; }
.lgn-mnav a { padding: 13px 12px; border-radius: 8px; font-weight: 600; color: #d8d8d8; }
.lgn-mnav a:hover, .lgn-mnav a.lgn-hot { background: rgba(192,32,47,.14); color: var(--lgn-red-soft); }
.lgn-ovl { position: fixed; inset: 0; background: rgba(0,0,0,.62); z-index: 70; opacity: 0; visibility: hidden; transition: opacity .28s; }
.lgn-ovl.lgn-show { opacity: 1; visibility: visible; }

/* ===== Hero ===== */
.lgn-hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(22,22,22,.55) 0%, rgba(22,22,22,.88) 70%, var(--lgn-bg) 100%),
        radial-gradient(1100px 540px at 70% 16%, rgba(192,32,47,.22), transparent 60%),
        var(--lgn-bg);
    overflow: hidden;
}
.lgn-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .5;
}
.lgn-hero-inner {
    position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
    padding: 86px 30px 78px; text-align: center;
}
.lgn-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(217,165,33,.14); border: 1px solid rgba(217,165,33,.5);
    color: var(--lgn-gold-soft); padding: 6px 15px; border-radius: 4px; font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px; margin-bottom: 20px;
}
.lgn-hero h1 {
    font-size: clamp(40px, 8vw, 74px); letter-spacing: 1px; margin-bottom: 6px; text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.lgn-hero h1 b { color: var(--lgn-red-soft); font-weight: 900; }
.lgn-hero-off { font-size: clamp(20px, 4vw, 30px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.lgn-hero-off b { color: var(--lgn-gold); }
.lgn-hero-sub { color: #d6d6d6; font-size: 16px; margin-bottom: 28px; }
.lgn-hero-cta { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lgn-hero-trust { margin-top: 22px; color: var(--lgn-mute); font-size: 13px; }
.lgn-hero-trust b { color: #fff; }

/* ===== Sectie-frame ===== */
.lgn-sec { max-width: 1180px; margin: 0 auto; padding: 56px 30px; }
.lgn-sec h2 { font-size: clamp(25px, 4vw, 33px); margin-bottom: 14px; }
.lgn-sec h3 { font-size: 20px; margin: 26px 0 9px; color: #fff; }
.lgn-sec p { margin-bottom: 14px; color: #d2d2d2; }
.lgn-sec a.lgn-link { color: var(--lgn-gold); font-weight: 600; }
.lgn-sec a.lgn-link:hover { text-decoration: underline; }
.lgn-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.lgn-head h2 { margin: 0; }

/* ===== Games-carousel ===== */
.lgn-games {    }
.lgn-games-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.lgn-arrows { display: flex; gap: 8px; }
.lgn-arrow { width: 42px; height: 42px; border-radius: 50%; background: var(--lgn-card); border: 1px solid var(--lgn-line); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--lgn-ease); }
.lgn-arrow:hover:not(:disabled) { background: var(--lgn-red); color: #fff; }
.lgn-arrow:disabled { opacity: .35; cursor: default; }
.lgn-arrow svg { width: 15px; height: 15px; fill: currentColor; }
.lgn-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.lgn-rail::-webkit-scrollbar { display: none; }
.lgn-card {
    flex: 0 0 200px; scroll-snap-align: start;
    background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius);
    overflow: hidden; transition: transform var(--lgn-ease), border-color var(--lgn-ease);
}
.lgn-card:hover { transform: translateY(-4px); border-color: rgba(192,32,47,.55); }
.lgn-card-img { position: relative; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--lgn-bg-2), var(--lgn-bar)); }
.lgn-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lgn-card-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--lgn-ease); }
.lgn-card:hover .lgn-card-play { opacity: 1; }
.lgn-card-play span { width: 48px; height: 48px; border-radius: 50%; background: rgba(192,32,47,.92); display: flex; align-items: center; justify-content: center; }
.lgn-card-play svg { width: 20px; height: 20px; fill: #fff; }
.lgn-card-meta { padding: 11px 13px; }
.lgn-card-meta strong { display: block; font-size: 14px; color: #fff; }
.lgn-card-meta small { color: var(--lgn-mute); font-size: 12px; }

/* ===== Review-layout ===== */
.lgn-grid { display: grid; grid-template-columns: 1fr 340px; gap: 34px; align-items: start; }
.lgn-prose p { margin-bottom: 14px; color: #d2d2d2; }
.lgn-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.lgn-stat { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius-s); padding: 14px; display: flex; flex-direction: column; gap: 3px; }
.lgn-stat .lgn-k { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--lgn-mute); font-weight: 700; }
.lgn-stat .lgn-v { font-size: 17px; font-weight: 800; color: var(--lgn-gold); }

/* zijbalk-kaart */
.lgn-aside { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius); padding: 20px; position: sticky; top: 84px; }
.lgn-aside-tag { display: inline-block; background: linear-gradient(135deg, var(--lgn-red), var(--lgn-red-soft)); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 5px 12px; border-radius: 4px; margin-bottom: 14px; }
.lgn-aside-name { font-size: 24px; font-weight: 900; text-transform: uppercase; }
.lgn-aside-name span { color: var(--lgn-red-soft); }
.lgn-aside-lic { color: var(--lgn-mute); font-size: 13px; margin-bottom: 14px; }
.lgn-score { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--lgn-line); border-bottom: 1px solid var(--lgn-line); margin-bottom: 14px; }
.lgn-score .lgn-num { font-size: 34px; font-weight: 900; color: var(--lgn-gold); }
.lgn-stars { color: var(--lgn-gold); letter-spacing: 2px; }
.lgn-score small { display: block; color: var(--lgn-mute); font-size: 11.5px; }
.lgn-facts { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.lgn-facts li { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px dashed var(--lgn-line); padding-bottom: 8px; }
.lgn-facts li span:first-child { color: var(--lgn-mute); }
.lgn-facts li span:last-child { color: #fff; font-weight: 700; }
.lgn-pros { margin-bottom: 16px; }
.lgn-pros .lgn-k { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--lgn-gold); margin-bottom: 8px; letter-spacing: .6px; }
.lgn-pros ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.lgn-pros li { font-size: 13.5px; padding-left: 22px; position: relative; color: #d2d2d2; }
.lgn-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--lgn-gold); font-weight: 800; }

/* ===== Bonusbanner ===== */
.lgn-bonus {    }
.lgn-bonus-box {
    max-width: 880px; margin: 0 auto; text-align: center;
    border: 2px solid var(--lgn-red); border-radius: var(--lgn-radius);
    padding: 34px 26px; position: relative; overflow: hidden;
    min-height: 340px;
    background:
        linear-gradient(to right, #161616 0%, #161616 35%, transparent 75%),
        url('../img/promo-hero.webp') right center/cover no-repeat,
        #161616;
}
.lgn-bonus-box::after { content: ""; position: absolute; inset: 0; box-shadow: 0 0 60px rgba(192,32,47,.28) inset; pointer-events: none; }
.lgn-bonus-box .lgn-pre { text-transform: uppercase; letter-spacing: 1px; color: var(--lgn-gold); font-weight: 800; font-size: 13px; }
.lgn-bonus-box .lgn-big { font-size: clamp(26px, 5vw, 40px); font-weight: 900; color: #fff; margin: 6px 0; }
.lgn-bonus-box .lgn-min { color: var(--lgn-mute); margin-bottom: 18px; }

/* ===== Mobiel/app-split ===== */
.lgn-app {  }
.lgn-app-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.lgn-app ul.lgn-feat { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 18px 0; }
.lgn-app ul.lgn-feat li { padding-left: 26px; position: relative; color: #d2d2d2; }
.lgn-app ul.lgn-feat li::before { content: "▸"; position: absolute; left: 4px; color: var(--lgn-red-soft); }
.lgn-os { display: flex; gap: 12px; flex-wrap: wrap; }
.lgn-phone img { max-width: 420px; margin: 0 auto; }

/* ===== Stappen ===== */
.lgn-steps { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 24px 0; }
.lgn-step { flex: 1 1 200px; max-width: 240px; background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius); padding: 20px; text-align: center; }
.lgn-step .lgn-n { width: 38px; height: 38px; border-radius: 50%; background: var(--lgn-red); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.lgn-step strong { display: block; color: #fff; margin-bottom: 4px; }
.lgn-step small { color: var(--lgn-mute); font-size: 12.5px; }

/* ===== Uitbetalingsbalken ===== */
.lgn-pay { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.lgn-pay-row { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius-s); padding: 14px 16px; }
.lgn-pay-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; }
.lgn-pay-top strong { color: #fff; }
.lgn-pill { font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 4px; }
.lgn-pill-fast { background: #27c24c; color: var(--lgn-gold-soft); }
.lgn-pill-mid { background: rgba(192,32,47,.18); color: var(--lgn-red-soft); }
.lgn-pill-slow { background: rgba(255,255,255,.08); color: var(--lgn-mute); }
.lgn-track { height: 8px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.lgn-track i { display: block; height: 100%; border-radius: 6px; }
.lgn-fill-fast { background: #27c24c; }
.lgn-fill-mid { background: var(--lgn-red); }
.lgn-fill-slow { background: #6e6e6e; }

/* ===== Vertrouwensgrid ===== */
.lgn-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin: 24px 0; }
.lgn-trust-c { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius); padding: 18px; text-align: center; }
.lgn-trust-c .lgn-ic { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--lgn-red-soft); }
.lgn-trust-c .lgn-ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.lgn-trust-c strong { display: block; color: #fff; margin-bottom: 5px; }
.lgn-trust-c small { color: var(--lgn-mute); font-size: 12.5px; }

/* ===== Reviews ===== */
.lgn-revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 22px; }
.lgn-rev { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius); padding: 18px; }
.lgn-rev-h { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.lgn-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--lgn-red), var(--lgn-gold)); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.lgn-rev-h .lgn-who { font-weight: 700; color: #fff; }
.lgn-rev-h .lgn-when { font-size: 12px; color: var(--lgn-mute); }
.lgn-rev .lgn-rs { color: var(--lgn-gold); letter-spacing: 2px; margin-bottom: 8px; }
.lgn-rev p { font-size: 13.5px; color: #d2d2d2; }

/* ===== FAQ ===== */
.lgn-faq { max-width:1180px; margin: 0 auto; padding: 56px 30px; }
.lgn-faq h2 { font-size: clamp(25px,4vw,33px); margin-bottom: 20px; text-align: center; }
.lgn-q { background: var(--lgn-card); border: 1px solid var(--lgn-line); border-radius: var(--lgn-radius-s); margin-bottom: 10px; overflow: hidden; }
.lgn-q summary { padding: 16px 18px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.lgn-q summary::-webkit-details-marker { display: none; }
.lgn-q summary::after { content: "+"; color: var(--lgn-red-soft); font-weight: 900; }
.lgn-q[open] summary::after { content: "–"; }
.lgn-q .lgn-a { padding: 0 18px 16px; color: #cfcfcf; font-size: 14px; }

/* ===== Footer ===== */
.lgn-foot { background: var(--lgn-bar); border-top: 1px solid var(--lgn-line); padding: 44px 30px 26px; }
.lgn-foot-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.lgn-foot-brand .lgn-logo { display: block; margin-bottom: 12px; }
.lgn-foot-brand .lgn-logo img { height: 56px; width: auto; display: block; }
.lgn-foot-brand p { color: var(--lgn-mute); font-size: 12.5px; line-height: 1.7; }
.lgn-foot-col span.lgn-ct { display: block; font-weight: 800; color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: .8px; margin-bottom: 12px; }
.lgn-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lgn-foot-col a { color: var(--lgn-mute); font-size: 13.5px; }
.lgn-foot-col a:hover { color: var(--lgn-red-soft); }
.lgn-pays { max-width: 1180px; margin: 26px auto 0; padding-top: 22px; border-top: 1px solid var(--lgn-line); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lgn-pays span { background: rgba(255,255,255,.06); border: 1px solid var(--lgn-line); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: #cfcfcf; }
.lgn-foot-bottom { max-width: 1180px; margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--lgn-line); text-align: center; }
.lgn-foot-bottom p { color: var(--lgn-mute); font-size: 12px; line-height: 1.7; margin-bottom: 10px; }
.lgn-foot-bottom .lgn-cr { color: #7d7d7d; }

/* ===== Cookiebanner ===== */
.lgn-cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    max-width: 560px; margin: 0 auto;
    background: var(--lgn-bg-2); border: 1px solid var(--lgn-red); border-radius: var(--lgn-radius);
    padding: 18px 20px; box-shadow: 0 16px 40px rgba(0,0,0,.55);
    transform: translateY(140%); transition: transform .35s ease;
}
.lgn-cookie.lgn-vis { transform: translateY(0); }
.lgn-cookie .lgn-ct { font-weight: 800; color: #fff; margin-bottom: 6px; }
.lgn-cookie .lgn-cx { font-size: 13px; color: #cfcfcf; margin-bottom: 14px; }
.lgn-cookie .lgn-cx a { color: var(--lgn-gold); }
.lgn-cookie-btns { display: flex; gap: 10px; }

/* ===== Juridisch / generieke pagina's ===== */
.lgn-legal { max-width: 820px; margin: 0 auto; padding: 50px 30px 60px; }
.lgn-legal h1 { font-size: 30px; margin-bottom: 8px; }
.lgn-legal .lgn-upd { color: var(--lgn-mute); font-size: 13px; margin-bottom: 26px; }
.lgn-legal h2 { font-size: 20px; margin: 26px 0 10px; color: var(--lgn-red-soft); }
.lgn-legal p, .lgn-legal li { color: #cfcfcf; margin-bottom: 12px; font-size: 14.5px; }
.lgn-legal ul { padding-left: 22px; margin-bottom: 12px; }
.lgn-bc { font-size: 13px; color: var(--lgn-mute); margin-bottom: 18px; }
.lgn-bc a { color: var(--lgn-gold); }

/* ===== 404 ===== */
.lgn-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.lgn-404 h1 { font-size: clamp(70px, 18vw, 140px); color: var(--lgn-red-soft); line-height: 1; }
.lgn-404 p { color: #cfcfcf; margin: 12px 0 24px; max-width: 460px; }

/* ===== Redirect-interstitial ===== */
.lgn-redir { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.lgn-redir-box { max-width: 420px; }
.lgn-spin { width: 54px; height: 54px; border: 5px solid rgba(192,32,47,.22); border-top-color: var(--lgn-red); border-radius: 50%; margin: 0 auto 22px; animation: lgn-rot 1s linear infinite; }
@keyframes lgn-rot { to { transform: rotate(360deg); } }
.lgn-redir h1 { font-size: 26px; margin-bottom: 8px; }
.lgn-redir p { color: var(--lgn-mute); }
.lgn-redir a { color: var(--lgn-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .lgn-grid { grid-template-columns: 1fr; }
    .lgn-aside { position: static; }
    .lgn-app-grid { grid-template-columns: 1fr; }
    .lgn-phone { order: -1; }
    .lgn-foot-top { grid-template-columns: 1fr 1fr; }
    .lgn-foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .lgn-top { display: none; }
    .lgn-mtop { display: flex; }
    .lgn-hero-img { content: url('../img/hero-bg-mobile.webp'); }
    /* dvh-fit hero: hele blok + knop in één scherm */
    .lgn-hero-inner {
        min-height: calc(100svh - 58px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 30px 20px;
    }
    .lgn-sec, .lgn-faq { padding: 40px 18px; }
    .lgn-stats { grid-template-columns: 1fr; }
    .lgn-foot-top { grid-template-columns: 1fr; gap: 22px; text-align: center; }
    .lgn-foot-col ul { align-items: center; }
}

@media (min-width: 761px) {
    .lgn-foot-top { text-align: center; }
    .lgn-foot-col ul { align-items: center; }
    .lgn-foot-brand { text-align: left; }
}

/*HEROFIX*/
@media (min-width:761px){ .lgn-hero{ min-height:940px; display:flex; align-items:center; } .lgn-hero-inner{ width:100%; } }

/*HEROLEFT*/
@media (min-width:761px){ .lgn-hero > div{ text-align:left; align-items:flex-start; } .lgn-hero > div h1, .lgn-hero > div p{ max-width:640px; } }

/*BONUSLEFT*/
@media (min-width:761px){ .lgn-bonus-box{ text-align:left; align-items:flex-start; justify-content:center; } .lgn-bonus-box > *{ max-width:62%; margin-left:0; margin-right:auto; } }

/*PAYBRAND*/
.lgn-pay span, .lgn-pays span{ border:none !important; color:#fff !important; font-weight:700 !important; }
.pay-visa{background:#1A1F71 !important}
.pay-mastercard{background:linear-gradient(90deg,#EB001B,#F79E1B) !important}
.pay-maestro{background:linear-gradient(90deg,#0099DF,#ED0006) !important}
.pay-skrill{background:#862165 !important}
.pay-neteller{background:#6FBF4F !important}
.pay-payz,.pay-ecopayz{background:#1F6FC4 !important}
.pay-usdt,.pay-tether{background:#26A17B !important}
.pay-bitcoin{background:#F7931A !important}
.pay-ethereum{background:#627EEA !important}
.pay-litecoin{background:#345D9D !important}
.pay-ideal{background:#C9216B !important}
.pay-bancontact{background:#005498 !important}
.pay-interac{background:#F6A01A !important;color:#1a1a1a !important}
.pay-upi{background:#0B6E4F !important}
.pay-paytm{background:#00BAF2 !important}
.pay-phonepe{background:#5F259F !important}
.pay-imps,.pay-netbanking,.pay-rupay{background:#1565C0 !important}
.pay-paysafecard,.pay-paysafe{background:#00A3E0 !important}
.pay-trustly{background:#14805E !important}
.pay-sofort{background:#EF809F !important}
.pay-applepay{background:#000 !important}
.pay-googlepay{background:#4285F4 !important}
.pay-mifinity{background:#0E2A57 !important}
.pay-jeton{background:#E2231A !important}

/*HEROLEFT2*/
@media (min-width:761px){ .lgn-hero > div{ text-align:left !important; align-items:flex-start !important; max-width:760px !important; margin-left:clamp(24px,6vw,150px) !important; margin-right:auto !important; } .lgn-hero > div > *{ margin-left:0 !important; } }

/*HEROFADE*/
@media (min-width:761px){ .lgn-hero{ -webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); } }

/*CARDCENTER*/
.lgn-aside-name,.lgn-aside-lic{ text-align:center; }
.lgn-aside-tag{ display:block; width:fit-content; margin-left:auto; margin-right:auto; }

/*HBAR*/
.lgn-sec h2{ border-left:4px solid #C0202F; padding-left:15px; }
.lgn-sec h3,.lgn-sec h4{ border-left:3px solid #C0202F; padding-left:12px; }

/*BONUSPULSE*/
.lgn-hero-off{ font-size:clamp(26px,4.6vw,42px) !important; line-height:1.1 !important; }
@keyframes lgnpulse{ 0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(192,32,47,.5);} 50%{ transform:scale(1.05); box-shadow:0 0 24px 5px rgba(192,32,47,.45);} }
.lgn-hero-cta a{ animation:lgnpulse 1.7s ease-in-out infinite; }
.lgn-hero-cta a:hover{ animation-play-state:paused; }

/*HEROTEXT*/
.lgn-hero h1{ line-height:1.08 !important; margin-bottom:12px !important; }
.lgn-hero-off{ line-height:1.12 !important; margin-bottom:10px !important; }
.lgn-hero-off2{ font-size:clamp(16px,2.3vw,21px); font-weight:700; line-height:1.5; color:#fff; opacity:.92; margin-bottom:26px; max-width:560px; }
@media (min-width:761px){ .lgn-hero > div h1, .lgn-hero > div p{ max-width:720px !important; } }

/*BONUSBIG*/
@media (min-width:761px){ .lgn-hero h1{ font-size:clamp(34px,5.2vw,50px) !important; } .lgn-hero-off{ font-size:clamp(40px,6.6vw,64px) !important; } }
@media (max-width:760px){ .lgn-hero h1{ font-size:42px !important; } .lgn-hero-off{ font-size:48px !important; } }

/*NAVFIX*/
.lgn-nav{ flex:1; justify-content:center; }
.lgn-logo{ flex-shrink:0; }
.lgn-top-cta{ flex-shrink:0; }

/*STATSFACTS*/
.lgn-stats{ grid-template-columns:repeat(4,1fr) !important; }
@media (max-width:760px){ .lgn-stats{ grid-template-columns:repeat(2,1fr) !important; } }
.lgn-stat{ text-align:center; align-items:center !important; gap:5px !important; padding:18px 12px !important; }
.lgn-stat .stat-ic{ width:26px; height:26px; color:#E0566A; margin-bottom:5px; }
.lgn-stat .lgn-k{ color:#E0566A !important; font-size:13px !important; }
.lgn-stat .lgn-v{ color:#e8eef7 !important; font-size:13.5px !important; font-weight:700 !important; }
.lgn-stat:first-child{ border-color:#E0566A !important; box-shadow:inset 0 0 0 1px #E0566A55; }

/*HEROPOLISH*/
@media (min-width:761px){ .lgn-hero-off{ white-space:nowrap; } }
.lgn-hero-cta a{ border-radius:999px !important; }
.lgn-hero h1, .lgn-hero-off{ -webkit-text-stroke:6px #000; paint-order:stroke fill; text-shadow:0 4px 16px rgba(0,0,0,.55); }
.lgn-hero-off2, .lgn-hero-badge{ -webkit-text-stroke:4px #000; paint-order:stroke fill; text-shadow:0 2px 9px rgba(0,0,0,.7); }

/*TOPGLOW*/
.lgn-nav a.lgn-on{ color:#E0566A !important; text-shadow:0 0 16px rgba(224,86,106,0.85), 0 0 6px rgba(224,86,106,0.6); }
.lgn-nav a:not([href*="#"]):not(.lgn-on){ color:#0a0a0a !important; background:#E0566A; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(224,86,106,0.7); }
.lgn-nav a:not([href*="#"]):not(.lgn-on):hover{ filter:brightness(1.08); background:#E0566A !important; }

/*HEROLLB*/
@media (min-width:761px){ .lgn-hero > div{ margin-left:clamp(16px,3vw,60px) !important; margin-top:11vh !important; } .lgn-hero h1, .lgn-hero-off, .lgn-hero-off2{ font-weight:900 !important; } }

/*PHONESAFE*/
.lgn-phone{ display:block; } .lgn-phone img{ display:block !important; max-width:420px; width:100%; height:auto; margin:0 auto; }

/*BONUSWIDE*/
.lgn-bonus .lgn-sec{ max-width:1120px !important; }

/*BOXWIDE*/
@media (min-width:761px){ .lgn-bonus-box{ max-width:1080px !important; } }

/*BONUSBB*/
.lgn-bonus-box{ transition:box-shadow .35s ease, border-color .35s ease; }
.lgn-bonus-box:hover{ box-shadow:0 0 50px rgba(224,86,106,0.5), inset 0 0 70px rgba(224,86,106,0.16); border-color:#E0566A !important; }
.lgn-bonus-box .lgn-big{ color:#E0566A !important; text-transform:uppercase; letter-spacing:.5px; }
.lgn-bonus-box a{ animation:lgnpulse 1.7s ease-in-out infinite; }
.lgn-bonus-box a:hover{ animation-play-state:paused; }

/*TIGHTEN*/
.lgn-sec, .lgn-faq{ padding-top:30px !important; padding-bottom:30px !important; }
.lgn-stats{ margin:16px 0 !important; }
.lgn-bonus, .lgn-games, .lgn-app{ padding-top:6px; padding-bottom:6px; }

/*RADVAR*/
.lgn-card, .lgn-tile, .lgn-tile-c, .lgn-stat, .lgn-aside, .lgn-rev, .lgn-card-img, .lgn-tile-img{ border-radius:4px !important; }

/*BTNPULSE*/
.lgn-bonus-box [class*="btn"]{ animation:lgnpulse 1.7s ease-in-out infinite; }
.lgn-bonus-box:hover [class*="btn"]{ animation-play-state:paused; }

/*PAYLOGO*/
span[class^="pay-"]{ background:#fff !important; padding:8px 12px !important; border-radius:7px !important; display:inline-flex !important; align-items:center; border:none !important; vertical-align:middle; box-shadow:0 1px 3px rgba(0,0,0,.25); }
span[class^="pay-"] svg{ height:20px; width:auto; display:block; }

/*MOBHERO*/
@media (max-width:760px){
  .lgn-hero-inner, .lgn-hero > div{ min-height:calc(75svh - 42px) !important; justify-content:flex-end !important; padding-bottom:40px !important; }
  .lgn-hero-img{ object-position:top center !important; }
}

/*MOBTEXT*/
@media (max-width:760px){
  .lgn-hero h1{ font-size:clamp(46px,14vw,56px) !important; }
  .lgn-hero-off{ font-size:clamp(48px,15vw,60px) !important; }
  .lgn-hero-off2{ font-size:19px !important; }
}

/*MOBREV*/
@media (max-width:760px){
  .lgn-grid{ display:flex !important; flex-direction:column !important; }
  .lgn-aside{ order:-1 !important; margin-bottom:8px; }
}

/*MOBFOOT*/
@media (max-width:760px){
  .lgn-foot-top{ grid-template-columns:repeat(3,1fr) !important; text-align:left !important; gap:22px 14px !important; }
  .lgn-foot-top > :first-child{ grid-column:1 / -1 !important; margin-bottom:4px; }
  .lgn-foot-top ul{ align-items:flex-start !important; }
  .lgn-foot-top h3, .lgn-foot-top h4, .lgn-foot-top li, .lgn-foot-top a, .lgn-foot-top p{ text-align:left !important; }
}

/*STEPSBB*/
.lgn-steps{ display:flex !important; flex-wrap:nowrap !important; justify-content:space-between !important; align-items:flex-start !important; gap:22px !important; }
.lgn-step{ flex:1 1 0 !important; max-width:200px !important; background:none !important; border:none !important; box-shadow:none !important; padding:10px 4px !important; position:relative !important; }
.lgn-step > :first-child{ width:64px !important; height:64px !important; min-width:64px !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:22px !important; font-weight:800 !important; color:#fff !important; background:linear-gradient(135deg, #E0566A, #8b3542) !important; box-shadow:0 8px 24px rgba(224,86,106,0.38) !important; margin:0 auto 14px !important; }
.lgn-step strong{ text-transform:uppercase !important; color:#E0566A !important; letter-spacing:1px !important; font-size:14px !important; }
.lgn-step:not(:last-child)::after{ content:''; position:absolute; top:32px; right:-16px; width:13px; height:13px; border-top:3px solid #E0566A; border-right:3px solid #E0566A; border-radius:2px; transform:rotate(45deg); }
@media (max-width:760px){
  .lgn-steps{ flex-direction:column !important; align-items:center !important; gap:22px !important; }
  .lgn-step{ max-width:320px !important; }
  .lgn-step:not(:last-child)::after{ top:auto !important; bottom:-16px !important; right:50% !important; transform:translateX(50%) rotate(135deg) !important; }
}

/*STEPICON*/
.lgn-step > :first-child svg{ width:30px !important; height:30px !important; stroke:#fff !important; fill:none !important; }

/*STEPNEUTRAL*/
.lgn-step > :first-child{ background:linear-gradient(150deg, #333c4f, #1e2431) !important; border:2px solid #E0566A !important; box-shadow:0 6px 18px rgba(0,0,0,.32), inset 0 0 14px rgba(224,86,106,0.12) !important; }
.lgn-step > :first-child svg{ stroke:#E0566A !important; }

/*MOBH2*/
@media (max-width:760px){
  section:has(> .lgn-grid){ display:flex !important; flex-direction:column !important; }
  .lgn-grid{ display:contents !important; }
  .lgn-aside{ order:1 !important; }
  section:has(> .lgn-grid) > h2{ order:2 !important; margin-top:14px !important; margin-bottom:10px !important; }
  .lgn-grid > :not(.lgn-aside){ order:3 !important; }
}

/*MOBCARD*/
@media (max-width:760px){
  .lgn-aside{ align-self:center !important; max-width:430px !important; width:100% !important; margin-left:auto !important; margin-right:auto !important; }
}

/*MOBH2FIX*/
@media (max-width:760px){
  section:has(> .lgn-grid) > :not(h2):not(.lgn-grid){ order:4 !important; }
}

/*CARDNAME*/
.lgn-aside-name{ font-size:33px !important; font-weight:900 !important; letter-spacing:.3px !important; line-height:1.08 !important; text-shadow:0 1px 2px rgba(0,0,0,.28); }

/*HOMEPILL*/
.lgn-nav a.lgn-on{ color:#0a0a0a !important; background:#E0566A; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(224,86,106,0.7); text-shadow:none !important; }
.lgn-nav a.lgn-on:hover{ filter:brightness(1.08); }

/*BONUSIMG*/
.lgn-bonus-box{ background:linear-gradient(180deg, rgba(8,12,20,.30), rgba(8,12,20,.50)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }

/*HOMECLR*/
.lgn-nav a.lgn-on{ background:#2F6FED !important; color:#fff !important; box-shadow:0 0 16px rgba(47,111,237,.55) !important; }
.lgn-nav a.lgn-on:hover{ filter:brightness(1.08); background:#2F6FED !important; }

/*BONUSIMG2*/
.lgn-bonus-box{ background:linear-gradient(180deg, rgba(8,12,20,.10), rgba(8,12,20,.24)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }
@media (max-width:760px){
  .lgn-bonus-box{ background:url('../img/promo-hero.webp') center center/cover no-repeat !important; }
  .lgn-bonus-box p{ text-shadow:0 2px 10px rgba(0,0,0,.95), 0 1px 4px rgba(0,0,0,.88) !important; }
}

/*MENUPRETTY*/
.lgn-mnav{ width:min(82vw,322px) !important; padding:20px 14px !important; gap:5px !important; border-right:none !important; box-shadow:10px 0 44px rgba(0,0,0,.55), inset 0 80px 80px -80px rgba(224,86,106,0.1) !important; transition:left .34s cubic-bezier(.4,0,.2,1) !important; }
.lgn-mnav a{ padding:14px 16px !important; border-radius:12px !important; font-weight:700 !important; position:relative !important; transition:background .2s ease, color .2s ease, padding-left .2s ease !important; }
.lgn-mnav a::before{ content:''; position:absolute; left:7px; top:50%; transform:translateY(-50%) scaleY(0); width:3px; height:56%; background:#E0566A; border-radius:3px; transition:transform .2s ease; }
.lgn-mnav a:hover{ background:rgba(224,86,106,0.16) !important; color:#fff !important; padding-left:23px !important; }
.lgn-mnav a:hover::before{ transform:translateY(-50%) scaleY(1); }
.lgn-mnav a.lgn-hot{ background:#E0566A !important; color:#0a0a0a !important; font-weight:800 !important; box-shadow:0 6px 18px rgba(224,86,106,0.5) !important; margin-top:8px; padding-left:16px !important; }
.lgn-mnav a.lgn-hot::before{ display:none; }
.lgn-mnav a.lgn-hot:hover{ filter:brightness(1.08); padding-left:16px !important; }
.lgn-ovl{ background:rgba(4,8,16,.5) !important; backdrop-filter:blur(4px) !important; -webkit-backdrop-filter:blur(4px) !important; transition:opacity .3s ease, visibility .3s ease !important; }

/*MENUHIDE*/
.lgn-mnav{ left:-360px; }
.lgn-mnav.lgn-open{ left:0; }

/*HEROBRIGHT*/
.lgn-hero-img{ opacity:.88 !important; }
.lgn-hero-bg{ opacity:1 !important; filter:none !important; }
.lgn-hero h1, .lgn-hero-off, .lgn-hero-off2{ text-shadow:0 2px 13px rgba(0,0,0,.7), 0 0 34px rgba(0,0,0,.45) !important; }

/*NAVCOLORS*/
.lgn-nav a:not([href*="#"]):not(.lgn-logo):nth-child(2){ background:#E0566A !important; color:#fff !important; box-shadow:0 0 14px rgba(224,86,106,0.5) !important; }
.lgn-nav a:not([href*="#"]):not(.lgn-logo):nth-child(3){ background:#2EBF7E !important; color:#06301f !important; box-shadow:0 0 14px rgba(46,191,126,0.5) !important; }
.lgn-nav a:not([href*="#"]):not(.lgn-logo):nth-child(4){ background:#F5A623 !important; color:#211500 !important; box-shadow:0 0 14px rgba(245,166,35,0.5) !important; }
.lgn-nav a:not([href*="#"]):not(.lgn-logo):nth-child(5){ background:#9B7BFF !important; color:#fff !important; box-shadow:0 0 14px rgba(155,123,255,0.5) !important; }
.lgn-nav a:not([href*="#"]):not(.lgn-logo):nth-child(6){ background:#17B6C9 !important; color:#04313a !important; box-shadow:0 0 14px rgba(23,182,201,0.5) !important; }

/*HEROBIG*/
.lgn-hero h1{ font-size:clamp(52px,7.6vw,88px) !important; line-height:1.04 !important; }
.lgn-hero-off{ font-size:clamp(42px,6vw,70px) !important; line-height:1.08 !important; }
@media (max-width:760px){ .lgn-hero h1{ font-size:clamp(46px,14vw,66px) !important; } .lgn-hero-off{ font-size:clamp(38px,12vw,58px) !important; } }

/*CARDCTR2*/
.lgn-aside-name{ justify-content:center !important; text-align:center !important; }
.lgn-aside-lic, .lgn-aside-sub{ text-align:center !important; justify-content:center !important; }

/*LGNBIG2*/
.lgn-logo img{ height:82px !important; }
@media (max-width:760px){ .lgn-logo img{ height:72px !important; } }
