:root {
    --bg: #070908;
    --bg-soft: #0b0f0d;
    --panel: rgba(13, 17, 15, .90);
    --panel-2: #111613;
    --panel-3: #151b17;
    --border: rgba(232, 201, 122, .14);
    --border-soft: rgba(255,255,255,.07);
    --text: #f8f4e8;
    --muted: #a19d91;
    --gold: #e8c97a;
    --gold-2: #f7e3a4;
    --green: #2ee58c;
    --red: #d94d56;
    --purple: #9b7cff;
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -20%, rgba(46, 229, 140, .08), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(232, 201, 122, .08), transparent 25%),
        linear-gradient(180deg, #080a09 0%, #070908 48%, #090c0a 100%);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .4;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; position: relative; z-index: 2; }
.narrow { width: min(900px, calc(100% - 36px)); }

.page-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    opacity: .018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(7,9,8,.80);
    border-bottom: 1px solid rgba(232,201,122,.09);
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,201,122,.28), transparent);
}
.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.045em;
    font-size: 16px;
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #171006;
    background: radial-gradient(circle at 35% 30%, #fff1b9, #e7be58 58%, #8a6424 100%);
    border: 2px solid #f4da8d;
    box-shadow: inset 0 0 0 3px rgba(54,35,9,.35), 0 8px 26px rgba(232,201,122,.16);
    text-shadow: 0 1px rgba(255,255,255,.35);
}
.nav-links { display: flex; gap: 32px; color: #bbb5a6; font-size: 13px; font-weight: 700; }
.nav-links a { position: relative; transition: .2s ease; }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--gold);
    transition: .2s ease;
}
.nav-links a:hover { color: #fff7df; }
.nav-links a:hover::after { right: 0; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: #f7e6b4;
    background: linear-gradient(180deg, rgba(232,201,122,.12), rgba(232,201,122,.055));
    border: 1px solid rgba(232,201,122,.28);
    font-size: 12px;
    font-weight: 800;
    box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.hero {
    position: relative;
    overflow: hidden;
}
.casino-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(232,201,122,.08);
}
.casino-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    background:
        radial-gradient(circle at 17% 84%, rgba(46,229,140,.12), transparent 25%),
        linear-gradient(110deg, rgba(255,255,255,.015), transparent 50%);
}
.hero-light { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.hero-light-one { width: 500px; height: 500px; right: 7%; top: 2%; background: rgba(232,201,122,.13); }
.hero-light-two { width: 380px; height: 380px; left: -120px; bottom: -160px; background: rgba(46,229,140,.10); }
.hero-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: center;
    padding: 92px 0 88px;
}
.hero-content { max-width: 700px; }
.hero-suits {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 17px;
    color: var(--gold);
}
.hero-suits span:nth-child(2), .hero-suits span:nth-child(3) { color: #dc5b63; }
.hero h1 {
    margin: 0;
    max-width: 800px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(48px, 6.2vw, 82px);
    line-height: .98;
    letter-spacing: -.065em;
    text-transform: uppercase;
}
.gold-text {
    background: linear-gradient(96deg, #fff2bd 0%, #dcb65a 42%, #f4e3a7 70%, #ba8d36 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 18px 60px rgba(232,201,122,.08);
}
.hero-copy {
    margin: 26px 0 0;
    max-width: 630px;
    color: #a8a397;
    font-size: 16px;
    line-height: 1.75;
}
.hero-actions { margin-top: 31px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    cursor: pointer;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
    transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}
.btn-primary {
    color: #181004;
    background: linear-gradient(135deg, #f4dfa0 0%, #d6aa49 55%, #f0d17b 100%);
    border: 1px solid #e9c96f;
    box-shadow: inset 0 1px rgba(255,255,255,.55), 0 13px 35px rgba(202,152,52,.16);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-ghost {
    color: #eee8da;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.10);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(232,201,122,.25); background: rgba(232,201,122,.06); }
.btn-large { min-height: 54px; padding: 0 23px; border-radius: 15px; font-size: 13px; }
.btn-sm { min-height: 40px; }
.btn-full { width: 100%; }

.trust-row {
    margin-top: 42px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.trust-row > div {
    min-width: 158px;
    padding: 14px 15px;
    border: 1px solid rgba(232,201,122,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
    border-radius: 14px;
}
.trust-row b { display: block; color: #f3d782; font-size: 15px; line-height: 1; }
.trust-row span { display: block; margin-top: 6px; color: #777b72; font-size: 9px; }

.casino-art {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
    perspective: 900px;
}
.art-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(224,180,77,.16);
    filter: blur(80px);
}
.roulette {
    position: relative;
    width: 330px;
    height: 330px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        conic-gradient(
            #171b18 0deg 22.5deg, #8f252d 22.5deg 45deg,
            #171b18 45deg 67.5deg, #8f252d 67.5deg 90deg,
            #171b18 90deg 112.5deg, #8f252d 112.5deg 135deg,
            #171b18 135deg 157.5deg, #8f252d 157.5deg 180deg,
            #171b18 180deg 202.5deg, #8f252d 202.5deg 225deg,
            #171b18 225deg 247.5deg, #8f252d 247.5deg 270deg,
            #171b18 270deg 292.5deg, #8f252d 292.5deg 315deg,
            #171b18 315deg 337.5deg, #8f252d 337.5deg 360deg
        );
    border: 12px solid #c49a43;
    box-shadow:
        inset 0 0 0 8px #4a3413,
        inset 0 0 0 14px #eccf79,
        0 36px 80px rgba(0,0,0,.48),
        0 0 80px rgba(232,201,122,.08);
    transform: rotate(-8deg) rotateX(8deg);
}
.roulette::after {
    content: "";
    position: absolute;
    width: 222px;
    height: 222px;
    border-radius: 50%;
    background: radial-gradient(circle, #0f2c1f 0%, #0b2519 60%, #06170f 100%);
    border: 9px solid #c89e49;
    box-shadow: inset 0 0 0 5px #5e431a, inset 0 0 40px rgba(0,0,0,.65);
}
.roulette-ring {
    position: absolute;
    inset: 0;
    z-index: 3;
    color: #f9e8bc;
    font-size: 11px;
    font-weight: 900;
}
.roulette-ring span { position: absolute; left: 50%; top: 50%; transform-origin: 0 0; }
.roulette-ring span:nth-child(1) { transform: rotate(0deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(2) { transform: rotate(45deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(3) { transform: rotate(90deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(4) { transform: rotate(135deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(5) { transform: rotate(180deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(6) { transform: rotate(225deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(7) { transform: rotate(270deg) translate(137px) rotate(90deg); }
.roulette-ring span:nth-child(8) { transform: rotate(315deg) translate(137px) rotate(90deg); }
.roulette-center {
    position: relative;
    z-index: 4;
    width: 98px;
    height: 98px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #e4c56d;
    font-size: 35px;
    background: radial-gradient(circle at 35% 28%, #3a432f, #0d1610 68%);
    border: 3px solid #d2ab51;
    box-shadow: 0 12px 28px rgba(0,0,0,.45), inset 0 0 0 5px #171c16;
}
.playing-card {
    position: absolute;
    z-index: 8;
    width: 100px;
    height: 142px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 13px;
    background: linear-gradient(145deg, #fffdf4, #ddd7c7);
    color: #171717;
    border: 1px solid #fff;
    box-shadow: 0 25px 45px rgba(0,0,0,.42);
}
.playing-card small { font-family: Georgia, serif; font-size: 22px; font-weight: 800; line-height: .8; }
.playing-card b { align-self: center; font-family: Georgia, serif; font-size: 44px; }
.playing-card small:last-child { align-self: end; transform: rotate(180deg); }
.card-a { left: 0; top: 74px; transform: rotate(-17deg) translateZ(28px); }
.card-k { right: 2px; bottom: 62px; color: #ac2731; transform: rotate(14deg) translateZ(35px); }
.poker-chip {
    position: absolute;
    z-index: 10;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: repeating-conic-gradient(#f5e2b0 0 8deg, transparent 8deg 20deg), #237c52;
    border: 7px solid #e4c36a;
    box-shadow: inset 0 0 0 6px #0d4229, 0 15px 30px rgba(0,0,0,.4);
}
.poker-chip::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background: #113923;
    border: 1px dashed #e7c970;
}
.poker-chip span { position: relative; z-index: 2; color: #f3d884; font-size: 10px; font-weight: 900; }
.chip-one { left: 38px; bottom: 42px; transform: rotate(-16deg); }
.chip-two { right: 54px; top: 20px; transform: scale(.84) rotate(20deg); background: repeating-conic-gradient(#eee4ff 0 8deg, transparent 8deg 20deg), #684acb; }
.chip-two::before { background: #27185d; }
.jackpot-pill {
    position: absolute;
    z-index: 11;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    padding: 10px 20px;
    border-radius: 999px;
    text-align: center;
    color: #2a1c05;
    font-family: "Unbounded", sans-serif;
    font-size: 10px;
    font-weight: 800;
    background: linear-gradient(180deg, #f7e6ab, #c99737);
    border: 2px solid #f4dc8c;
    box-shadow: 0 12px 35px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.7);
}

.podium-section, .ranking-section, .method-section, .faq-section, .detail-content, .terms-section { padding: 92px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.section-heading.compact { align-items: center; }
.section-kicker {
    color: #d9bb6b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.section-heading h2 {
    margin: 8px 0 0;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -.05em;
}
.section-heading > p { max-width: 460px; margin: 0; color: #8f8d85; line-height: 1.65; font-size: 13px; }

.podium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: stretch; }
.podium-card {
    position: relative;
    min-width: 0;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 7%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
        #0d120f;
    border: 1px solid rgba(232,201,122,.13);
    box-shadow: inset 0 1px rgba(255,255,255,.035);
    overflow: hidden;
    transition: .25s ease;
}
.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(232,201,122,.045), transparent 34%);
}
.podium-card:hover { transform: translateY(-5px); border-color: rgba(232,201,122,.28); box-shadow: 0 26px 60px rgba(0,0,0,.28); }
.podium-1 { border-color: rgba(232,201,122,.36); box-shadow: 0 30px 70px rgba(0,0,0,.24), inset 0 0 40px rgba(232,201,122,.025); }
.podium-1::before {
    content: "TOP 1";
    position: absolute;
    top: 15px;
    left: -34px;
    width: 118px;
    padding: 5px 0;
    transform: rotate(-42deg);
    text-align: center;
    color: #251805;
    background: linear-gradient(90deg, #bf9134, #f3d77f, #bd8b2f);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
}
.rank-crown {
    position: absolute;
    right: 18px;
    top: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #e4c56c;
    font-size: 12px;
    font-weight: 900;
}
.crown-symbol { font-size: 17px; }
.casino-head { display: flex; gap: 14px; align-items: center; padding-right: 56px; }
.logo-orb {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: #0a0b0a;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: 2px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px rgba(255,255,255,.40), 0 14px 34px color-mix(in srgb, var(--accent) 16%, transparent);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.05em;
}
.logo-small { width: 48px; height: 48px; border-radius: 14px; font-size: 13px; }
.casino-head h3, .rank-main h3 { margin: 7px 0 2px; font-size: 19px; letter-spacing: -.04em; }
.muted { color: #878b83; font-size: 11px; }
.badges { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.badge, .rank-badge, .exclusive-pill {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    color: #c6c2b7;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.065);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.rank-badge { color: #e6ca79; border-color: rgba(232,201,122,.20); background: rgba(232,201,122,.055); }
.rating-row { display: flex; gap: 12px; align-items: center; margin-top: 23px; }
.rating-number { color: #f0d27d; font-size: 36px; font-weight: 800; letter-spacing: -.07em; }
.stars { color: #e8c35f; font-size: 11px; letter-spacing: 1px; text-shadow: 0 0 14px rgba(232,195,95,.18); }
.rating-row span, .rank-rating small { display: block; color: #777c73; font-size: 9px; margin-top: 3px; }

.bonus-box {
    margin-top: 19px;
    padding: 17px;
    border: 1px solid rgba(232,201,122,.14);
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(232,201,122,.06), rgba(255,255,255,.018));
}
.bonus-label { display: block; color: #c9aa58; font-size: 9px; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.bonus-box strong { display: block; margin-top: 6px; color: #fff4d7; font-size: 16px; letter-spacing: -.02em; }
.bonus-box small, .rank-bonus small { display: block; margin-top: 5px; color: #777d74; font-size: 9px; line-height: 1.5; }

.promo-box {
    margin-top: 10px;
    min-height: 62px;
    padding: 9px 9px 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 16px;
    border: 1px dashed rgba(232,201,122,.34);
    background: rgba(232,201,122,.035);
}
.promo-box > div > span, .rank-promo > span { display: block; color: #85887f; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.promo-box strong { display: block; margin-top: 2px; color: #f3d47c; font-size: 16px; letter-spacing: .07em; }
.copy-btn {
    min-width: 104px;
    height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;
    color: #eee9dc;
    background: rgba(255,255,255,.045);
    font-size: 10px;
    font-weight: 800;
    transition: .2s ease;
}
.copy-btn:hover { background: rgba(232,201,122,.08); border-color: rgba(232,201,122,.19); transform: translateY(-1px); }
.copy-btn.copied { color: #7cf0ac; border-color: rgba(124,240,172,.25); background: rgba(124,240,172,.06); }
.mini-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 14px 0; }
.mini-specs span {
    min-width: 0;
    padding: 10px 7px;
    border-radius: 11px;
    text-align: center;
    color: #777d74;
    background: rgba(255,255,255,.022);
    border: 1px solid rgba(255,255,255,.035);
    font-size: 8px;
}
.mini-specs b { display: block; color: #e9e4d7; font-size: 10px; margin-bottom: 3px; }
.card-actions { margin-top: 18px; display: flex; align-items: center; gap: 13px; }
.card-actions .btn { flex: 1; }
.text-link { color: #aaa79f; font-size: 10px; font-weight: 800; white-space: nowrap; }
.text-link:hover { color: #f2d682; }
.terms { display: block; margin-top: 11px; color: #575d56; font-size: 8px; line-height: 1.5; }

.ranking-section {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.008), rgba(232,201,122,.012), rgba(255,255,255,.005));
    border-top: 1px solid rgba(232,201,122,.05);
    border-bottom: 1px solid rgba(232,201,122,.05);
}
.filter-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.filter {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    cursor: pointer;
    color: #858980;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    font-size: 9px;
    font-weight: 800;
}
.filter.active, .filter:hover { color: #2b1e08; background: linear-gradient(180deg, #f0d586, #c79b42); border-color: #e5c36b; }
.ranking-list { display: grid; gap: 9px; }
.rank-card {
    display: grid;
    grid-template-columns: 62px 1.2fr .55fr 1.2fr .8fr .75fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(232,201,122,.10);
    border-radius: 18px;
    background: rgba(12,16,14,.82);
    box-shadow: inset 0 1px rgba(255,255,255,.025);
    transition: .2s ease;
}
.rank-card:hover { border-color: rgba(232,201,122,.24); background: rgba(16,21,18,.94); transform: translateX(3px); }
.rank-card.is-hidden { display: none; }
.rank-index { color: #c6a751; font-size: 13px; font-weight: 900; }
.rank-main { display: flex; align-items: center; gap: 12px; }
.rank-main h3 { font-size: 15px; margin: 0 0 5px; }
.rank-rating { display: flex; align-items: center; gap: 8px; }
.rank-rating > strong { color: #ead07e; font-size: 22px; letter-spacing: -.05em; }
.rank-bonus > span, .rank-promo > span { color: #777d74; font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.rank-bonus > strong { display: block; margin-top: 3px; font-size: 11px; line-height: 1.4; }
.promo-inline { display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }
.promo-inline code { min-width: 88px; padding: 8px 9px; border-radius: 9px; background: rgba(232,201,122,.055); color: #e8cc7b; border: 1px solid rgba(232,201,122,.09); font-size: 10px; letter-spacing: .06em; }
.icon-copy { min-width: 32px; width: 32px; height: 32px; border-radius: 9px; padding: 0; }
.rank-actions { display: flex; align-items: center; gap: 11px; }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.method-card, .content-card {
    border: 1px solid rgba(232,201,122,.10);
    background: linear-gradient(180deg, rgba(17,22,19,.88), rgba(11,15,13,.88));
    border-radius: 20px;
    box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.method-card { position: relative; padding: 22px; overflow: hidden; }
.method-card::after { content: "♦"; position: absolute; right: 12px; bottom: -20px; color: rgba(232,201,122,.025); font-size: 88px; }
.method-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #efd683; background: rgba(232,201,122,.055); border: 1px solid rgba(232,201,122,.15); }
.method-card h3 { margin: 17px 0 7px; font-size: 14px; }
.method-card p { position: relative; z-index: 2; margin: 0; color: #858980; font-size: 11px; line-height: 1.68; }

.faq-list { display: grid; gap: 8px; }
.faq-list details { border: 1px solid rgba(232,201,122,.10); border-radius: 16px; background: rgba(13,17,15,.75); padding: 0 18px; }
.faq-list summary { min-height: 62px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; font-size: 12px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary span { color: #c7a94f; font-size: 18px; transition: .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: 0; padding: 0 0 18px; color: #858980; font-size: 11px; line-height: 1.7; }

.footer {
    position: relative;
    padding: 46px 0 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(232,201,122,.10);
    background: #070908;
}
.footer::before { content: ""; position: absolute; top: -1px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, rgba(232,201,122,.42), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 45px; }
.footer p { color: #757a72; font-size: 9px; line-height: 1.7; margin: 10px 0 0; }
.footer-note strong { color: #d8bd70; font-size: 10px; }
.footer-bottom { color: #4e554e; font-size: 8px; padding-top: 28px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.04); }

.toast {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    padding: 13px 15px;
    border: 1px solid rgba(232,201,122,.20);
    border-radius: 14px;
    background: rgba(14,18,16,.96);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: .25s ease;
    font-size: 10px;
    font-weight: 800;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-icon { width: 25px; height: 25px; display: grid; place-items: center; background: rgba(232,201,122,.10); color: #eace7b; border-radius: 50%; }

/* Detail page */
.detail-hero {
    position: relative;
    padding: 82px 0 58px;
    border-bottom: 1px solid rgba(232,201,122,.08);
    overflow: hidden;
    background: radial-gradient(circle at 75% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%);
}
.detail-hero::after { content: "♠  ♥  ♦  ♣"; position: absolute; right: 4%; bottom: -20px; color: rgba(232,201,122,.035); font-family: Georgia, serif; font-size: 120px; letter-spacing: 15px; white-space: nowrap; }
.detail-glow { position: absolute; width: 620px; height: 320px; top: -210px; left: 25%; background: var(--accent); filter: blur(125px); opacity: .10; }
.back-link { color: #8c9188; font-size: 10px; font-weight: 700; }
.back-link:hover { color: #f0d47f; }
.detail-grid { position: relative; z-index: 2; margin-top: 42px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.detail-title { display: flex; align-items: center; gap: 18px; }
.detail-logo { width: 82px; height: 82px; border-radius: 22px; font-size: 20px; }
.detail-title h1 { margin: 10px 0 7px; font-family: "Unbounded", sans-serif; font-size: clamp(36px, 6vw, 62px); letter-spacing: -.065em; line-height: .95; }
.detail-title p { margin: 0; color: #8b9087; font-size: 12px; }
.detail-score { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border: 1px solid rgba(232,201,122,.14); border-radius: 16px; background: rgba(232,201,122,.035); }
.detail-score > strong { color: #efd57f; font-size: 45px; letter-spacing: -.07em; }
.detail-score span { color: #7d8279; font-size: 9px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; align-items: start; }
.detail-main { display: grid; gap: 16px; }
.content-card { padding: 26px; }
.content-card h2 { margin: 8px 0 14px; font-family: "Unbounded", sans-serif; font-size: 23px; letter-spacing: -.045em; }
.content-card > p:not(.lead):not(.responsible-inline) { color: #8a8f86; font-size: 11px; line-height: 1.8; }
.lead { color: #aaa79f; font-size: 13px; line-height: 1.8; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.pros-cons > div { padding: 16px; border-radius: 15px; background: rgba(255,255,255,.018); border: 1px solid rgba(255,255,255,.045); }
.pros-cons h3 { margin: 0 0 12px; font-size: 11px; }
.positive { color: #6de5a0; }
.negative { color: #e8878e; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; color: #93988f; font-size: 10px; line-height: 1.5; }
.score-list { display: grid; gap: 16px; margin-top: 20px; }
.score-label { display: flex; justify-content: space-between; font-size: 10px; margin-bottom: 7px; }
.score-label span { color: #a7a49b; }
.score-label b { color: #e9cd77; font-size: 9px; }
.score-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.05); overflow: hidden; }
.score-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #b28736, #f2da8d); box-shadow: 0 0 20px rgba(232,201,122,.16); }
.info-table { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(232,201,122,.09); border-radius: 15px; overflow: hidden; }
.info-table div { padding: 14px; border-bottom: 1px solid rgba(232,201,122,.07); }
.info-table div:nth-child(odd) { border-right: 1px solid rgba(232,201,122,.07); }
.info-table div:nth-last-child(-n+2) { border-bottom: 0; }
.info-table span { display: block; color: #777d74; font-size: 8px; margin-bottom: 4px; }
.info-table b { font-size: 10px; }
.steps { display: grid; gap: 10px; margin-top: 18px; }
.step { display: flex; gap: 12px; align-items: center; padding: 13px; border: 1px solid rgba(232,201,122,.08); border-radius: 13px; background: rgba(255,255,255,.015); }
.step > span { flex: 0 0 auto; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(232,201,122,.08); color: #e4c46a; border: 1px solid rgba(232,201,122,.15); font-size: 9px; font-weight: 900; }
.step p { margin: 0; color: #969b92; font-size: 10px; line-height: 1.6; }
.offer-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(232,201,122,.26);
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 35%),
        linear-gradient(180deg, rgba(232,201,122,.045), rgba(255,255,255,.012)),
        #0d120f;
    box-shadow: 0 24px 55px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.03);
}
.sticky { position: sticky; top: 96px; }
.exclusive-pill { width: fit-content; color: #e8cd78; background: rgba(232,201,122,.055); border-color: rgba(232,201,122,.16); }
.offer-card h2 { margin: 15px 0 5px; font-family: "Unbounded", sans-serif; color: #fff1c8; font-size: 22px; letter-spacing: -.045em; }
.offer-card > p { margin: 0 0 16px; color: #7f847b; font-size: 10px; line-height: 1.6; }
.promo-large { margin: 0 0 14px; }
.offer-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.offer-stats div { padding: 10px 7px; border-radius: 11px; text-align: center; background: rgba(255,255,255,.018); border: 1px solid rgba(232,201,122,.07); }
.offer-stats span { display: block; color: #72786f; font-size: 7px; }
.offer-stats b { display: block; margin-top: 4px; font-size: 9px; }
.terms-link { display: block; margin-top: 10px; text-align: center; color: #8e928a; font-size: 8px; text-decoration: underline; }
.responsible-inline { margin-top: 18px !important; padding-top: 18px; border-top: 1px solid rgba(232,201,122,.08); color: #70766d !important; font-size: 9px !important; }
.not-found { padding: 130px 0; }
.center { text-align: center; }
.center p { color: #858980; }

@media (max-width: 1060px) {
    .hero-layout { grid-template-columns: 1fr .78fr; gap: 24px; }
    .casino-art { transform: scale(.88); transform-origin: center right; }
    .podium-grid { grid-template-columns: 1fr; }
    .podium-1 { order: -1; }
    .rank-card { grid-template-columns: 50px 1.3fr .6fr 1fr; }
    .rank-bonus { display: none; }
    .detail-layout { grid-template-columns: 1fr; }
    .sticky { position: static; }
}
@media (max-width: 820px) {
    .nav-links { display: none; }
    .casino-hero { min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; padding: 72px 0 64px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-suits, .hero-actions, .trust-row { justify-content: center; }
    .casino-art { min-height: 410px; transform: scale(.84); transform-origin: center center; margin: -20px auto -45px; width: min(100%, 440px); }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 12px; }
    .filter-wrap { margin-top: 18px; }
    .rank-card { grid-template-columns: 40px 1fr auto; gap: 10px; }
    .rank-rating { justify-content: end; }
    .rank-promo { grid-column: 2 / 3; }
    .rank-actions { grid-column: 3 / 4; }
    .rank-actions .text-link { display: none; }
    .method-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .detail-grid { display: block; }
    .detail-score { width: fit-content; margin-top: 24px; }
    .pros-cons, .info-table { grid-template-columns: 1fr; }
    .info-table div:nth-child(odd) { border-right: 0; }
    .info-table div:nth-last-child(2) { border-bottom: 1px solid rgba(232,201,122,.07); }
}
@media (max-width: 560px) {
    .container, .narrow { width: min(100% - 22px, 1180px); }
    .nav { height: 68px; }
    .nav-cta { display: none; }
    .brand { font-size: 14px; }
    .brand-mark { width: 34px; height: 34px; }
    .hero-layout { padding-top: 58px; }
    .hero h1 { font-size: clamp(39px, 12vw, 58px); }
    .hero-copy { font-size: 13px; }
    .hero-actions .btn { width: 100%; }
    .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .trust-row > div { min-width: 0; padding: 11px 6px; }
    .trust-row span { font-size: 7px; }
    .casino-art { transform: scale(.68); min-height: 350px; margin: -45px auto -70px; }
    .podium-section, .ranking-section, .method-section, .faq-section, .detail-content, .terms-section { padding: 62px 0; }
    .method-grid { grid-template-columns: 1fr; }
    .rank-card { grid-template-columns: 34px 1fr; }
    .rank-rating { grid-column: 2; justify-content: start; }
    .rank-promo { grid-column: 2; }
    .rank-actions { grid-column: 2; }
    .podium-card { padding: 18px; }
    .mini-specs { grid-template-columns: 1fr; }
    .detail-title { align-items: flex-start; }
    .detail-logo { width: 66px; height: 66px; }
}
