.splash-body {
    min-height: 100vh;
    background:
        radial-gradient(1200px 560px at 8% -10%, rgba(79, 70, 229, 0.14), transparent 55%),
        radial-gradient(900px 480px at 100% 0%, rgba(14, 165, 233, 0.1), transparent 50%),
        #f4f6fb;
    color: #1e293b;
}

.splash-page {
    padding: 1rem 1rem 2rem;
}

.splash-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.splash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.splash-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.splash-topbar__hint {
    font-size: 0.75rem;
    color: #64748b;
}

.splash-leaderboard,
.splash-footer-ad {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem;
}

.splash-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 992px) {
    .splash-grid {
        grid-template-columns: 300px minmax(0, 1fr);
    }
}

@media (min-width: 1200px) {
    .splash-grid {
        grid-template-columns: 300px minmax(0, 1fr) 300px;
    }
}

.splash-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.splash-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .splash-card__body {
        flex-direction: row;
    }
}

.splash-preview {
    flex: 0 0 auto;
}

.splash-preview__img {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
}

.splash-kicker {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
}

.splash-title {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
}

.splash-description {
    margin: 0;
    color: #64748b;
}

.splash-host {
    margin: 0.75rem 0 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    color: #94a3b8;
    word-break: break-all;
}

.splash-progress {
    height: 6px;
    margin: 1.25rem 0 0;
    overflow: hidden;
    background: #eef2ff;
    border-radius: 999px;
}

.splash-progress > span {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left center;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    animation: splash-drain var(--splash-timer, 8s) linear forwards;
}

@keyframes splash-drain {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.splash-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.splash-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 0.85rem;
    background: #4f46e5;
    color: #fff !important;
    font-weight: 700;
}

.splash-cta:hover {
    background: #4338ca;
    color: #fff !important;
}

.splash-home {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

.splash-inline-ad {
    margin-top: 1.5rem;
}

.splash-disclaimer,
.splash-powered {
    margin: 1.25rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
}

.splash-powered {
    text-align: center;
}

.splash-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ad-slot {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 0.75rem 0.75rem;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            -45deg,
            #fffbeb,
            #fffbeb 8px,
            #fef3c7 8px,
            #fef3c7 16px
        );
    border: 1px dashed rgba(217, 119, 6, 0.55);
    border-radius: 1rem;
}

.ad-slot .a-block {
    margin: 0 !important;
}

.ad-slot__label {
    position: absolute;
    top: 6px;
    left: 8px;
    padding: 1px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #92400e;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ad-slot--728,
.ad-slot--leaderboard { min-height: 90px; }
.ad-slot--468,
.ad-slot--mobile-banner { min-height: 60px; }
.ad-slot--300,
.ad-slot--halfpage { min-height: 250px; }
.ad-slot--splash { min-height: 250px; }
.ad-slot--resp,
.ad-slot--footer { min-height: 90px; }

.splash-inline-ad,
.splash-rail,
.splash-footer-ad,
.splash-leaderboard {
    margin-top: 0.25rem;
}

@media (max-width: 575.98px) {
    .splash-preview__img {
        max-width: 100%;
        height: 140px;
    }

    .splash-topbar__hint {
        display: none;
    }
}
