/* ============================================================
   FEATURED SECTION
   ============================================================ */
.featured-section { background: var(--bg-body); padding: 40px 0 48px; }
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }

/* ============================================================
   PREMIUM CASINO CARDS — Neon Magazine
   ============================================================ */
.casino-premium-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.casino-premium {
    border-radius: 16px; overflow: hidden; position: relative;
    background: var(--bg-surface); border: 1px solid var(--border);
    box-shadow: var(--shadow-card); transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.casino-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-border);
}
.casino-premium__image {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 50%, #1E2848 100%);
}
.casino-premium__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.casino-premium:hover .casino-premium__image img { transform: scale(1.05); }
.casino-premium__image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,6,14,0.5) 100%);
}
.casino-premium__rank {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1a1a00;
    font-size: 0.67rem; font-weight: 700; padding: 5px 12px;
    border-radius: var(--radius-xs);
    box-shadow: 0 4px 12px rgba(251,191,36,0.3);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.casino-premium__rating-pill {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    background: rgba(14,14,28,0.7); backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: #fff; font-size: 0.88rem; font-weight: 700;
    padding: 5px 12px; border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 4px;
}
.casino-premium__rating-pill .star { color: var(--accent); font-size: 0.88rem; }
.casino-premium__bonus-strip {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(6,6,14,0.9));
    padding: 20px 20px 16px; color: #fff;
}
.casino-premium__bonus-value { font-size: 1.25rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.casino-premium__body { padding: 20px; }
.casino-premium__name { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: -0.01em; }
.casino-premium__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; font-weight: 400; }
.casino-premium__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.casino-premium__tag {
    font-size: 0.67rem; font-weight: 500; padding: 3px 10px;
    border-radius: var(--radius-full); background: var(--bg-elevated);
    border: 1px solid var(--border); color: var(--text-secondary); letter-spacing: 0.02em;
}
.casino-premium__tag--green { background: var(--primary-light); border-color: var(--primary-border); color: var(--primary); }
.casino-premium__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.casino-premium__license { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; font-weight: 400; letter-spacing: 0.01em; }

/* ============================================================
   GAME CARDS — Neon Magazine with card-tilt + neon-border
   ============================================================ */
.featured-row, .game-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.game-card {
    background: var(--bg-surface); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    position: relative;
}
/* Neon border on hover */
.game-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none; z-index: 2;
}
.game-card:hover::before { opacity: 1; }
.game-card:hover {
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5), -2px -2px 10px rgba(139,92,246,0.08);
}
.game-card__thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-elevated); }
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.game-card:hover .game-card__thumb img { transform: scale(1.08); }
.game-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,6,14,0.05) 0%, rgba(6,6,14,0.7) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play-btn {
    padding: 10px 24px; border-radius: var(--radius-full);
    background: var(--primary); color: #fff; font-size: 0.88rem;
    font-weight: 700; border: none; cursor: pointer; letter-spacing: 0.01em;
    transform: translateY(12px); opacity: 0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) 0.05s;
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.game-card:hover .game-card__play-btn { transform: translateY(0); opacity: 1; }
.game-card__body { padding: 10px 12px; }
.game-card__title { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__provider { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 6px; font-weight: 400; letter-spacing: 0.01em; }
.game-card__meta { display: flex; align-items: center; gap: 6px; }
.game-card__rtp {
    font-size: 0.72rem; font-weight: 700; color: var(--neon-green);
    background: rgba(52,211,153,0.1); padding: 2px 8px; border-radius: var(--radius-xs);
}
.volatility-badge {
    font-size: 0.62rem; font-weight: 700; padding: 2px 8px;
    border-radius: var(--radius-xs); text-transform: uppercase; letter-spacing: 0.04em;
}
.volatility-badge--high { background: rgba(248,113,113,0.15); color: #F87171; }
.volatility-badge--very-high { background: rgba(248,113,113,0.2); color: #FCA5A5; }
.volatility-badge--medium { background: rgba(251,191,36,0.15); color: #FBBF24; }
.volatility-badge--medium-high { background: rgba(251,146,60,0.15); color: #FB923C; }
.volatility-badge--low { background: rgba(52,211,153,0.15); color: #34D399; }

/* ============================================================
   CTA BUTTONS — Neon
   ============================================================ */
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm);
    background: var(--primary); color: #fff; font-size: 0.88rem;
    font-weight: 700; border: none; cursor: pointer; letter-spacing: 0.01em;
    transition: all var(--transition); box-shadow: 0 2px 12px rgba(139,92,246,0.25);
    text-decoration: none;
}
.btn-cta:hover {
    background: var(--primary-hover); transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139,92,246,0.4); color: #fff;
}
.btn-cta--full { width: 100%; }
.btn-cta--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
.btn-cta--outline:hover { background: var(--primary); color: #fff; }
.btn-cta--ghost {
    background: transparent; color: var(--text-secondary);
    border: 1.5px solid var(--border); box-shadow: none;
}
.btn-cta--ghost:hover {
    border-color: var(--primary-border); color: var(--text-primary);
    background: var(--primary-light); transform: translateY(-1px);
}

/* ============================================================
   SEO CONTENT — Neon Magazine Editorial
   ============================================================ */
.seo-content {
    background: var(--bg-surface); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 36px 48px 40px;
    line-height: 1.75; font-size: 0.88rem; color: var(--text-secondary);
}
.seo-content h2 {
    font-size: 1.75rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em;
    margin: 0 0 8px; padding: 0; border-bottom: none; display: block; line-height: 1.25;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content__kicker {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary);
    margin-bottom: 10px;
    padding: 4px 12px; background: var(--primary-light); border-radius: var(--radius-full);
}
.seo-content__lead {
    font-size: 1rem; line-height: 1.75; color: var(--text-primary); font-weight: 400;
    margin-bottom: 0; margin-top: 16px;
}
.seo-content__lead::first-letter {
    float: left; font-size: 3rem; font-weight: 800; line-height: 0.8;
    margin: 4px 10px 0 -2px; color: var(--primary);
}
.seo-content__divider { display: none; }
.seo-content h3 {
    font-size: 0.75rem; font-weight: 700; margin: 24px 0 10px;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary);
    padding-bottom: 0; border-bottom: none;
    display: inline-block;
}
.seo-content p { margin-bottom: 12px; }
.seo-content p:last-child { margin-bottom: 0; }
.seo-content a {
    color: var(--primary); font-weight: 600; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-color: rgba(139,92,246,0.35);
}
.seo-content a:hover { text-decoration-color: var(--primary); color: var(--primary-hover); }
.seo-content strong { color: var(--text-primary); font-weight: 600; }
.seo-content ul { list-style: none; padding: 12px 0 12px 4px; margin: 4px 0; border-top: none; border-bottom: none; }
.seo-content li { margin-bottom: 8px; padding-left: 24px; position: relative; line-height: 1.75; }
.seo-content li:last-child { margin-bottom: 0; }
.seo-content li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.seo-content__highlight {
    margin: 16px 0; padding: 20px 28px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(139,92,246,0.02) 100%);
    border-radius: 12px; border-left: 4px solid var(--primary);
    font-size: 0.92rem; font-style: italic; color: var(--text-primary);
    line-height: 1.7; font-weight: 500; position: relative;
}
.seo-content__highlight::before {
    content: '\201E'; position: absolute; top: 8px; left: 12px;
    font-size: 2.5rem; color: var(--primary); opacity: 0.3; font-style: normal; line-height: 1;
}

/* Read More / Progressive Reveal */
.seo-content--collapsed { max-height: 380px; overflow: hidden; position: relative; }
.seo-content--collapsed::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, rgba(14,14,28,0), var(--bg-surface));
    pointer-events: none; border-radius: 0 0 20px 20px;
}
.seo-readmore {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
    font-size: 0.9rem; font-weight: 700; color: var(--primary); cursor: pointer;
    background: var(--primary-light); border: none; padding: 10px 20px;
    border-radius: var(--radius-full); transition: all 0.2s;
}
.seo-readmore:hover { background: var(--primary); color: #fff; gap: 12px; }
.seo-readmore svg { transition: transform 0.2s; }
.seo-readmore--open svg { transform: rotate(180deg); }

/* Internal Links — Editorial Index */
.internal-links {
    margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-top: 1px solid var(--border);
}
.internal-link-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
    font-size: 0.85rem; color: var(--text-primary); text-decoration: none;
    transition: color 0.15s;
}
.internal-link-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--border); }
.internal-link-item:nth-child(even) { padding-left: 24px; }
.internal-link-item__nr { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); min-width: 20px; font-variant-numeric: tabular-nums; }
.internal-link-item__text { font-weight: 500; }
.internal-link-item__arrow { margin-left: auto; color: var(--text-muted); font-size: 0.8rem; transition: all 0.15s; }
.internal-link-item:hover { color: var(--primary); }
.internal-link-item:hover .internal-link-item__arrow { color: var(--primary); transform: translateX(3px); }
.internal-link-item:hover .internal-link-item__nr { color: var(--primary); }

/* ============================================================
   FAQ ACCORDION — Neon
   ============================================================ */
.faq-list {
    margin-top: 20px; background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 40px; box-shadow: var(--shadow-card);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--text-primary);
    cursor: pointer; background: transparent; width: 100%; text-align: left;
    transition: color var(--transition);
}
.faq-item__q:hover { color: var(--primary); }
.faq-item__q::after {
    content: ''; width: 12px; height: 12px; flex-shrink: 0;
    border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
    transform: rotate(45deg); transition: transform 0.25s ease; margin-bottom: 4px;
}
.faq-item.open .faq-item__q::after { transform: rotate(-135deg); margin-bottom: 0; margin-top: 4px; }
.faq-item__a {
    overflow: hidden; transition: height 0.25s ease-out;
    font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
}
.faq-item__a-inner { padding: 0 0 24px 0; }


/* ============================================================
   CASINO CARDS (Provider/Casino Archive) — Neon
   ============================================================ */
.casino-cards-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gap); }
.casino-card {
    background: var(--bg-surface); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 28px 24px;
    text-align: center; box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.casino-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-hover);
    border-color: var(--primary-border);
}
/* Neon top line */
.casino-card::after {
    content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.casino-card:hover::after { opacity: 1; }

.casino-card__rank {
    position: absolute; top: -10px; left: 20px;
    font-size: 0.67rem; font-weight: 700; padding: 4px 10px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.04em; text-transform: uppercase;
}
/* Rank color variants */
.casino-card:first-child .casino-card__rank {
    background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1a1a00;
    box-shadow: 0 2px 12px rgba(251,191,36,0.4);
}
.casino-card:nth-child(2) .casino-card__rank {
    background: linear-gradient(135deg, #CBD5E1, #94A3B8); color: #0f172a;
    box-shadow: 0 2px 8px rgba(148,163,184,0.3);
}
.casino-card:nth-child(3) .casino-card__rank {
    background: linear-gradient(135deg, #D97706, #B45309); color: #fff;
    box-shadow: 0 2px 8px rgba(217,119,6,0.3);
}
.casino-card:nth-child(n+4) .casino-card__rank {
    background: var(--bg-elevated); color: var(--text-secondary);
    border: 1px solid var(--border);
}

.casino-card__logo {
    width: 96px; height: 96px; border-radius: var(--radius);
    background: var(--bg-elevated); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; overflow: hidden;
}
.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.casino-card__name { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: -0.01em; }
.star-rating { display: flex; gap: 2px; justify-content: center; margin-bottom: 12px; }
.star-rating__star { color: var(--accent); font-size: 1.0rem; }
.star-rating__star--empty { color: var(--text-muted); font-size: 1.0rem; }
/* PHP gamesto_stars() generated classes */
.star-rating .star { font-size: 1.0rem; }
.star-rating .star--full { color: var(--accent); }
.star-rating .star--half { color: var(--accent); opacity: 0.6; }
.star-rating .star--empty { color: var(--text-muted); }
.casino-card__bonus {
    font-size: 0.88rem; font-weight: 700; color: var(--primary);
    background: var(--primary-light); padding: 10px 16px; border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.casino-card__license { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 16px; font-weight: 400; letter-spacing: 0.01em; }

/* ============================================================
   BONUS CARDS — Neon
   ============================================================ */
.bonus-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card {
    background: var(--bg-surface); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-border); }
.bonus-card__image {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 50%, #1E2848 100%);
}
.bonus-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.bonus-card:hover .bonus-card__image img { transform: scale(1.05); }
.bonus-card__image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,6,14,0.6) 100%);
}
.bonus-card__exclusive {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1a1a00;
    font-size: 0.67rem; font-weight: 700; padding: 5px 12px;
    border-radius: var(--radius-xs);
    box-shadow: 0 4px 12px rgba(251,191,36,0.3); letter-spacing: 0.04em; text-transform: uppercase;
}
.bonus-card__type-pill {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    background: rgba(14,14,28,0.7); backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: #fff; font-size: 0.78rem; font-weight: 700;
    padding: 5px 12px; border-radius: var(--radius-full);
}
.bonus-card__bonus-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(6,6,14,0.9));
    padding: 20px 20px 16px; color: #fff;
}
.bonus-card__bonus-value { font-size: 1.25rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.bonus-card__body { padding: 20px; }
.bonus-card__name { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.01em; }
.bonus-card__details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.bonus-card__detail { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; }
.bonus-card__detail-label {
    display: block; font-size: 0.67rem; color: var(--text-muted); font-weight: 500;
    margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============================================================
   FILTER SIDEBAR — Neon
   ============================================================ */
.content-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.filter-toggle-mobile { display: none; }
.filter-sidebar {
    background: var(--bg-surface); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 24px;
    position: sticky; top: calc(var(--header-h) + 20px);
    align-self: start; box-shadow: var(--shadow-sm);
}
.filter-sidebar__title {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.0rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 20px; }
.filter-group__label {
    font-size: 0.67rem; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;
}
/* Native select — hidden when custom dropdown is active */
.filter-select {
    width: 100%; padding: 10px 36px 10px 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg-input);
    color: var(--text-primary); font-size: 0.88rem; transition: border-color var(--transition);
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394A3B8' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; cursor: pointer;
}
.filter-select:hover { border-color: var(--primary-border); }
.filter-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.filter-select.has-custom { display: none; }

/* Custom dark dropdown */
.custom-select { position: relative; width: 100%; }
.custom-select__trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg-input);
    color: var(--text-primary); font-size: 0.88rem; cursor: pointer;
    transition: all var(--transition);
}
.custom-select__trigger:hover { border-color: var(--primary-border); }
.custom-select__trigger svg { flex-shrink: 0; transition: transform 0.2s ease; }
.custom-select.open .custom-select__trigger {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.custom-select.open .custom-select__trigger svg { transform: rotate(180deg); }
.custom-select__dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); max-height: 240px; overflow-y: auto;
    z-index: 50; display: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.custom-select.open .custom-select__dropdown { display: block; }
.custom-select__option {
    padding: 9px 12px; font-size: 0.85rem; color: var(--text-secondary);
    cursor: pointer; transition: all 0.15s ease;
}
.custom-select__option:hover {
    background: var(--primary-light); color: var(--text-primary);
}
.custom-select__option.selected {
    color: var(--primary); font-weight: 600;
}
.custom-select__dropdown::-webkit-scrollbar { width: 4px; }
.custom-select__dropdown::-webkit-scrollbar-track { background: transparent; }
.custom-select__dropdown::-webkit-scrollbar-thumb {
    background: var(--border); border-radius: 4px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover { background: var(--primary); }
/* Filter search input */
.filter-search {
    position: relative; margin-bottom: 10px;
}
.filter-search svg {
    position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); pointer-events: none;
}
.filter-search__input {
    width: 100%; padding: 7px 10px 7px 32px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg-input);
    color: var(--text-primary); font-size: 0.82rem; transition: border-color var(--transition);
}
.filter-search__input::placeholder { color: var(--text-muted); }
.filter-search__input:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

/* Checkbox list */
.filter-checkbox {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
    font-size: 0.85rem; color: var(--text-primary); cursor: pointer; font-weight: 400;
    transition: opacity 0.15s ease;
}
.filter-checkbox--hidden { display: none; }
.filter-checkbox--no-match { display: none !important; }
.filter-checkbox input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.filter-checkbox__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filter-checkbox__count {
    font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
    background: var(--bg-input); padding: 1px 6px; border-radius: var(--radius-full);
    flex-shrink: 0; min-width: 20px; text-align: center;
}

/* Expand/collapse toggle */
.filter-toggle {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.78rem; font-weight: 600; color: var(--primary);
    background: none; border: none; cursor: pointer; padding: 6px 0 0;
    transition: color var(--transition);
}
.filter-toggle:hover { color: var(--text-primary); }
.filter-toggle svg { transition: transform 0.2s ease; }
.filter-toggle.expanded svg { transform: rotate(180deg); }

/* Scrollable when expanded with many items */
.filter-checkbox-list--collapsible.expanded {
    max-height: 280px; overflow-y: auto; padding-right: 4px;
}
.filter-checkbox-list--collapsible.expanded::-webkit-scrollbar { width: 4px; }
.filter-checkbox-list--collapsible.expanded::-webkit-scrollbar-track { background: transparent; }
.filter-checkbox-list--collapsible.expanded::-webkit-scrollbar-thumb {
    background: var(--border); border-radius: 4px;
}
.filter-checkbox-list--collapsible.expanded::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.rtp-slider { width: 100%; accent-color: var(--primary); margin-top: 8px; }
.rtp-value { font-size: 0.88rem; font-weight: 700; color: var(--primary); text-align: right; }

/* ============================================================
   GAME DETAIL — Neon
   ============================================================ */
.game-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; align-items: start; }
.game-hero__media { grid-column: 1; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 10px; }
.game-hero__info { grid-column: 2; grid-row: 1; }
.game-hero__actions { grid-column: 2; grid-row: 2; align-self: start; margin-top: 20px; margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.game-hero__specs { margin-top: 10px; }

/* Hero casino cards — 2-up grid using standard podium-card component */
.game-hero__casinos { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; flex: 0 0 100%; }
.game-hero__casinos-label { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.game-hero__casinos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.game-hero__thumb {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 16/10;
    background: var(--bg-elevated); border: 1px solid var(--border);
}
.game-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-hero__info { padding: 4px 0 0; }
.game-hero__provider {
    font-size: 0.72rem; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
}
.game-hero__title-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px;
    margin-bottom: 8px;
}
.game-hero__title { font-size: 2rem; font-weight: 900; color: var(--text-primary); margin: 0; letter-spacing: -0.03em; line-height: 1.15; }
.game-hero__rating--inline { display: flex; align-items: center; gap: 8px; margin: 0; }
.game-hero__rating--inline .game-hero__rating-score { font-size: 1.3rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.game-hero__rating--inline .game-hero__rating-label { font-size: 0.72rem; color: var(--text-secondary); font-weight: 400; }
.game-hero__rating { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.game-hero__rating-score { font-size: 1.3rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.game-hero__rating-label { font-size: 0.72rem; color: var(--text-secondary); font-weight: 400; letter-spacing: 0.01em; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 8px; margin-bottom: 0; width: 100%; }
.spec-card {
    background: var(--bg-surface); border: 2px solid var(--border);
    border-radius: var(--radius-sm, 8px); padding: 0 6px; text-align: center;
    position: relative; overflow: hidden;
    height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
/* Subtle gradient overlay on spec cards */
.spec-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.05), transparent 60%);
    pointer-events: none;
}
.spec-card__label {
    font-size: 0.6rem; font-weight: 500; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px;
}
.spec-card__value { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.2; }
.spec-card__value--sm { font-size: 0.72rem; letter-spacing: 0; }
.spec-card__value--green { color: var(--text-primary); }
.rtp-meter { margin: 10px 0 0; }
.rtp-meter__bar { height: 8px; background: var(--bg-elevated); border-radius: var(--radius-full); overflow: hidden; border: 1px solid var(--border); }
.rtp-meter__fill {
    height: 100%; border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--danger) 0%, var(--warning) 40%, var(--neon-green) 80%);
    transition: width 1.5s ease;
}
.rtp-meter__labels { display: flex; justify-content: space-between; margin-top: 4px; font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.02em; }

/* Where to Play */
.where-to-play { margin-top: 32px; }
.wtp-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; background: var(--bg-surface);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 10px; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.wtp-row:hover { border-color: var(--primary-border); box-shadow: var(--shadow-card); }
.wtp-row__logo {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: var(--bg-elevated); border: 1px solid var(--border);
    overflow: hidden; flex-shrink: 0;
}
.wtp-row__logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.wtp-row__info { flex: 1; }
.wtp-row__name { font-size: 1.0rem; font-weight: 700; color: var(--text-primary); }
.wtp-row__bonus { font-size: 0.88rem; color: var(--text-secondary); font-weight: 400; }
.wtp-row__cta { flex-shrink: 0; }
.similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: 20px; }

/* ============================================================
   CASINO DETAIL — Neon
   ============================================================ */
.casino-detail-hero { background: var(--header-bg); padding: 40px 0; }
.casino-hero-layout { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.casino-hero__logo {
    width: 100px; height: 100px; border-radius: var(--radius);
    background: var(--bg-surface); display: flex; align-items: center; justify-content: center;
    overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.casino-hero__logo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.casino-hero__info { color: var(--text-on-dark); }
.casino-hero__name { font-size: 2.4rem; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.03em; }
.casino-hero__license {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; color: var(--text-secondary); font-weight: 400; letter-spacing: 0.01em;
    background: var(--bg-glass); padding: 4px 12px;
    border-radius: var(--radius); margin-bottom: 8px;
    border: 1px solid var(--border);
}
.casino-hero__stars { display: flex; align-items: center; gap: 8px; }
.casino-hero__score { font-size: 1.75rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.casino-hero__bonus-box {
    background: var(--primary-light); border: 1px solid var(--primary-border);
    border-radius: var(--radius); padding: 24px; text-align: center; min-width: 280px;
}
.casino-hero__bonus-value { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; letter-spacing: -0.01em; }
.casino-hero__bonus-label { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 16px; font-weight: 400; letter-spacing: 0.01em; }

/* Pros & Cons (casino page) */
.pros-cons--casino { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-list, .cons-list {
    background: var(--bg-surface); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 24px;
}
.pros-list__title, .cons-list__title {
    font-size: 1.0rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.pros-list__title { color: var(--neon-green); }
.cons-list__title { color: var(--danger); }
.pros-list li, .cons-list li {
    padding: 8px 0; font-size: 0.88rem; color: var(--text-primary); font-weight: 400;
    border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: "\2713"; color: var(--neon-green); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: "\2717"; color: var(--danger); font-weight: 700; flex-shrink: 0; }

/* Rating Breakdown */
.rating-breakdown {
    background: var(--bg-surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px;
}
.rating-row {
    display: grid; grid-template-columns: 120px 1fr 40px; gap: 12px;
    align-items: center; margin-bottom: 14px;
}
.rating-row:last-child { margin-bottom: 0; }
.rating-row__label { font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); }
.rating-row__bar { height: 8px; background: var(--bg-elevated); border-radius: var(--radius-full); overflow: hidden; }
.rating-row__fill { height: 100%; border-radius: var(--radius-full); background: var(--primary); transition: width 1s ease; }
.rating-row__score { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); text-align: right; }

/* Payment & Provider badges */
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.payment-badge {
    padding: 6px 14px; background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
}

/* ============================================================
   MARQUEE / HOT TICKER
   ============================================================ */
.hot-marquee {
    overflow: hidden; position: relative;
    padding: 24px 0;
    background: var(--bg-body);
}
.hot-marquee::before,
.hot-marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.hot-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-body), transparent); }
.hot-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-body), transparent); }
.hot-marquee__track {
    display: flex; gap: 16px; width: max-content;
    animation: marquee 30s linear infinite;
}
.hot-marquee:hover .hot-marquee__track { animation-play-state: paused; }

.marquee-card {
    width: 240px; flex-shrink: 0;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    position: relative;
}
/* Neon border on marquee card hover */
.marquee-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none; z-index: 2;
}
.marquee-card:hover::before { opacity: 1; }
.marquee-card:hover {
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-6px);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}
.marquee-card__thumb { aspect-ratio: 16/10; overflow: hidden; }
.marquee-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.marquee-card:hover .marquee-card__thumb img { transform: scale(1.08); }
.marquee-card__body { padding: 10px 12px; }
.marquee-card__title { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.marquee-card__provider { font-size: 0.72rem; color: var(--text-secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes neon-pulse {
    0%, 100% { text-shadow: 0 0 10px currentColor, 0 0 40px currentColor; }
    50% { text-shadow: 0 0 20px currentColor, 0 0 60px currentColor, 0 0 80px currentColor; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes reveal-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gold-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(251,191,36,0.1); }
    50% { box-shadow: 0 0 30px rgba(251,191,36,0.2); }
}

/* Utility animation classes */
.animate-marquee { animation: marquee 30s linear infinite; }
.animate-neon-pulse { animation: neon-pulse 3s ease-in-out infinite; }
.animate-gradient-shift { animation: gradient-shift 6s ease-in-out infinite; background-size: 200% 200%; }
.animate-gold-pulse { animation: gold-pulse 3s ease infinite; }

/* Shine sweep on hover */
.animate-shine { position: relative; overflow: hidden; }
.animate-shine::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%) skewX(-15deg);
    pointer-events: none; z-index: 10;
}
.animate-shine:hover::after { animation: shimmer 0.75s ease-out; }

/* Fade in on scroll */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Rank badges */
.rank-gold {
    background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1a1a00;
    box-shadow: 0 2px 12px rgba(251,191,36,0.4);
}
.rank-silver {
    background: linear-gradient(135deg, #CBD5E1, #94A3B8); color: #0f172a;
    box-shadow: 0 2px 8px rgba(148,163,184,0.3);
}
.rank-bronze {
    background: linear-gradient(135deg, #D97706, #B45309); color: #fff;
    box-shadow: 0 2px 8px rgba(217,119,6,0.3);
}

/* Diagonal ribbon */
.ribbon-diagonal {
    position: absolute; top: 14px; right: -28px; z-index: 3;
    background: linear-gradient(135deg, #34D399, #10B981); color: #06060e;
    font-size: 10px; font-weight: 800; padding: 3px 32px;
    transform: rotate(45deg); letter-spacing: 1.5px;
    box-shadow: 0 2px 12px rgba(52,211,153,0.4); text-transform: uppercase;
}

/* ============================================================
   NEON MAGAZINE — HOMEPAGE COMPONENTS
   ============================================================ */

/* Content wrapper */
.neon-content-wrap { padding: 20px 0 60px; display: flex; flex-direction: column; }

/* Ticker Bar */
.ticker-bar {
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(139,92,246,0.08), rgba(236,72,153,0.08), rgba(139,92,246,0.08));
    height: 32px; display: flex; align-items: center;
}
.ticker-bar__inner {
    overflow: hidden; position: relative; height: 100%; display: flex; align-items: center;
}
.ticker-bar__inner::before,
.ticker-bar__inner::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-bar__inner::before { left: 0; background: linear-gradient(90deg, var(--header-bg), transparent); }
.ticker-bar__inner::after { right: 0; background: linear-gradient(270deg, var(--header-bg), transparent); }
.ticker-bar__track { display: flex; gap: 32px; white-space: nowrap; }
.ticker-bar__item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-secondary); }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--danger); animation: neon-pulse-dot 2s ease infinite; }
.ticker-highlight { font-weight: 600; color: var(--neon-green); }
.ticker-accent { font-weight: 500; color: var(--primary); }
@keyframes neon-pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.animate-ticker { animation: ticker-scroll 30s linear infinite; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Category Bar */
.category-bar { border-bottom: 1px solid var(--border); }
.category-bar__pills {
    display: flex; gap: 6px; overflow-x: auto; padding: 8px 0;
    scrollbar-width: none; -ms-overflow-style: none;
}
.category-bar__pills::-webkit-scrollbar { display: none; }
.cat-pill {
    display: flex; align-items: center; gap: 6px; white-space: nowrap;
    padding: 6px 14px; border-radius: var(--radius-full);
    border: 1px solid var(--border); background: var(--bg-glass);
    font-size: 0.75rem; font-weight: 600; color: var(--text-secondary);
    cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.cat-pill:hover { border-color: var(--primary-border); color: var(--text-primary); }
.cat-pill--active {
    border-color: var(--primary); background: var(--primary-light);
    color: var(--primary); box-shadow: 0 0 12px var(--primary-light);
}

/* Pulse dot utility */
.pulse-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--neon-green); animation: neon-pulse-dot 2s ease infinite; }
.pulse-dot--red { background: var(--danger); box-shadow: 0 0 8px rgba(248,113,113,0.5); }

/* Section headers */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; gap: 10px; }
.section-header__left { display: flex; align-items: center; gap: 12px; }
.section-header__right { display: flex; align-items: center; gap: 8px; }
.section-emoji { font-size: 1.5rem; flex-shrink: 0; }
/* When section-header is used without __left/__right children (inline emoji + text) */
.section-header:not(:has(.section-header__left)) { justify-content: flex-start; align-items: center; }
.section-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); transition: all 0.2s; }
.section-link:hover { gap: 10px; }

/* Gradient text utility */
.gradient-text { -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text--red { background-image: linear-gradient(90deg, var(--cat-hot), var(--neon-orange), var(--cat-hot)); }
.gradient-text--gold { background-image: linear-gradient(90deg, var(--accent), var(--neon-orange), var(--accent)); }
.gradient-text--green { background-image: linear-gradient(90deg, var(--neon-green), var(--secondary), var(--neon-green)); }
.gradient-text--purple { background-image: linear-gradient(90deg, var(--primary), var(--neon-pink), var(--primary)); }
.gradient-text--rainbow { background-image: linear-gradient(90deg, var(--neon-blue), var(--primary), var(--neon-pink)); }

/* Live badge */
.live-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 700; color: var(--danger);
    border: 1px solid rgba(248,113,113,0.2); background: rgba(248,113,113,0.1);
    padding: 4px 12px; border-radius: var(--radius-full);
}

/* ============================================================
   IMMERSIVE HERO
   ============================================================ */
.immersive-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 24px; }

.hero-main {
    position: relative; display: block; height: 280px; border-radius: 16px; overflow: hidden; cursor: pointer; text-decoration: none; color: #fff;
}
.hero-main__glow {
    position: absolute; inset: -2px; z-index: 0; border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #EC4899, var(--accent));
    background-size: 300% 300%; animation: gradient-shift 4s linear infinite;
}
.hero-main__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; transition: transform 0.7s ease; }
.hero-main:hover .hero-main__img { transform: scale(1.04); }
.hero-main__overlay {
    position: absolute; inset: 0; z-index: 2; border-radius: 16px;
    background: linear-gradient(to top, rgba(6,6,14,0.95), rgba(6,6,14,0.4) 50%, transparent),
                linear-gradient(to right, rgba(6,6,14,0.5), transparent);
}
.hero-main__badge {
    position: absolute; left: 16px; top: 16px; z-index: 4;
    background: linear-gradient(135deg, var(--danger), #EC4899);
    padding: 6px 14px; border-radius: var(--radius-sm); font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: #fff;
    box-shadow: 0 4px 20px rgba(255,82,82,0.4);
}
.hero-main__play {
    position: absolute; left: 50%; top: 50%; z-index: 4;
    transform: translate(-50%,-50%) scale(0); transition: transform 0.4s ease;
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    box-shadow: 0 0 40px rgba(124,108,240,0.5);
}
.hero-main:hover .hero-main__play { transform: translate(-50%,-50%) scale(1); }
.hero-main__content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 20px 24px; }
.hero-main__title { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-main__meta { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-main__tags { display: flex; gap: 8px; margin-top: 8px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
    padding: 4px 12px; border-radius: var(--radius-full);
}
.hero-tag--live { background: rgba(52,211,153,0.15); color: var(--neon-green); }

/* Secondary hero cards */
.hero-secondary { display: grid; grid-template-columns: 1fr; gap: 12px; }
.hero-sec-card {
    position: relative; display: block; border-radius: 12px; overflow: hidden; cursor: pointer; text-decoration: none; color: #fff; min-height: 134px;
}
.hero-sec-card__glow {
    position: absolute; inset: -1px; z-index: 0; border-radius: 14px;
    background: linear-gradient(135deg, rgba(139,92,246,0.6), rgba(236,72,153,0.4), rgba(251,191,36,0.5));
    background-size: 300% 300%; animation: gradient-shift 4s linear infinite; opacity: 0.6;
}
.hero-sec-card__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; transition: transform 0.5s ease; }
.hero-sec-card:hover .hero-sec-card__img { transform: scale(1.06); }
.hero-sec-card__play {
    position: absolute; left: 50%; top: 50%; z-index: 4;
    transform: translate(-50%,-50%) scale(0); transition: transform 0.4s ease;
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    box-shadow: 0 0 30px rgba(124,108,240,0.5);
}
.hero-sec-card:hover .hero-sec-card__play { transform: translate(-50%,-50%) scale(1); }
.hero-sec-card__overlay {
    position: absolute; inset: 0; z-index: 2; border-radius: 12px;
    background: linear-gradient(to top, rgba(6,6,14,0.9), rgba(6,6,14,0.3) 50%, transparent);
}
.hero-sec-card__badge {
    position: absolute; left: 10px; top: 10px; z-index: 4;
    background: linear-gradient(135deg, rgba(248,113,113,0.9), rgba(236,72,153,0.9));
    padding: 2px 10px; border-radius: 6px; font-size: 0.56rem; font-weight: 700;
    text-transform: uppercase; color: #fff;
}
.hero-sec-card__content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 12px; }
.hero-sec-card__title { font-size: 0.88rem; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-sec-card__meta { font-size: 0.62rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ============================================================
   NEON STATS BAR
   ============================================================ */
.neon-stats {
    position: relative; overflow: hidden; border-radius: 16px; margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.04); background: rgba(14,14,28,0.5);
    backdrop-filter: blur(16px);
}
.neon-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.neon-stats__item {
    padding: 20px; text-align: center; position: relative;
    border-right: 1px solid rgba(255,255,255,0.04); transition: background 0.3s;
}
.neon-stats__item:last-child { border-right: none; }
.neon-stats__item:hover { background: rgba(255,255,255,0.02); }
.neon-stats__number { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.02em; }
.neon-stats__label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 4px; }
.neon-stats__number--live { animation: live-num-glow 3s ease-in-out infinite; }
@keyframes live-num-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(74,222,128,0.35); }
    50% { text-shadow: 0 0 22px rgba(74,222,128,0.85), 0 0 44px rgba(74,222,128,0.25); }
}

/* ============================================================
   COMPARE HERO CTA
   ============================================================ */
.compare-hero {
    position: relative; overflow: hidden; border-radius: 16px; margin: 24px 0;
    border: 1px solid rgba(139,92,246,0.1);
    background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(244,114,182,0.03), rgba(56,189,248,0.06));
}
.compare-hero__bg {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(139,92,246,0.05), rgba(244,114,182,0.05), rgba(56,189,248,0.05));
    background-size: 200% 200%; animation: gradient-shift 6s ease-in-out infinite;
}
.compare-hero__line { position: absolute; left: 0; right: 0; height: 2px; }
.compare-hero__line--top { top: 0; background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent); }
.compare-hero__line--bottom { bottom: 0; background: linear-gradient(90deg, transparent, rgba(244,114,182,0.3), transparent); }
.compare-hero__inner {
    position: relative; display: flex; align-items: center; gap: 16px; padding: 32px 40px;
}
.compare-hero__icon {
    width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
    background: rgba(139,92,246,0.15); display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; box-shadow: 0 0 30px rgba(139,92,246,0.15);
}
.compare-hero__text { flex: 1; }
.compare-hero__title { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em; color: var(--text-primary); }
.compare-hero__desc { font-size: 0.82rem; color: var(--text-secondary); margin-top: 4px; }
.btn-cta--gradient {
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    box-shadow: 0 0 25px rgba(139,92,246,0.2); flex-shrink: 0;
}
.btn-cta--gradient:hover { box-shadow: 0 0 35px rgba(139,92,246,0.35); transform: translateY(-2px); }

/* Pulse for demo CTA on game detail */
.game-hero__actions .btn-cta--gradient {
    animation: demo-cta-pulse 2s ease-in-out infinite;
}
.game-hero__actions .btn-cta--gradient:active {
    animation: none;
}
@keyframes demo-cta-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(139,92,246,0.2); }
    50% { transform: scale(1.03); box-shadow: 0 0 24px rgba(139,92,246,0.5), 0 0 6px rgba(236,72,153,0.35); }
}

/* Sparkle stars around demo CTA */
.sparkle-wrap {
    position: relative;
    display: inline-flex;
    overflow: visible;
}
.sparkle {
    position: absolute;
    fill: #fff;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.8));
    opacity: 0;
    pointer-events: none;
    animation: sparkle-pop 1.4s ease-in-out infinite;
}
.sparkle--1 { width: 12px; height: 12px; top: -8px;  left: 15%;  animation-delay: 0s; }
.sparkle--2 { width: 10px; height: 10px; top: -6px;  right: 10%; animation-delay: 0.5s; }
.sparkle--3 { width: 14px; height: 14px; bottom: -8px; left: 25%; animation-delay: 1.0s; }
.sparkle--4 { width: 8px;  height: 8px;  top: 50%;   left: -10px; animation-delay: 0.3s; }
.sparkle--5 { width: 10px; height: 10px; top: 30%;   right: -10px; animation-delay: 0.8s; }
@keyframes sparkle-pop {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    15% { opacity: 1; transform: scale(1) rotate(15deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(-10deg); }
    85% { opacity: 0.6; transform: scale(0.8) rotate(5deg); }
}
.btn-cta--gold {
    background: linear-gradient(135deg, var(--accent), #D97706); color: #000;
    box-shadow: 0 4px 15px rgba(251,191,36,0.2);
}
.btn-cta--gold:hover { box-shadow: 0 6px 25px rgba(251,191,36,0.35); transform: translateY(-2px); color: #000; }
.btn-cta--sm { padding: 10px 20px; font-size: 0.75rem; }

/* ============================================================
   TOP RATED + CASINO SPOTLIGHT SPLIT
   ============================================================ */
.top-rated-section { margin-top: 40px; }
.rated-casino-split {
    display: grid; grid-template-columns: 1fr 320px; gap: 24px;
}

/* Compact card grids */
.compact-grid { display: grid; gap: 12px; }
.compact-grid--7 { grid-template-columns: repeat(7, 1fr); }
.compact-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Game card — RTP badge overlay */
.game-card__rtp-badge {
    position: absolute; right: 6px; top: 6px; z-index: 2;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    padding: 2px 8px; border-radius: 6px;
    font-size: 0.56rem; font-weight: 700; color: var(--neon-green);
}

/* Game card — star rating */
.game-card__rating { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.game-card__stars { font-size: 0.82rem; font-weight: 800; color: var(--accent); }
.game-card__stars-visual { font-size: 0.68rem; color: var(--accent); letter-spacing: 1px; text-shadow: 0 0 4px rgba(251,191,36,0.3); }

/* Casino Spotlight — sticky sidebar */
.casino-spotlight {
    align-self: start; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(251,191,36,0.2);
    background: var(--bg-surface);
    display: flex; flex-direction: column;
    position: relative;
    text-decoration: none; color: inherit; cursor: pointer;
}
.casino-spotlight__glow {
    position: absolute; right: -40px; top: -40px; width: 128px; height: 128px;
    border-radius: 50%; background: rgba(251,191,36,0.1);
    filter: blur(50px); pointer-events: none;
}
.casino-spotlight__line {
    position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.casino-spotlight__badge {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--accent), #D97706);
    padding: 4px 12px; border-radius: 6px;
    font-size: 0.62rem; font-weight: 700; color: #000;
    box-shadow: 0 2px 10px rgba(255,215,0,0.3);
}
.casino-spotlight__hero {
    width: 100%; aspect-ratio: 16/10; overflow: hidden;
    position: relative;
}
.casino-spotlight__hero img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.casino-spotlight:hover .casino-spotlight__hero img { transform: scale(1.05); }
.casino-spotlight__body { padding: 16px; }
.casino-spotlight__name { font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 4px; }
.casino-spotlight__stars { font-size: 0.72rem; color: var(--accent); text-shadow: 0 0 6px rgba(251,191,36,0.3); margin-bottom: 8px; }
.casino-spotlight__bonus {
    font-size: 1.15rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 4px;
    background: linear-gradient(90deg, var(--accent), #FCD34D, var(--accent));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.casino-spotlight__sub { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 12px; }
.casino-spotlight__features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.casino-spotlight__feat {
    padding: 2px 10px; border-radius: 6px; border: 1px solid var(--border);
    background: var(--bg-glass); font-size: 0.62rem; color: var(--text-secondary);
}
.casino-spotlight__urgency {
    display: flex; align-items: center; gap: 6px; margin-top: 10px;
    font-size: 0.68rem; font-weight: 600; color: var(--danger);
}

/* ============================================================
   NEW RELEASES
   ============================================================ */
.new-releases-section { margin-top: 32px; }
.game-card--new { border-color: rgba(52,211,153,0.1); }
.game-card--new:hover { border-color: rgba(52,211,153,0.25); box-shadow: 0 10px 30px rgba(52,211,153,0.1); }

/* ============================================================
   LIVE FEED
   ============================================================ */
.live-feed {
    margin: 20px 0; padding: 10px 16px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--bg-glass);
    display: flex; align-items: center; gap: 10px;
}
.live-feed__dot {
    width: 8px; height: 8px; border-radius: 50%; background: #ef4444; flex-shrink: 0;
    animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.5); } 50% { opacity: 0.7; box-shadow: 0 0 8px 3px rgba(239,68,68,0.3); } }
.live-feed__label {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: #ef4444; flex-shrink: 0;
}
.live-feed__ticker { flex: 1; overflow: hidden; position: relative; height: 1.4em; }
.live-feed__item {
    display: flex; align-items: center; gap: 6px; font-size: 0.78rem;
    position: absolute; inset: 0; opacity: 0; transform: translateY(100%);
    transition: opacity 0.4s, transform 0.4s;
}
.live-feed__item--active { opacity: 1; transform: translateY(0); }
.live-feed__item--exit { opacity: 0; transform: translateY(-100%); }
.live-feed__flag { font-size: 0.95rem; }
.live-feed__text { color: var(--text-secondary); white-space: nowrap; }
.live-feed__text strong { color: var(--primary); font-weight: 600; }
.live-feed__time { margin-left: auto; font-size: 0.65rem; color: var(--text-muted); flex-shrink: 0; }

/* ============================================================
   PROVIDER SHOWCASE
   ============================================================ */
.provider-showcase { margin-top: 40px; }
.channel-switcher { display: flex; gap: 8px; margin-bottom: 20px; }
.channel-pill {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px;
    border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 700;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-secondary); cursor: pointer; transition: all 0.3s;
}
.channel-pill:hover { border-color: var(--primary-border); color: var(--text-primary); }
.channel-pill--active {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary));
    color: #fff; border-color: transparent;
    box-shadow: 0 0 25px rgba(139,92,246,0.2);
}
.channel-pill__count {
    background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: var(--radius-full);
    font-size: 0.56rem;
}

.provider-split { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; }

/* Featured cinematic card */
.provider-featured {
    position: relative; display: block; min-height: 340px; border-radius: 16px;
    overflow: hidden; text-decoration: none; color: #fff; cursor: pointer;
    border: 1px solid var(--border); transition: all 0.4s;
}
.provider-featured:hover { border-color: rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.provider-featured__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.provider-featured:hover .provider-featured__img { transform: scale(1.06); }
.provider-featured__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-body), rgba(6,6,14,0.4) 50%, transparent),
                linear-gradient(to right, rgba(6,6,14,0.6), transparent);
}
.provider-featured__play {
    position: absolute; left: 50%; top: 50%; z-index: 4;
    transform: translate(-50%,-50%) scale(0); transition: transform 0.5s ease;
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    box-shadow: 0 0 40px rgba(139,92,246,0.5);
}
.provider-featured:hover .provider-featured__play { transform: translate(-50%,-50%) scale(1); }
.provider-featured__content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 24px 32px; }
.provider-featured__title { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.provider-featured__meta { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.provider-featured__tags { display: flex; gap: 8px; margin-top: 12px; }
.provider-tag {
    padding: 4px 12px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
}
.provider-tag--green { background: rgba(52,211,153,0.15); color: var(--neon-green); }

/* Provider compact list */
.provider-list { display: flex; flex-direction: column; gap: 10px; }
.provider-list__item {
    display: flex; align-items: center; gap: 12px; padding: 12px;
    border-radius: 12px; border: 1px solid var(--border); background: var(--bg-card);
    text-decoration: none; color: var(--text-primary); transition: all 0.3s; backdrop-filter: blur(4px);
}
.provider-list__item:hover { border-color: rgba(255,255,255,0.08); background: rgba(14,14,28,0.8); }
.provider-list__thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.provider-list__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.provider-list__item:hover .provider-list__thumb img { transform: scale(1.1); }
.provider-list__info { flex: 1; min-width: 0; }
.provider-list__name { font-size: 0.88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.provider-list__meta { font-size: 0.68rem; color: var(--text-secondary); margin-top: 2px; }
.provider-list__rtp { color: var(--neon-green); }
.provider-list__play { flex-shrink: 0; color: rgba(139,92,246,0.4); transition: color 0.3s; }
.provider-list__item:hover .provider-list__play { color: var(--primary); }

/* ============================================================
   CASINO PODIUM GRID
   ============================================================ */
.casino-podium-section { margin-top: 40px; }
.podium-timer-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.podium-timer { font-family: 'JetBrains Mono', monospace; font-size: 1.15rem; font-weight: 900; color: var(--accent); }
.casino-podium-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.casino-podium-card {
    position: relative; overflow: hidden; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--bg-surface);
    transition: all 0.3s; cursor: pointer;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.casino-podium-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
.casino-podium-card--gold { border-color: rgba(251,191,36,0.25); }
.casino-podium-card__topline { height: 2px; background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent); }
.casino-podium-card__topline--gold { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
/* Logo area — full-width like game card thumbnails */
.casino-podium-card__logo {
    width: 100%; aspect-ratio: 16/10; overflow: hidden;
    background: linear-gradient(135deg, #1a1d2e, #252840);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.casino-podium-card--gold .casino-podium-card__logo {
    background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(251,191,36,0.04), #1a1d2e);
}
.casino-podium-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.casino-podium-card__rank {
    position: absolute; top: 8px; left: 8px;
    font-size: 0.72rem; font-weight: 900; line-height: 1;
    padding: 4px 8px; border-radius: 6px;
    background: rgba(0,0,0,0.6); color: var(--text-primary);
    backdrop-filter: blur(4px);
}
.casino-podium-card__rank.rank-gold { background: rgba(251,191,36,0.85); color: #1a1200; }
.casino-podium-card__rank.rank-silver { background: rgba(192,192,210,0.8); color: #1a1a2e; }
.casino-podium-card__rank.rank-bronze { background: rgba(205,127,50,0.8); color: #1a1200; }
/* Body — info below logo */
.casino-podium-card__body {
    padding: 12px; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1;
}
.casino-podium-card__name-row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 6px;
}
.casino-podium-card__name { font-size: 0.85rem; font-weight: 800; color: var(--text-primary); text-decoration: none; }
a.casino-podium-card__logo { text-decoration: none; color: inherit; }
.casino-podium-card__stars { font-size: 0.72rem; color: var(--accent); white-space: nowrap; text-shadow: 0 0 4px rgba(251,191,36,0.3); flex-shrink: 0; }
.casino-podium-card__specialty {
    display: inline-flex; margin-top: 6px; padding: 2px 8px; border-radius: var(--radius-full);
    background: var(--primary-light); font-size: 0.56rem; font-weight: 600; color: var(--primary);
}
.casino-podium-card--gold .casino-podium-card__specialty {
    background: rgba(251,191,36,0.12); color: var(--accent);
}
.casino-podium-card__bonus { font-size: 0.78rem; font-weight: 700; color: var(--neon-green); margin-top: 8px; }
.casino-podium-card__sub { font-size: 0.62rem; color: var(--text-secondary); margin-top: 2px; }
.casino-podium-card__cta-wrap { padding-top: 10px; width: 100%; }

/* ============================================================
   BONUS CONDITIONS: Score Badge + Slim Footer
   ============================================================ */
.cond-score-badge {
    position: absolute; bottom: 7px; right: 7px; z-index: 3;
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 8px 3px 5px; border-radius: 6px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-size: 0.56rem; font-weight: 700; letter-spacing: -0.01em;
    line-height: 1;
}
.cond-score-badge--good { background: rgba(16,185,129,0.75); color: #fff; }
.cond-score-badge--ok   { background: rgba(251,191,36,0.8); color: #1a1200; }
.cond-score-badge--bad  { background: rgba(239,68,68,0.75); color: #fff; }
.cond-score-badge__icon { font-size: 0.7rem; line-height: 1; }

.cond-slim-footer {
    display: flex; flex-wrap: wrap; gap: 2px 6px;
    padding: 6px 12px 7px;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.52rem; color: var(--text-muted); font-weight: 500;
    margin-top: auto;
}
.cond-slim-footer--empty { background: transparent; border-top-color: transparent; min-height: calc(0.52rem * 1.5 + 13px); }
.cond-slim-footer__val { font-weight: 700; color: var(--text-secondary); }
.cond-slim-footer__sep { color: rgba(255,255,255,0.06); }
.cond-slim-footer__tcs {
    font-size: 0.48rem; color: var(--text-muted); opacity: 0.45;
    text-decoration: none; display: block; width: 100%; margin-top: 2px;
    transition: opacity 0.2s;
}
.cond-slim-footer__tcs:hover { opacity: 1; color: var(--text-secondary); }

/* ============================================================
   FAQ GRID (card layout, not accordion)
   ============================================================ */
.faq-section { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-card {
    padding: 14px; border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--bg-card); transition: border-color 0.3s;
}
.faq-card:hover { border-color: var(--primary-border); }
.faq-card__q { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; }
.faq-card__a { font-size: 0.75rem; line-height: 1.6; color: var(--text-secondary); }

/* ============================================================
   NEWSROOM TEASER — HTML first in DOM for SEO, visual last via order
   ============================================================ */
.newsroom-teaser {
    order: 99;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.newsroom-teaser__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.newsroom-teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.newsroom-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card, rgba(255,255,255,0.02));
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}
.newsroom-card:hover {
    border-color: var(--primary-border);
    transform: translateY(-2px);
}
.newsroom-card__thumb {
    width: 90px;
    flex-shrink: 0;
    overflow: hidden;
}
.newsroom-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.newsroom-card:hover .newsroom-card__thumb img {
    transform: scale(1.04);
}
.newsroom-card__body {
    padding: 8px 12px;
    min-width: 0;
}
.newsroom-card__cat {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 6px;
}
.newsroom-card__headline {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0 0 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.newsroom-card__excerpt {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-secondary);
    margin: 2px 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.newsroom-card__meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================================
   HOT MARQUEE SECTION
   ============================================================ */
.hot-marquee-section { margin-bottom: 24px; }
.marquee-card__play {
    position: absolute; left: 50%; top: 50%; z-index: 4;
    transform: translate(-50%,-50%) scale(0); transition: transform 0.4s ease;
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    box-shadow: 0 0 30px rgba(139,92,246,0.5);
}
.marquee-card:hover .marquee-card__play { transform: translate(-50%,-50%) scale(1); }
.marquee-card__body { display: flex; align-items: flex-start; justify-content: space-between; }
.marquee-card__info { flex: 1; min-width: 0; }
.marquee-card__rtp {
    flex-shrink: 0; padding: 2px 8px; border-radius: 6px;
    background: rgba(52,211,153,0.1); font-size: 0.62rem; font-weight: 700; color: var(--neon-green);
}

/* ============================================================
   RESPONSIVE — Homepage Neon
   ============================================================ */
@media (max-width: 1200px) {
    .compact-grid--7 { grid-template-columns: repeat(5, 1fr); }
    .casino-podium-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .rated-casino-split { grid-template-columns: 1fr; }
    .compact-grid--7 { grid-template-columns: repeat(4, 1fr); }
    .provider-split { grid-template-columns: 1fr; }
    .provider-featured { min-height: 240px; }
    .casino-podium-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .immersive-hero { grid-template-columns: 1fr; }
    .hero-main { height: 220px; }
    .hero-secondary { grid-template-columns: 1fr 1fr; }
    .hero-sec-card { min-height: 120px; }
    .neon-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .compact-grid--7 { grid-template-columns: repeat(3, 1fr); }
    .compact-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .casino-podium-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .newsroom-teaser__grid { grid-template-columns: 1fr; }
    .newsroom-card__thumb { width: 80px; }
    .provider-featured { min-height: 200px; }
    .provider-featured__title { font-size: 1.25rem; }
    .marquee-card { width: 200px; }
}
@media (max-width: 480px) {
    .compact-grid--7 { grid-template-columns: repeat(2, 1fr); }
    .casino-podium-grid { grid-template-columns: 1fr; }
    .neon-stats__number { font-size: 1.25rem; }
    .hero-main__title { font-size: 1.25rem; }
}

/* ============================================================
   V3 NEON ENHANCEMENTS — Detail & Archive Pages
   ============================================================ */

/* Neon Page Hero — used on detail pages */
.neon-page-hero {
    position: relative;
    padding: 48px 0 32px;
    overflow: hidden;
}
.neon-page-hero--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title__emoji {
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}
.neon-page-hero::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.neon-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.3;
}

/* Game Hero Neon Enhancements */
.game-hero__thumb {
    position: relative;
}
.game-hero__thumb::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(139,92,246,0.3), transparent 50%, rgba(244,114,182,0.2));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.game-hero:hover .game-hero__thumb::after {
    opacity: 1;
}

/* Neon Spec Card Hover */
.spec-card {
    transition: all 0.3s ease;
}
.spec-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 0 20px rgba(139,92,246,0.1);
    transform: translateY(-2px);
}

/* Neon RTP Meter Enhancement */
.rtp-meter__fill {
    position: relative;
}
.rtp-meter__fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px; height: 100%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(52,211,153,0.8);
}

/* Casino Detail Hero Neon */
.casino-detail-hero {
    position: relative;
    overflow: hidden;
}
.casino-detail-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);
    pointer-events: none;
}
.casino-detail-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

/* Casino Hero Bonus Box Neon */
.casino-hero__bonus-box {
    position: relative;
    overflow: hidden;
}
.casino-hero__bonus-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(139,92,246,0.08) 25%, transparent 50%);
    animation: glow-breathe 4s ease-in-out infinite;
    pointer-events: none;
}

/* Neon WTP Row Enhancement */
.wtp-row {
    position: relative;
    overflow: hidden;
}
.wtp-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.wtp-row:hover::before {
    opacity: 1;
}

/* Pros/Cons Neon Borders */
.pros-list {
    border-top: 2px solid rgba(52,211,153,0.4);
}
.cons-list {
    border-top: 2px solid rgba(239,68,68,0.4);
}

/* Rating Bar Neon */
.rating-row__fill {
    background: linear-gradient(90deg, var(--primary), var(--neon-pink));
    box-shadow: 0 0 8px rgba(139,92,246,0.3);
}

/* Neon Section Divider */
.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
    margin: 0;
    border: none;
}

/* Archive Page Filter Neon — subtle glow on sidebar hover */
.filter-sidebar:hover {
    box-shadow: 0 0 20px rgba(139,92,246,0.06), var(--shadow-sm);
}

/* 404 Neon */
.error-404-hero {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
}
.error-404__number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(139,92,246,0.3));
}

/* Search Neon */
.search-hero {
    text-align: center;
    padding: 48px 0 32px;
    position: relative;
}
.search-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(56,189,248,0.08) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.search-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.78rem;
    color: var(--neon-blue);
    font-weight: 600;
    margin-top: 12px;
}

/* Provider Detail Hero */
.provider-hero {
    display: flex; align-items: center; gap: 20px;
}
.provider-hero__logo {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-elevated); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.provider-hero__logo img {
    width: 100%; height: 100%; object-fit: contain; padding: 8px;
}
.provider-hero__logo--initials {
    font-size: 2rem; font-weight: 900; color: var(--primary);
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05));
}
.provider-hero__info { flex: 1; min-width: 0; }
.provider-hero__title-row {
    display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.provider-hero__specs {
    margin-top: 20px; width: 100%;
}

/* Provider Archive Card Neon */
.provider-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.provider-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.provider-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.04), transparent 60%);
    pointer-events: none;
}
.provider-card:hover {
    border-color: var(--primary-border);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(139,92,246,0.15);
}
.provider-card__logo {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.provider-card__logo img {
    width: 100%; height: 100%; object-fit: contain; padding: 6px;
}
.provider-card__name {
    font-size: 0.92rem; font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.provider-card__stars {
    font-size: 0.82rem; color: var(--accent);
    line-height: 1;
}
.provider-card__meta {
    font-size: 0.72rem; color: var(--text-muted);
    letter-spacing: 0.02em;
}
.provider-card__count {
    font-size: 0.78rem; font-weight: 600;
    color: var(--neon-green);
    background: rgba(16,185,129,0.08);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* Casino Archive List Neon */
.casino-list-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.casino-list-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.casino-list-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 4px 24px rgba(139,92,246,0.1);
}
.casino-list-card:hover::before {
    opacity: 1;
}
.casino-list-card__logo {
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
}
.casino-list-card__logo img {
    width: 100%; height: 100%; object-fit: contain; padding: 6px;
}
.casino-list-card__info { flex: 1; }
.casino-list-card__name {
    font-size: 1.1rem; font-weight: 700;
    color: var(--text-primary); text-decoration: none; display: block;
}
a.casino-list-card__logo { text-decoration: none; color: inherit; display: flex; align-items: center; justify-content: center; }
.casino-list-card__rating {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--text-secondary);
    margin-bottom: 4px;
}
.casino-list-card__license {
    font-size: 0.75rem; color: var(--text-muted);
}
.casino-list-card__bonus {
    font-size: 0.88rem; font-weight: 600;
    color: var(--primary);
    max-width: 240px;
    text-align: center;
}
.casino-list-card__actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

/* Game Demo Neon Frame */
.game-demo__wrapper {
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(139,92,246,0.1), inset 0 0 40px rgba(0,0,0,0.3);
}

/* Responsive for new neon components */
@media (max-width: 1024px) {
    .provider-archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .provider-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .casino-list-card { flex-wrap: wrap; }
    .casino-list-card__bonus { max-width: none; }
    .casino-list-card__actions { flex-direction: row; width: 100%; }
}
@media (max-width: 480px) {
    .compact-grid--4 { grid-template-columns: 1fr 1fr; }
    .provider-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .error-404__number { font-size: 5rem; }
    .filter-sidebar { padding: 16px; }
    .category-bar__pills { gap: 6px; }
    .cat-pill { font-size: 0.75rem; padding: 6px 10px; }
    .neon-stats { padding: 8px; }
}

/* ============================================================
   SLOT MACHINE ANIMATION — "Just Dropped This Week"
   Wrapper around compact-grid, cards animate in place.
   ============================================================ */
.slot-machine {
    --slot-bg: #0d0d14;
    --slot-gold: #f0b429;
    --slot-gold-glow: rgba(240, 180, 41, 0.4);
    --slot-chrome: linear-gradient(180deg, #2a2a3e 0%, #16162a 40%, #2a2a3e 100%);
    --slot-chrome-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);

    position: relative;
    background: var(--slot-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px 16px;
    overflow: hidden;
}

/* The inner grid stays exactly as before — no layout changes */
.slot-machine__grid {
    position: relative;
    z-index: 2;
}

/* Chrome bars — decorative top/bottom */
.slot-machine__chrome {
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    z-index: 10;
    background: var(--slot-chrome);
    overflow: hidden;
}
.slot-machine__chrome--top { top: 0; border-radius: var(--radius) var(--radius) 0 0; }
.slot-machine__chrome--bottom { bottom: 0; border-radius: 0 0 var(--radius) var(--radius); }
.slot-machine__chrome::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--slot-chrome-shine);
    animation: slot-shimmer 3s ease-in-out infinite;
}
@keyframes slot-shimmer {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Depth masks — gradient fade top/bottom */
.slot-machine__mask {
    position: absolute;
    left: 0; right: 0;
    height: 32px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slot-machine__mask--top {
    top: 4px;
    background: linear-gradient(180deg, var(--slot-bg) 0%, transparent 100%);
}
.slot-machine__mask--bottom {
    bottom: 4px;
    background: linear-gradient(0deg, var(--slot-bg) 0%, transparent 100%);
}
/* Masks visible during spin */
.slot-machine--spinning .slot-machine__mask {
    opacity: 1;
}

/* === REEL OVERLAY — sits on top of each card === */
.slot-reel-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10;
    overflow: hidden;
    border-radius: var(--radius);
    background: transparent;
}

/* The strip of symbols that scrolls vertically */
.slot-reel-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-animation: slot-strip-scroll 0.22s linear infinite;
    animation: slot-strip-scroll 0.22s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@-webkit-keyframes slot-strip-scroll {
    0%   { -webkit-transform: translateY(0); transform: translateY(0); }
    100% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
}
@keyframes slot-strip-scroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Individual symbol in the strip — same size as game card thumbnails */
.slot-reel-symbol {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
}
.slot-reel-symbol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Done: overlay removed */
.slot-reel-overlay--done {
    display: none;
}

/* After all reels stop: gold hover state */
.slot-machine--done .game-card:hover {
    border-color: var(--slot-gold) !important;
    box-shadow: 0 0 20px var(--slot-gold-glow), var(--shadow-hover);
}
.slot-machine--done .game-card::before {
    background: linear-gradient(135deg, var(--slot-gold), #e8a317, var(--slot-gold)) !important;
}

/* Confetti rain on win */
.slot-confetti {
    position: absolute;
    top: -12px;
    pointer-events: none;
    z-index: 25;
    animation: slot-confetti-fall ease-out forwards;
}
@keyframes slot-confetti-fall {
    0%   { opacity: 1; transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
    20%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(350px) translateX(var(--drift, 0px)) rotate(var(--spin, 360deg)) scale(0.5); }
}

/* Replay button */
.slot-replay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto 0;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
    letter-spacing: 0.02em;
}
.slot-replay--visible {
    opacity: 1;
    transform: translateY(0);
}
.slot-replay:hover {
    color: var(--slot-gold);
    border-color: rgba(240, 180, 41, 0.3);
    background: rgba(240, 180, 41, 0.06);
}
.slot-replay svg { transition: transform 0.3s ease; }
.slot-replay:hover svg { transform: rotate(360deg); }

/* ============================================================
   ACTIVITY TOAST — bottom-right social proof notification
   ============================================================ */
.activity-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(18, 18, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius);
    padding: 14px 36px 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.81rem;
    color: var(--text-secondary);
    z-index: 900;
    box-shadow: 0 0 30px rgba(0,0,0,0.4), 0 0 15px rgba(139, 92, 246, 0.15);
    max-width: 360px;
    /* Start hidden below viewport */
    transform: translateY(calc(100% + 48px));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    pointer-events: none;
}
.activity-toast--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.activity-toast__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.activity-toast__text strong {
    color: var(--text-primary);
    font-weight: 600;
}
.activity-toast__time {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.activity-toast__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1;
    padding: 2px;
    transition: color 0.2s;
}
.activity-toast__close:hover {
    color: var(--text-primary);
}
@media (max-width: 768px) {
    .activity-toast { display: none !important; }
}

/* ============================================================
   COMPARE SLOTS PAGE
   ============================================================ */

/* Compare check overlay on game cards */
.game-card--compare { cursor: pointer; position: relative; user-select: none; }
.game-card--compare .game-card__compare-check {
    position: absolute; top: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(14,14,28,0.7); border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.25s ease; z-index: 10;
    pointer-events: none;
}
.game-card--compare .game-card__compare-check svg { opacity: 0; transition: opacity 0.2s; color: #fff; }
.game-card--compare:hover .game-card__compare-check { opacity: 1; }
.game-card--compare.selected .game-card__compare-check {
    opacity: 1; background: var(--accent); border-color: var(--accent);
    box-shadow: 0 0 16px rgba(251,191,36,0.6);
}
.game-card--compare.selected .game-card__compare-check svg { opacity: 1; color: #0E0E1C; }
.game-card--compare.selected {
    outline: 3px solid var(--accent); outline-offset: -3px; border-radius: var(--radius);
    box-shadow: 0 0 24px rgba(251,191,36,0.25), 0 0 8px rgba(251,191,36,0.15);
}
.game-card--compare.selected .game-card__thumb img { transform: scale(1.04); }

/* ---- Floating Bottom Compare Tray ---- */
.compare-tray {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.compare-tray.active {
    transform: translateY(0);
    pointer-events: all;
}
.compare-tray__inner {
    max-width: 860px; margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-body) 100%);
    border: 2px solid var(--accent);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 20px 32px 24px;
    display: flex; align-items: center; gap: 24px;
    box-shadow:
        0 -12px 48px rgba(0,0,0,0.6),
        0 -4px 24px rgba(251,191,36,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.compare-tray__label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent);
    margin-bottom: 8px; text-align: center;
}
.compare-tray__slots {
    display: flex; align-items: center; gap: 12px; flex: 1;
}
.compare-tray__slot {
    width: 100px; height: 65px; border-radius: 10px;
    position: relative; flex-shrink: 0;
    transition: all 0.3s ease;
}
.compare-tray__slot--empty { overflow: hidden; }
.compare-tray__slot--filled { overflow: visible; }
.compare-tray__slot--empty {
    border: 2px dashed rgba(251,191,36,0.3);
    background: rgba(251,191,36,0.04);
}
.compare-tray__slot--filled {
    border: 2px solid var(--accent);
    box-shadow: 0 0 16px rgba(251,191,36,0.25);
}
.compare-tray__slot--filled img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 8px;
}
.compare-tray__slot-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    color: rgba(251,191,36,0.4);
}
.compare-tray__slot-placeholder span {
    font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.25);
}
.compare-tray__slot-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 3px 6px; font-size: 0.65rem; font-weight: 700;
    color: #fff; text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.compare-tray__slot-remove {
    position: absolute; top: -8px; right: -8px;
    width: 24px; height: 24px; border-radius: 50%;
    background: #e53e3e; border: 2px solid #fff; color: #fff;
    font-size: 0; line-height: 0; padding: 0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 1; transition: background 0.2s;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.compare-tray__slot-remove:hover { background: #c53030; }
.compare-tray__vs {
    font-size: 0.85rem; font-weight: 900; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.08em; flex-shrink: 0;
    text-shadow: 0 0 8px rgba(251,191,36,0.4);
}
.compare-tray__slot--optional,
.compare-tray__vs--3rd { opacity: 0.35; }
.compare-tray.has-2 .compare-tray__slot--optional,
.compare-tray.has-2 .compare-tray__vs--3rd { opacity: 0.6; }
.compare-tray.has-3 .compare-tray__slot--optional,
.compare-tray.has-3 .compare-tray__vs--3rd { opacity: 1; }

.compare-tray__actions {
    display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.compare-tray__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: none; border-radius: 10px;
    font-size: 0.95rem; font-weight: 800; cursor: pointer;
    color: #0E0E1C; white-space: nowrap; text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    box-shadow: 0 4px 20px rgba(251,191,36,0.35);
    transition: all 0.25s ease;
}
.compare-tray__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(251,191,36,0.45);
}
.compare-tray__btn:disabled {
    opacity: 0.3; cursor: not-allowed;
    background: rgba(251,191,36,0.2); color: rgba(255,255,255,0.3);
    box-shadow: none;
}
.compare-tray__clear {
    background: none; border: none; color: #fff;
    font-size: 0.75rem; cursor: pointer; text-align: center;
    transition: color 0.2s;
}
.compare-tray__clear:hover { color: var(--neon-pink); }

/* ---- Comparison Result Cards ---- */
.compare-result {
    margin-bottom: 32px;
    animation: compareReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes compareReveal {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}
.compare-result__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.compare-result__title {
    font-size: 1.2rem; font-weight: 800; color: var(--text-primary);
    letter-spacing: -0.02em;
}
.compare-result__close {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px solid var(--border);
    color: var(--text-muted); padding: 6px 14px; border-radius: 6px;
    font-size: 0.78rem; cursor: pointer; transition: all 0.2s;
}
.compare-result__close:hover { color: var(--text-primary); border-color: var(--text-secondary); }

/* ============================================================
   COMPARE TABLE v2 — Neon Arena Hybrid
   Grouped stats, score circles, row winners, verdict block
   ============================================================ */

/* --- Container --- */
.ct {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.ct-header { border-radius: 14px 14px 0 0; }
.ct-verdict:last-child { border-radius: 0 0 14px 14px; }
.ct-row--cta:last-child { border-radius: 0 0 14px 14px; }

/* --- Grid columns --- */
.ct--2 .ct-header, .ct--2 .ct-row, .ct--2 .ct-section-header { grid-template-columns: 190px 1fr 1fr; }
.ct--3 .ct-header, .ct--3 .ct-row, .ct--3 .ct-section-header { grid-template-columns: 190px 1fr 1fr 1fr; }

/* --- Dynamic title --- */
.compare-result__title .ct-vs {
    display: inline-block;
    font-size: 0.7em; font-weight: 900; color: var(--neon-pink);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 8px; vertical-align: middle;
}

/* ============ HEADER ============ */
.ct-header {
    display: grid;
    position: sticky; top: 0; z-index: 10;
    background: var(--bg-surface);
    border-bottom: 2px solid var(--border);
}

/* Corner cell (VS) */
.ct-corner {
    display: flex; align-items: center; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.04);
}
.ct-corner__vs {
    font-size: 1.1rem; font-weight: 900; color: var(--neon-pink);
    letter-spacing: 0.1em; opacity: 0.5;
}

/* Game columns */
.ct-game {
    display: flex; flex-direction: column; align-items: stretch;
    text-align: center; position: relative;
    border-left: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}
.ct-game--winner {
    background: rgba(139,92,246,0.04);
}
.ct-game--winner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--neon-green));
    z-index: 2;
}

/* Crown */
.ct-game__crown {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%); z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(251,191,36,0.4));
}

/* Thumbnail */
.ct-game__thumb {
    width: 100%; aspect-ratio: 16/9; overflow: hidden;
    position: relative;
}
.ct-game__thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.3s, filter 0.3s;
}
.ct-game:hover .ct-game__thumb img {
    transform: scale(1.03); filter: brightness(1.08);
}
.ct-game--winner .ct-game__thumb::after {
    content: ''; position: absolute; inset: 0;
    box-shadow: inset 0 -3px 0 rgba(139,92,246,0.5);
}

/* Game info + score */
.ct-game__info {
    padding: 12px 12px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ct-game__name {
    font-size: 0.92rem; font-weight: 800; color: var(--text-primary);
    line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 100%;
}
.ct-game__provider {
    font-size: 0.68rem; color: var(--text-secondary); font-weight: 500;
}

/* Score circle */
.ct-score {
    position: relative; width: 64px; height: 64px;
    margin: -36px auto 4px; z-index: 2;
}
.ct-score__ring {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.ct-score__ring circle:first-child { fill: var(--bg-surface); }
.ct-score__progress {
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4,0,0.2,1);
}
.ct-score__num {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.0rem; font-weight: 900;
    font-variant-numeric: tabular-nums;
}

/* ============ SECTION HEADERS ============ */
.ct-section-header {
    display: grid;
    background: rgba(139,92,246,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ct-section-header__label {
    padding: 10px 20px;
    font-size: 0.72rem; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 8px;
}
.ct-section-header__label svg { opacity: 0.7; }
.ct-section-header__spacer { }

/* ============ STAT ROWS ============ */
.ct-body { padding: 0; }
.ct-row {
    display: grid; align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s;
    animation: ctRowReveal 0.4s cubic-bezier(0.16,1,0.3,1) both;
    animation-delay: var(--row-delay, 0ms);
}
.ct-row:has(.ct-info:hover),
.ct-row:has(.ct-info:focus) {
    z-index: 11;
}
@keyframes ctRowReveal {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}
.ct-row:hover {
    background: rgba(255,255,255,0.025);
}
.ct-row--even {
    background: rgba(255,255,255,0.015);
}
.ct-row--even:hover {
    background: rgba(255,255,255,0.04);
}

/* Label cell */
.ct-label {
    padding: 14px 20px;
    border-right: 1px solid rgba(255,255,255,0.04);
}
.ct-label__text {
    font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75);
    display: inline-flex; align-items: center; gap: 4px;
}

/* Info tooltip on labels */
.ct-info {
    position: relative; display: inline-flex; align-items: center;
    color: rgba(255,255,255,0.3); cursor: help;
    vertical-align: super; margin-left: 2px;
    transition: color 0.2s;
}
.ct-info:hover, .ct-info:focus { color: var(--accent); outline: none; }
.ct-info__tip {
    position: absolute; left: 50%; bottom: calc(100% + 10px);
    transform: translateX(-50%); width: 240px;
    padding: 12px 14px; border-radius: 10px;
    background: var(--bg-elevated); border: 1px solid rgba(251,191,36,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 400;
    line-height: 1.5; white-space: normal; text-align: left;
    pointer-events: none; opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(4px);
    z-index: 9999;
}
.ct-info__tip::after {
    content: ''; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: #1e2045;
}
.ct-info:hover .ct-info__tip,
.ct-info:focus .ct-info__tip {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.ct-label--sub {
    padding-left: 32px;
}
.ct-label--sub .ct-label__text { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* Value cell */
.ct-cell {
    padding: 14px 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 700; color: var(--text-primary);
    min-height: 50px;
    border-left: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
    position: relative;
}
.ct-cell--best {
    background: rgba(16,185,129,0.05);
}
.ct-cell--worst {
    /* subtle, not too aggressive */
}

/* Value with optional bar */
.ct-val-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%;
}
.ct-val {
    font-variant-numeric: tabular-nums;
    display: flex; align-items: center; gap: 6px;
}
.ct-val--best { color: var(--neon-green); font-weight: 800; }
.ct-val--worst { color: rgba(244,114,182,0.6); }
.ct-na { color: rgba(255,255,255,0.3); font-weight: 400; font-style: italic; }

/* Green winner dot */
.ct-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ct-dot--best { background: var(--neon-green); box-shadow: 0 0 6px rgba(16,185,129,0.5); }

/* Mini progress bars */
.ct-bar {
    width: 80%; max-width: 100px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.06); overflow: hidden;
}
.ct-bar__fill {
    height: 100%; border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* Volatility */
.ct-vol-wrap { display: flex; align-items: center; gap: 8px; }
.ct-vol-text { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.vol-bar { display: flex; gap: 3px; align-items: center; }
.vol-bar__seg {
    width: 10px; height: 16px; border-radius: 2px;
    background: rgba(255,255,255,0.08);
}
.vol-bar__seg--active { background: var(--accent); }
.vol-bar--high .vol-bar__seg--active { background: var(--neon-pink); }
.vol-bar--medium .vol-bar__seg--active { background: var(--accent); }
.vol-bar--low .vol-bar__seg--active { background: var(--neon-green); }

/* Star rating + numeric */
.ct-rating { display: flex; align-items: center; gap: 8px; }
.ct-rating__num { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.star-rating { display: flex; gap: 1px; }
.star-rating__star { font-size: 0.9rem; color: rgba(255,255,255,0.1); }
.star-rating__star--filled { color: var(--accent); }
.star-rating__star--half { color: var(--accent); opacity: 0.6; }

/* Feature count + checklist */
.ct-cell__feat-count {
    font-size: 0.82rem; font-weight: 600; color: var(--primary);
}
.ct-row--sub .ct-label {
    padding: 8px 20px 8px 36px;
    font-size: 0.75rem; color: var(--text-muted);
}
.ct-check { display: flex; align-items: center; justify-content: center; }
.ct-check--yes { color: var(--neon-green); }
.ct-check--no { color: rgba(255,255,255,0.15); }

/* ============ CTA ROW ============ */
.ct-row--cta {
    border-top: 2px solid var(--border); border-bottom: none;
    padding: 8px 0;
    background: var(--bg-surface);
}
.ct-cta {
    display: inline-block; text-align: center;
    padding: 10px 20px; border-radius: 8px;
    font-size: 0.78rem; font-weight: 700; text-decoration: none;
    color: var(--primary);
    border: 1px solid rgba(139,92,246,0.25);
    background: rgba(139,92,246,0.06);
    transition: all 0.2s;
}
.ct-cta:hover {
    background: rgba(139,92,246,0.15);
    border-color: rgba(139,92,246,0.4);
    color: #fff;
}
.ct-cta--winner {
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(16,185,129,0.15));
    border-color: rgba(16,185,129,0.3);
    color: var(--neon-green);
}
.ct-cta--winner:hover {
    background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(16,185,129,0.25));
    border-color: rgba(16,185,129,0.5);
    color: #fff;
}

/* ============ VERDICT BLOCK ============ */
.ct-verdict {
    margin-top: 0;
    padding: 40px 32px 44px;
    background: linear-gradient(180deg, rgba(139,92,246,0.05) 0%, rgba(16,185,129,0.03) 100%);
    border-top: 2px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    animation: ctVerdictReveal 0.5s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes ctVerdictReveal {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}
.ct-verdict__icon {
    font-size: 2.4rem; margin-bottom: 14px;
    line-height: 1;
}
.ct-verdict__title {
    font-size: 1.25rem; font-weight: 800; color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em; text-align: center;
}
.ct-verdict__text {
    font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7;
    max-width: 460px; text-align: center;
    margin-bottom: 28px;
}
.ct-verdict__list {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 32px;
    text-align: left;
}
.ct-verdict__list li {
    font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.5;
    padding-left: 24px; position: relative;
}
.ct-verdict__list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px rgba(16,185,129,0.45);
}
.ct-verdict__cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 36px; border-radius: 10px;
    font-size: 0.92rem; font-weight: 700; text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border: 1px solid rgba(139,92,246,0.4);
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(139,92,246,0.25);
}
.ct-verdict__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139,92,246,0.4);
    filter: brightness(1.1);
}

/* ============ RESPONSIVE: TABLET ============ */
@media (max-width: 768px) {
    .ct--2 .ct-header, .ct--2 .ct-row, .ct--2 .ct-section-header { grid-template-columns: 120px 1fr 1fr; }
    .ct--3 .ct-header, .ct--3 .ct-row, .ct--3 .ct-section-header { grid-template-columns: 120px 1fr 1fr 1fr; }

    .ct-label { padding: 12px 14px; }
    .ct-label__text { font-size: 0.78rem; }
    .ct-cell { font-size: 0.84rem; padding: 12px 8px; min-height: 44px; }
    .ct-game__name { font-size: 0.78rem; }
    .ct-game__provider { font-size: 0.6rem; }
    .ct-game__info { padding: 8px 8px 12px; }
    .ct-score { width: 52px; height: 52px; margin-top: -28px; }
    .ct-score__ring { width: 52px; height: 52px; }
    .ct-score__num { font-size: 0.85rem; }
    .ct-game__crown svg { width: 16px; height: 16px; }
    .ct-section-header__label { font-size: 0.62rem; padding: 8px 14px; }
    .ct-verdict { padding: 20px 16px; }
    .ct-verdict__title { font-size: 1.0rem; }

    .compare-tray__inner {
        padding: 14px 16px 18px; gap: 10px;
        flex-wrap: wrap; justify-content: center;
    }
    .compare-tray__label { margin-bottom: 4px; width: 100%; text-align: center; }
    .compare-tray__slot { width: 64px; height: 42px; }
    .compare-tray__btn { padding: 10px 20px; font-size: 0.82rem; }
    .compare-tray__vs { font-size: 0.65rem; }
    .compare-tray__slot--optional,
    .compare-tray__vs--3rd { display: flex; }
    .compare-tray__actions { width: 100%; }
    .compare-tray__btn { width: 100%; justify-content: center; }
}

/* ============ RESPONSIVE: MOBILE ============ */
@media (max-width: 480px) {
    .ct--2 .ct-header, .ct--2 .ct-row, .ct--2 .ct-section-header { grid-template-columns: 90px 1fr 1fr; }
    .ct--3 .ct-header, .ct--3 .ct-row, .ct--3 .ct-section-header { grid-template-columns: 90px 1fr 1fr 1fr; }

    /* Horizontal scroll for 3 slots */
    .ct--3 { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .ct--3 .ct-header, .ct--3 .ct-row, .ct--3 .ct-section-header {
        min-width: 520px;
    }
    .ct--3 .ct-label, .ct--3 .ct-section-header__label { position: sticky; left: 0; z-index: 2; background: var(--bg-elevated); }
    .ct--3 .ct-row--even .ct-label { background: rgba(18,20,42,0.98); }
    .ct--3 .ct-section-header .ct-section-header__label { background: rgba(139,92,246,0.04); }

    .ct-corner__vs { font-size: 0.85rem; }
    .ct-label { padding: 10px 10px; }
    .ct-label__text { font-size: 0.72rem; }
    .ct-label--sub { padding-left: 22px; }
    .ct-cell { font-size: 0.75rem; padding: 10px 6px; min-height: 40px; }
    .ct-val--best { font-size: 0.85rem; }
    .ct-dot { width: 5px; height: 5px; }
    .ct-bar { max-width: 60px; }
    .vol-bar__seg { width: 7px; height: 12px; }
    .ct-vol-text { font-size: 0.6rem; }
    .ct-score { width: 44px; height: 44px; margin-top: -24px; }
    .ct-score__ring { width: 44px; height: 44px; }
    .ct-score__num { font-size: 0.75rem; }
    .ct-game__name { font-size: 0.68rem; }
    .ct-game__info { padding: 6px 4px 10px; }
    .ct-game__crown svg { width: 14px; height: 14px; }
    .ct-section-header__label { font-size: 0.58rem; padding: 6px 10px; }
    .ct-cta { padding: 8px 12px; font-size: 0.7rem; }
    .ct-verdict { padding: 16px 12px; }
    .ct-verdict__title { font-size: 0.9rem; }
    .ct-verdict__cta { padding: 10px 20px; font-size: 0.8rem; }
    .ct-check svg { width: 12px; height: 12px; }
    .compare-tray__slot { width: 56px; height: 38px; }
}

/* ============================================================
   GAME DETAIL PAGE
   ============================================================ */

/* Layout containment */
.game-detail-inner { max-width: 1100px; margin: 0 auto; }

/* Demo explainer box */
.demo-explainer {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px; margin-bottom: 20px;
    background: rgba(52,211,153,0.06);
    border: 1px solid rgba(52,211,153,0.15);
    border-radius: var(--radius-md, 10px);
    font-size: 0.88rem; color: var(--text-secondary);
    line-height: 1.5;
}
.demo-explainer__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.demo-explainer strong { color: var(--text-primary); }

/* Demo overlay (fullscreen modal) */
/* ============================================================
   DEMO OVERLAY — Gallery Frame (Variant A)
   ============================================================ */
.demo-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.demo-overlay__wrap {
    width: 100%; max-width: 92vw;
    max-height: 92vh; max-height: 92dvh;
    display: flex; flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

/* Header */
.demo-overlay__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; height: 44px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.demo-overlay__header-left {
    display: flex; align-items: center; gap: 10px;
}
.demo-overlay__logo {
    font-size: 0.8rem; font-weight: 800; color: var(--text-primary);
    letter-spacing: -0.02em;
}
.demo-overlay__logo span { color: var(--primary); }
.demo-overlay__sep {
    width: 1px; height: 18px; background: var(--border);
}
.demo-overlay__game-name {
    font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 240px;
}
.demo-overlay__header-right {
    display: flex; align-items: center; gap: 12px;
}
.demo-overlay__timer {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}
.demo-overlay__timer-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--neon-green); flex-shrink: 0;
}
.demo-overlay__timer.warning { color: var(--accent); }
.demo-overlay__timer.warning .demo-overlay__timer-dot { background: var(--accent); }
.demo-overlay__timer.critical { color: var(--danger); }
.demo-overlay__timer.critical .demo-overlay__timer-dot {
    background: var(--danger); animation: timer-pulse 1s ease-in-out infinite;
}
/* Header CTA — hidden by default, shown in landscape on small screens */
.demo-overlay__header-cta-wrap {
    display: none; /* shown via landscape media query */
}
.demo-overlay__header-cta {
    display: inline-flex;
    padding: 4px 12px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), #e6a817);
    color: #000; font-size: 0.65rem; font-weight: 800;
    text-decoration: none; white-space: nowrap;
    letter-spacing: 0.01em;
    transition: all 0.2s;
}
.demo-overlay__header-cta:hover { transform: scale(1.05); box-shadow: 0 0 16px rgba(251,191,36,0.4); }

.demo-overlay__close {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary); cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 8px;
    transition: all 0.2s; flex-shrink: 0;
}
.demo-overlay__close:hover {
    background: rgba(248,113,113,0.15); border-color: rgba(248,113,113,0.4);
    color: #f87171;
}
.demo-overlay__expand {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary); cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 8px;
    transition: all 0.2s; flex-shrink: 0;
}
.demo-overlay__expand:hover { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.4); color: var(--primary); }
/* Fullscreen mode — game fills entire viewport, header + casinos hidden */
.demo-overlay--fullscreen-mode { align-items: stretch !important; padding: 0 !important; }
.demo-overlay--fullscreen-mode .demo-overlay__wrap {
    max-width: 100vw; max-height: 100vh; max-height: 100dvh;
    height: 100vh; height: 100dvh;
    border-radius: 0;
}
.demo-overlay--fullscreen-mode .demo-overlay__header,
.demo-overlay--fullscreen-mode .demo-overlay__progress,
.demo-overlay--fullscreen-mode .demo-overlay__casinos { display: none !important; }
.demo-overlay--fullscreen-mode .demo-overlay__content {
    aspect-ratio: unset !important; flex: 1 1 0; min-height: 0;
}
/* Floating controls shown only in fullscreen */
.demo-overlay__float-controls {
    display: none;
    position: absolute; top: 12px; right: 12px; z-index: 10;
    gap: 8px;
}
.demo-overlay--fullscreen-mode .demo-overlay__float-controls { display: flex; }
.demo-overlay__float-btn {
    width: 38px; height: 38px; border-radius: 8px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85); transition: all 0.2s;
}
.demo-overlay__float-btn:hover { background: rgba(0,0,0,0.8); color: #fff; }
.demo-overlay__float-btn--close:hover { background: rgba(220,38,38,0.6); }
@keyframes timer-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Progress bar */
.demo-overlay__progress { height: 2px; background: rgba(255,255,255,0.04); flex-shrink: 0; }
.demo-overlay__progress-fill {
    height: 100%; width: 100%; background: var(--neon-green);
    transition: width 1s linear, background-color 0.5s;
}
.demo-overlay__progress-fill.warning { background: var(--accent); }
.demo-overlay__progress-fill.critical { background: var(--danger); }

/* Game frame */
.demo-overlay__content {
    position: relative; background: #000;
    flex: 1; min-height: 0;
    aspect-ratio: 16/9;
}
.demo-overlay__iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.demo-overlay__fake-game { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #000; }

/* Live Casino CTA inside demo overlay */
.live-casino-cta {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; height: 100%; padding: 32px 24px; text-align: center;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f1d32 100%);
}
.live-casino-cta__icon { font-size: 3rem; margin-bottom: 12px; }
.live-casino-cta__title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.live-casino-cta__text { font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 28px; line-height: 1.6; }
.live-casino-cta__casinos { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 640px; }
.live-casino-cta__casino {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 16px 20px; text-decoration: none; color: #fff;
    transition: background 0.2s, transform 0.2s; min-width: 160px; flex: 1;
}
.live-casino-cta__casino:hover { background: rgba(108,92,231,0.2); transform: translateY(-2px); }
.live-casino-cta__logo { max-height: 36px; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.live-casino-cta__name { font-weight: 700; font-size: 0.9rem; }
.live-casino-cta__bonus { font-size: 0.72rem; color: var(--neon-green); font-weight: 600; }
.live-casino-cta__btn {
    font-size: 0.78rem; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, var(--primary), #EC4899);
    padding: 6px 16px; border-radius: 20px; white-space: nowrap;
}
.demo-overlay__watermark {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 4.5rem; font-weight: 900; color: rgba(255,255,255,0.03);
    letter-spacing: 0.4em; pointer-events: none; user-select: none;
}

/* Expired overlay */
.demo-overlay__expired {
    position: absolute; inset: 0;
    background: rgba(10,12,20,0.88);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    text-align: center; padding: 32px;
    z-index: 3;
}
.demo-overlay__expired-icon { font-size: 2.5rem; }
.demo-overlay__expired-title {
    font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: var(--text-primary);
    letter-spacing: -0.03em; line-height: 1.15;
}
.demo-overlay__expired-text {
    font-size: 0.9rem; color: var(--text-secondary);
    max-width: 380px; line-height: 1.5;
}
.btn-cta--lg {
    padding: 16px 40px; font-size: 1.05rem; border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(251,191,36,0.3);
}
.btn-cta--lg:hover {
    box-shadow: 0 8px 36px rgba(251,191,36,0.4);
}

/* Casino section — below game frame */
.demo-overlay__casinos {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    flex-shrink: 0;
}
.demo-overlay__casinos-bridge {
    font-size: 0.92rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 12px;
}
.demo-overlay__casinos-bridge-game {
    color: var(--accent);
}
.demo-overlay__casinos-row {
    display: flex; gap: 10px;
}

/* Individual casino card */
.demo-overlay__casino {
    flex: 1; min-width: 0;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}
.demo-overlay__casino:hover {
    border-color: var(--primary);
    background: rgba(139,92,246,0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.demo-overlay__casino-logo {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--bg-surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 900; color: var(--primary);
    flex-shrink: 0; overflow: hidden;
}
.demo-overlay__casino-logo img {
    width: 100%; height: 100%; object-fit: contain; padding: 4px;
}
.demo-overlay__casino-info { flex: 1; min-width: 0; }
.demo-overlay__casino-name {
    font-size: 0.82rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 2px;
}
.demo-overlay__casino-bonus {
    font-size: 0.7rem; font-weight: 500; color: var(--neon-green);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.demo-overlay__casino-cta {
    flex-shrink: 0; padding: 8px 16px; border-radius: 8px;
    font-size: 0.74rem; font-weight: 700; white-space: nowrap;
    background: var(--primary); color: #fff;
    transition: all 0.2s;
}
.demo-overlay__casino:first-child .demo-overlay__casino-cta {
    background: linear-gradient(135deg, var(--accent), #D97706);
    color: #000;
}
.demo-overlay__casino:hover .demo-overlay__casino-cta {
    box-shadow: 0 4px 12px rgba(139,92,246,0.3);
}
.demo-overlay__casino:first-child:hover .demo-overlay__casino-cta {
    box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}
/* Pulse + sparkles on first casino CTA */
.demo-overlay__casino:first-child .demo-overlay__casino-cta {
    animation: demo-casino-pulse 2s ease-in-out infinite;
}
@keyframes demo-casino-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(251,191,36,0.15); }
    50% { transform: scale(1.04); box-shadow: 0 0 18px rgba(251,191,36,0.4); }
}

/* Hero media: main image + thumbnail gallery */
.game-hero__main-img {
    display: block; width: 100%; height: 100%; padding: 0; border: none;
    background: none; cursor: pointer;
}
.game-hero__main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-hero__thumbs {
    display: flex; gap: 8px;
}
.game-hero__thumb-btn {
    flex: 0 0 calc((100% - 24px) / 4);
    border-radius: var(--radius-sm, 8px); overflow: hidden;
    border: 2px solid transparent;
    background: var(--bg-elevated, #161628); cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, opacity 0.25s;
    padding: 0; opacity: 0.6;
}
.game-hero__thumb-btn:hover { opacity: 1; }
.game-hero__thumb-btn.active {
    border-color: var(--primary, #a855f7);
    box-shadow: 0 0 12px rgba(168,85,247,0.25);
    opacity: 1;
}
.game-hero__thumb-btn img {
    width: 100%; height: 60px; object-fit: cover; display: block;
}
.game-hero__thumb-placeholder {
    flex: 0 0 calc((100% - 24px) / 4);
    border-radius: var(--radius-sm, 8px);
    border: 2px solid rgba(251,191,36,0.35);
    background: var(--bg-elevated, #161628);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.pagination {
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid var(--border);
}
.pagination .nav-links {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; flex-wrap: wrap;
}
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 12px;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.pagination a.page-numbers:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: rgba(139,92,246,0.1);
}
.pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    border-color: transparent;
    color: #fff;
    cursor: default;
}
.pagination .page-numbers.dots {
    border: none; background: none;
    color: var(--text-muted); cursor: default;
    min-width: 28px; padding: 0;
}
.pagination .next,
.pagination .prev {
    font-size: 1.1rem;
}

/* Where to Play — card grid */
.wtp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.wtp-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 24px 20px 20px; text-align: center;
    background: var(--bg-glass, rgba(255,255,255,0.03));
    border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: var(--radius-lg, 12px);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.wtp-card:hover {
    border-color: var(--primary-border, rgba(168,85,247,0.35));
    box-shadow: 0 8px 32px rgba(168,85,247,0.1);
    transform: translateY(-2px);
}
.wtp-card--featured {
    border-color: rgba(251,191,36,0.25);
    background: linear-gradient(135deg, rgba(251,191,36,0.04), rgba(251,191,36,0.01));
}
.wtp-card--featured:hover {
    border-color: rgba(251,191,36,0.45);
    box-shadow: 0 8px 32px rgba(251,191,36,0.12);
}
.wtp-card__logo {
    width: 72px; height: 72px; margin-bottom: 14px;
    border-radius: 50%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-elevated, #161628);
    border: 1px solid var(--border, rgba(255,255,255,0.06));
}
.wtp-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.wtp-card__initials {
    font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary, #a855f7), var(--neon-pink, #ec4899));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wtp-card__name {
    font-size: 1rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 6px;
}
.wtp-card__bonus {
    font-size: 0.82rem; color: var(--text-secondary);
    margin-bottom: 14px; line-height: 1.4;
}
.wtp-card__cta { margin-top: auto; }

/* How to Play */
.how-to-play__steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-bottom: 16px;
}
.how-to-play__step {
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px;
    font-size: 0.88rem; line-height: 1.65; color: var(--text-secondary);
    position: relative;
}
.how-to-play__step strong { color: var(--text-primary); display: block; margin-bottom: 4px; }
.how-to-play__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary); color: #fff;
    font-size: 0.78rem; font-weight: 800; margin-bottom: 10px;
}
.how-to-play__tip {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
    padding: 12px 16px; background: rgba(139,92,246,0.06);
    border-left: 3px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Pros & Cons */
.pros-cons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.pros-cons__col {
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px; overflow: hidden;
}
.pros-cons__col--pro { border-top: 3px solid var(--neon-green); }
.pros-cons__col--con { border-top: 3px solid #ef4444; }
.pros-cons__header {
    font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 12px; color: var(--text-primary);
    display: flex; align-items: center; gap: 6px;
}
.pros-cons__col--pro .pros-cons__icon { color: var(--neon-green); }
.pros-cons__col--con .pros-cons__icon { color: #ef4444; }
.pros-cons__col ul { list-style: none; padding: 0; margin: 0; }
.pros-cons__col li {
    padding: 8px 0 8px 20px; position: relative;
    font-size: 0.88rem; line-height: 1.55; color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pros-cons__col li:last-child { border-bottom: none; }
.pros-cons__col--pro li::before {
    content: '\2713'; position: absolute; left: 0; color: var(--neon-green); font-weight: 700;
}
.pros-cons__col--con li::before {
    content: '\2717'; position: absolute; left: 0; color: #ef4444; font-weight: 700;
}

/* Feature Tags */
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag {
    display: inline-flex; align-items: center;
    padding: 6px 14px; border-radius: var(--radius-full);
    background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2);
    font-size: 0.78rem; font-weight: 600; color: var(--primary-hover, #a78bfa);
    transition: background 0.2s, border-color 0.2s;
}
.feature-tag:hover { background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.35); }

/* Video Embed */
.video-embed {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: var(--radius); background: var(--bg-surface);
    border: 1px solid var(--border);
}
.video-embed iframe, .video-embed lite-youtube {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: none; border-radius: var(--radius);
}

/* Tag Clouds */
.tag-cloud { margin-bottom: 20px; }
.tag-cloud:last-child { margin-bottom: 0; }
.tag-cloud__label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 10px;
}
.tag-cloud__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud__tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-full);
    background: var(--bg-surface); border: 1px solid var(--border);
    font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tag-cloud__tag:hover { border-color: var(--primary); color: var(--primary); background: rgba(139,92,246,0.06); }
.tag-cloud__count {
    font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
    background: rgba(255,255,255,0.05); padding: 1px 6px; border-radius: 20px;
}

/* Similar games — 4-col grid using game-card */
.game-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lightbox-overlay__close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: #fff;
    font-size: 2.4rem; cursor: pointer; opacity: 0.7;
    transition: opacity 0.2s; line-height: 1; padding: 8px;
}
.lightbox-overlay__close:hover { opacity: 1; }
.lightbox-overlay__prev,
.lightbox-overlay__next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: none; color: #fff;
    font-size: 2.4rem; cursor: pointer; padding: 12px 16px;
    border-radius: var(--radius-md, 10px);
    opacity: 0.6; transition: opacity 0.2s, background 0.2s;
}
.lightbox-overlay__prev:hover,
.lightbox-overlay__next:hover { opacity: 1; background: rgba(255,255,255,0.14); }
.lightbox-overlay__prev { left: 16px; }
.lightbox-overlay__next { right: 16px; }
.lightbox-overlay__img-wrap {
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-overlay__img {
    max-width: 100%; max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ============================================================
   BEST-OF LIST PAGES
   ============================================================ */

/* Hero */
.best-of-hero {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 0 32px;
}
.best-of-hero__icon {
    font-size: 2.8rem; line-height: 1;
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: var(--radius); flex-shrink: 0;
}
.best-of-hero__title {
    font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900;
    color: var(--text-primary); line-height: 1.15;
    letter-spacing: -0.02em; margin: 0;
}
.best-of-hero__meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--text-muted); margin-top: 6px;
}
.best-of-hero__sep { opacity: 0.4; }
.best-of-hero__count {
    background: var(--primary); color: #fff;
    padding: 2px 10px; border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.72rem;
}

/* Intro */
.best-of-intro {
    font-size: 1.02rem; line-height: 1.75; color: var(--text-secondary);
}
.best-of-intro p { margin-bottom: 12px; }
.best-of-intro strong { color: var(--text-primary); }

/* Ranked Cards */
.best-of-card {
    display: grid; grid-template-columns: auto 180px 1fr;
    gap: 0 20px; align-items: center;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 24px;
    margin-bottom: 12px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.best-of-card:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 4px 24px rgba(139,92,246,0.08);
}
.best-of-card--top {
    border-color: rgba(251,191,36,0.25);
    background: linear-gradient(135deg, var(--bg-surface), rgba(251,191,36,0.03));
}
.best-of-card--top:hover {
    border-color: rgba(251,191,36,0.45);
    box-shadow: 0 4px 24px rgba(251,191,36,0.1);
}

.best-of-card__rank {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; min-width: 48px;
}
.best-of-card__medal { font-size: 1.6rem; line-height: 1; }
.best-of-card__number {
    font-size: 1.1rem; font-weight: 800; color: var(--text-muted);
    letter-spacing: -0.02em;
}
.best-of-card--top .best-of-card__number { color: var(--accent); }

.best-of-card__image {
    border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 4/3; background: var(--bg-elevated);
}
.best-of-card__image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.3s;
}
.best-of-card__image:hover img { transform: scale(1.05); }

.best-of-card__body { min-width: 0; }
.best-of-card__header { margin-bottom: 10px; }
.best-of-card__title {
    font-size: 1.15rem; font-weight: 800; color: var(--text-primary);
    text-decoration: none; display: block; line-height: 1.25;
}
.best-of-card__title:hover { color: var(--primary); }
.best-of-card__provider {
    font-size: 0.75rem; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.05em;
}

.best-of-card__stats {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
}
.best-of-card__stat {
    display: flex; align-items: center; gap: 5px;
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 4px 10px;
    font-size: 0.72rem;
}
.best-of-card__stat-label {
    color: var(--text-muted); font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.04em;
}
.best-of-card__stat-value { color: var(--text-primary); font-weight: 700; }
.best-of-card__stat-value--green { color: var(--neon-green); }

.best-of-card__excerpt {
    font-size: 0.88rem; line-height: 1.6; color: var(--text-secondary);
    margin: 0 0 12px;
}

.best-of-card__actions { display: flex; gap: 8px; }

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border-radius: var(--radius); border: 1px solid var(--border);
}
.comparison-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.85rem; white-space: nowrap;
}
.comparison-table thead {
    background: var(--bg-elevated);
}
.comparison-table th {
    padding: 12px 16px; text-align: left;
    font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
.comparison-table td {
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr {
    transition: background 0.15s;
}
.comparison-table tbody tr:hover {
    background: rgba(139,92,246,0.04);
}
.comparison-table__rank {
    font-weight: 800; color: var(--text-muted); text-align: center;
}
.comparison-table__name a {
    color: var(--text-primary); font-weight: 700; text-decoration: none;
}
.comparison-table__name a:hover { color: var(--primary); }
.comparison-table__rtp { color: var(--neon-green); font-weight: 700; }
.comparison-table__link {
    color: var(--primary); font-weight: 700; text-decoration: none;
    font-size: 0.8rem;
}
.comparison-table__link:hover { text-decoration: underline; }

/* Buying Guide */
.best-of-guide h3 { margin-top: 20px; }

/* Responsible Gambling Block */
.rg-block {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}
.rg-block__icon {
    font-size: 1rem; font-weight: 900; color: var(--bg-surface);
    background: var(--accent); border-radius: var(--radius-full);
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.rg-block__text {
    font-size: 0.82rem; line-height: 1.6; color: var(--text-secondary);
}
.rg-block__text strong { color: var(--text-primary); }
.rg-block__text a {
    color: var(--accent); font-weight: 600; text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   AD DISCLOSURE — Affiliate link compliance (UK CAP Code)
   ============================================================ */
/* Wrapper for any CTA that is an affiliate link */
.aff-cta-wrap { position: relative; display: inline-flex; align-items: center; }
.aff-cta-wrap .aff-star {
    position: absolute; top: -2px; right: -8px;
    font-size: 0.62rem; font-weight: 700; color: var(--text-muted);
    line-height: 1; pointer-events: none; z-index: 1;
}
/* Disclosure line beneath a card/section with affiliate links */
.aff-disclosure {
    font-size: 0.62rem; color: var(--text-muted); opacity: 0.6;
    margin-top: 8px; line-height: 1.4; text-align: center;
}
.aff-disclosure a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.aff-disclosure a:hover { color: var(--text-secondary); }

/* Slot stake limits info badge */
.slot-limits-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 500; color: var(--text-muted);
    background: var(--bg-surface); border: 1px solid rgba(251,191,36,0.2);
    border-radius: 8px; padding: 6px 12px; margin-top: 12px;
}
.slot-limits-badge svg { flex-shrink: 0; color: var(--accent); }

/* ============================================================
   GAME DETAIL — RESPONSIVE (new SEO sections)
   ============================================================ */
@media (max-width: 768px) {
    .how-to-play__steps { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .tag-cloud__tags { gap: 6px; }
    .tag-cloud__tag { font-size: 0.72rem; padding: 5px 10px; }
}
@media (max-width: 480px) {
    .how-to-play__step { padding: 16px; }
    .feature-tags { gap: 6px; }
    .feature-tag { font-size: 0.72rem; padding: 5px 10px; }
}

/* ── Bonus Features Section ── */
.bonus-features-intro {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 24px;
}
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.bonus-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.bonus-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card), 0 0 20px rgba(139, 92, 246, 0.08);
}
.bonus-card--highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(244, 114, 182, 0.05));
    border-color: rgba(139, 92, 246, 0.15);
}
.bonus-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.bonus-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.bonus-card__icon--spins   { background: rgba(139, 92, 246, 0.15); }
.bonus-card__icon--multi   { background: rgba(251, 191, 36, 0.15); }
.bonus-card__icon--wild    { background: rgba(52, 211, 153, 0.15); }
.bonus-card__icon--scatter { background: rgba(56, 189, 248, 0.15); }
.bonus-card__icon--bonus   { background: rgba(244, 114, 182, 0.15); }
.bonus-card__icon--cascade { background: rgba(251, 146, 60, 0.15); }
.bonus-card__name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    line-height: 1.3;
}
.bonus-card--highlight .bonus-card__name {
    font-size: 0.82rem;
}
.bonus-card__tag {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}
.bonus-card__text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.bonus-card__text strong { color: var(--text-primary); font-weight: 600; }
@media (max-width: 768px) {
    .bonus-grid { grid-template-columns: 1fr; gap: 16px; }
    .bonus-card { padding: 24px; border-radius: 16px; }
    .bonus-card--highlight { grid-column: 1; }
}
@media (max-width: 480px) {
    .bonus-card { padding: 20px 16px; }
}

/* ── Inline CTA (reusable, centered layout) ── */
.inline-cta {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(244, 114, 182, 0.04));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius);
    text-align: center;
}
.inline-cta__text {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
}
.inline-cta__text strong { color: var(--text-primary); }
.inline-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--accent);
    color: #0A1628;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 2px 16px rgba(251, 191, 36, 0.3);
}
.inline-cta__btn:hover {
    background: #FCD34D;
    color: #0A1628;
    transform: translateY(-1px);
}
.inline-cta__game {
    color: #fff;
    font-weight: 900;
    padding: 0 3px;
}
.inline-cta__btn:hover .inline-cta__game { color: #fff; }
.inline-cta__fine {
    display: block;
    margin-top: 8px;
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── Sticky CTA Bar (fixed, flush below header) ── */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: var(--header-h, 64px) 24px 0;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
    .sticky-cta { transition: none; }
}
.sticky-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-cta__info {
    min-width: 0;
    text-align: left;
}
.sticky-cta__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.sticky-cta .btn-cta--gradient {
    animation: demo-cta-pulse 2s ease-in-out infinite;
}
.sticky-cta .btn-cta--gradient:hover {
    animation: none;
}
.sticky-cta__disc {
    font-size: 0.64rem;
    color: var(--text-muted);
    white-space: nowrap;
}
@media (max-width: 640px) {
    .sticky-cta__info { display: none; }
    .sticky-cta__disc { display: none; }
    .sticky-cta__inner { justify-content: center; }
    .sticky-cta__btn { flex: 1; justify-content: center; }
}

/* ============================================================
   GAME RATING WIDGET
   ============================================================ */
.game-rating-widget { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.game-rating-widget__stars { display: flex; gap: 2px; user-select: none; align-items: center; }
.gr-star { font-size: 1.4rem; color: var(--text-muted); transition: color .15s, transform .15s; line-height: 1; }
.gr-star--active { color: #fbbf24; }

.game-rating-widget__stars--interactive { cursor: pointer; }
.game-rating-widget__stars--interactive .gr-star:hover,
.game-rating-widget__stars--interactive .gr-star:hover ~ .gr-star { transform: scale(1.1); }
.game-rating-widget__stars--interactive .gr-star:hover { color: #fbbf24; }

.game-rating-widget__info { display: none; }

.game-rating-widget__status { font-size: .65rem; color: var(--text-muted); transition: color .2s; }
.game-rating-widget__status--preview { color: #fbbf24; font-weight: 600; }
.game-rating-widget__status--saving { color: var(--text-muted); }
.game-rating-widget__status--voted { color: var(--success, #22c55e); font-weight: 600; }
.game-rating-widget__status--error { color: var(--danger, #ef4444); }
