/* ============================================================
   PAGE-LANDING.CSS — SEO landing pages (bonus bez vkladu etc.)
   ============================================================ */

/* Override global section { display:flex } from base.css.
   Landing pages use <section class="rsp-container"> directly without
   a .container child, so the flex centering breaks layout. */
.landing-page section,
.landing-page .landing-editorial,
.oz-page section,
.ca-casinos,
.bp-cs2-section,
.cs2-page section {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}
.landing-page > section:not(.landing-hero),
.oz-page > section:not(.oz-hero) {
    padding-bottom: 24px;
}
.landing-page .rsp-container,
.oz-page .rsp-container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ── Landing hero ────────────────────────────────────────── */
.landing-page {
    padding-top: var(--nav-height);
}

.landing-hero {
    position: relative;
    padding: 64px 0 56px;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 0% 50%, var(--alpha-purple-8) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 100% 20%, var(--alpha-cyan-5) 0%, transparent 65%);
    pointer-events: none;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--alpha-cyan-15) 30%, var(--alpha-purple-15) 70%, transparent);
}

.landing-hero-inner {
    position: relative;
}

.landing-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 20px;
}

.landing-hero h1 span {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 0 32px;
}

.landing-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* ── Bonus grid (casino rows) ────────────────────────────── */
.bonus-grid {
    display: grid;
    gap: 16px;
    margin: 24px 0 40px;
}

.bonus-row {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: border-color .2s, background .2s;
}

.bonus-row:hover {
    border-color: rgba(0, 245, 255, .25);
    background: rgba(0, 245, 255, .03);
}

.bonus-row--featured {
    border-color: rgba(0, 245, 255, .2);
    background: rgba(0, 245, 255, .04);
}

.bonus-row--exclusive {
    border-color: rgba(145, 71, 255, .3);
    background: rgba(145, 71, 255, .05);
}

.bonus-row-rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.bonus-row-rank--top {
    color: var(--neon-cyan);
}

.bonus-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.bonus-row-info {
    flex: 1;
    min-width: 180px;
}

.bonus-row-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.bonus-row-info .bonus-row-amount {
    font-size: .95rem;
    color: var(--neon-cyan);
    font-weight: 700;
}

.bonus-row-info .bonus-row-type {
    font-size: .78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.bonus-row-desc {
    flex: 2;
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    min-width: 160px;
}

.bonus-row-cta {
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Landing editorial content ───────────────────────────── */
.landing-editorial {
    padding: 48px 0;
    max-width: 880px;
}

/* H2 with neon accent bar — replaces the flat "uppercase wall" look so each
   subsection has a clear visual anchor. */
.landing-editorial h2 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 48px 0 18px;
    line-height: 1.3;
    padding-left: 16px;
    border-left: 3px solid var(--neon-cyan);
    text-transform: none;
    letter-spacing: -0.01em;
}

.landing-editorial h2:first-child {
    margin-top: 0;
}

.landing-editorial h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 12px;
    text-transform: none;
}

/* H3 inline cyan dot accent for review headings like "#1 Tokyo Casino…" */
.landing-editorial h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    margin-right: 10px;
    vertical-align: middle;
    transform: translateY(-2px);
}

.landing-editorial p {
    font-size: .98rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Lead paragraph — first <p> after each <h2> gets a slightly larger, lighter
   weight to ease into the section. */
.landing-editorial h2 + p {
    font-size: 1.05rem;
    color: var(--text-primary);
    opacity: 0.92;
}

.landing-editorial ul,
.landing-editorial ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.landing-editorial li {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* Bullet markers in cyan for better visual rhythm */
.landing-editorial ul {
    list-style: none;
    padding-left: 0;
}
.landing-editorial ul li {
    position: relative;
    padding-left: 22px;
}
.landing-editorial ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.7;
}

.landing-editorial strong {
    color: var(--text-primary);
    font-weight: 700;
}

.landing-editorial a {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Inline callout — useful for "Tip:", "Pozor:" highlighted boxes inside
   editorial copy. */
.landing-editorial blockquote,
.landing-editorial .callout {
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 245, 255, .05), rgba(145, 71, 255, .04));
    border-left: 3px solid var(--neon-cyan);
    border-radius: 0 8px 8px 0;
    font-size: .94rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Numbered steps ──────────────────────────────────────── */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.steps-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: .93rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-list li::before {
    content: attr(data-step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 245, 255, .12);
    border: 1px solid rgba(0, 245, 255, .25);
    color: var(--neon-cyan);
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.faq-list details {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
}

.faq-list details[open] {
    border-color: rgba(0, 245, 255, .2);
}

.faq-list summary {
    padding: 14px 18px;
    font-size: .93rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }

.faq-list summary::after {
    content: '+';
    flex-shrink: 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: '\2212';
}

.faq-list details p {
    padding: 0 18px 16px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ── Condition box ───────────────────────────────────────── */
.conditions-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
}

.conditions-box h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.condition-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.condition-item .ci-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.condition-item .ci-value {
    font-size: .9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.condition-item .ci-value--warn {
    color: #fdba74;
}

/* ── Landing disclaimer ──────────────────────────────────── */
.landing-disclaimer {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .82rem;
    color: var(--text-secondary);
    margin-top: 40px;
    line-height: 1.6;
}

/* ── Promo code highlight box ────────────────────────────── */
.promo-highlight {
    background: rgba(145, 71, 255, .08);
    border: 1px solid rgba(145, 71, 255, .25);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-highlight-code {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: .08em;
    background: rgba(0, 245, 255, .08);
    border: 1px dashed rgba(0, 245, 255, .3);
    border-radius: 8px;
    padding: 6px 16px;
    flex-shrink: 0;
}

.promo-highlight-desc {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Hero heading class variants ─────────────────────────── */
.landing-hero-h1,
.landing-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 20px;
}

.landing-hero-h1 span,
.landing-hero-title span {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero subtitle ────────────────────────────────────────── */
.landing-hero-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 0 28px;
}

/* ── CTA button row in hero ────────────────────────────────── */
.landing-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

/* ── Landing badge cyan variant ────────────────────────────── */
.landing-badge--cyan {
    background: rgba(0, 245, 255, .12);
    border-color: rgba(0, 245, 255, .3);
    color: var(--neon-cyan);
}

/* .rsp-btn lives in shared.css (needed on all pages, not just landing) */

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 640px) {
    .bonus-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-row-cta {
        width: 100%;
        margin-left: 0;
    }

    .bonus-row-cta .rsp-btn,
    .bonus-row-cta .btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    .conditions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-hero {
        padding: 40px 0 36px;
    }

    .landing-hero-h1,
    .landing-hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .landing-hero-ctas {
        flex-direction: column;
    }

    .landing-hero-ctas .btn,
    .landing-hero-ctas .rsp-btn {
        width: 100%;
        text-align: center;
    }

    .rsp-btn {
        padding: 11px 20px;
        font-size: .82rem;
    }
}
