/*
 * Mickey13 Casino — subpage content styles (legal + guide pages)
 * Loaded alongside style.css: reuses header/footer/CTA/token classes from it,
 * only adds the page-body layout below.
 */

.mkpage-masthead {
    padding-top: 56px;
    padding-bottom: 32px;
    max-width: 760px;
}

.mkpage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 16px;
    background: var(--primary-alpha);
    border: 1px solid var(--primary-alpha);
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.mkpage-eyebrow i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: mk13-dot-pulse 1.8s ease-in-out infinite;
}

.mkpage-masthead h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.mkpage-standfirst {
    font-size: 1.063rem;
    color: var(--muted);
    line-height: 170%;
    margin-bottom: 12px;
}

.mkpage-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.mkpage-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 64px;
}

.mkpage-toc {
    position: sticky;
    top: 110px;
    padding: 20px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rad-lg);
}

.mkpage-toc-head {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.mkpage-toc ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mkpage-toc a {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.4;
    display: block;
    transition: color 200ms ease-in-out;
}

.mkpage-toc a:hover {
    color: var(--primary);
}

.mkpage-prose {
    max-width: 720px;
}

.mkpage-prose section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mkpage-prose section.mk13-in {
    opacity: 1;
    transform: translateY(0);
}

.mkpage-prose h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.mkpage-prose p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.mkpage-prose p:last-child {
    margin-bottom: 0;
}

.mkpage-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mkpage-prose ul {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 14px 1.2em;
}

.mkpage-related {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.875rem;
    color: var(--muted);
}

.mkpage-related a {
    color: var(--primary);
}

@media (max-width: 63.9375rem) {
    .mkpage-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mkpage-toc {
        position: static;
        top: auto;
    }

    .mkpage-toc ol {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
}

@media (max-width: 769px) {
    .mkpage-masthead {
        padding-top: 32px;
    }
}
