﻿.privacy-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,0,127,.07), transparent 70%);
}

.privacy-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: .75rem;
}

.privacy-hero .meta {
    font-size: .85rem;
    color: #4a4a6a;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* LAYOUT */
.privacy-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 2.5rem;
    max-width: 980px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    align-items: start;
}

/* TOC */
.privacy-toc {
    position: sticky;
    top: 80px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    height: auto;
    z-index: 99;
}

.privacy-toc h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 1rem;
    position: absolute;
    top: 15px;
    left: 20px;
}

.privacy-toc ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    margin-top: 20px;
}

.privacy-toc ol li {
    counter-increment: toc;
    margin-bottom: .5rem;
}

.privacy-toc ol li::before {
    content: counter(toc) ". ";
    color: var(--neon-purple);
    font-family: 'Orbitron', sans-serif;
    font-size: .65rem;
    font-weight: 700;
}

.privacy-toc a {
    font-size: .82rem;
    color: #8080b3;
    text-decoration: none;
    transition: color .2s;
}

.privacy-toc a:hover {
    color: #fff;
}

@media (max-width: 720px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
        margin: 2rem auto 3rem;
    }

    .privacy-toc {
        position: static;
        top: auto;
    }

    .privacy-hero {
        padding: 3rem 1.25rem 2rem;
    }
}

.privacy-content {
    text-align: justify;
}

/* CONTENT */
.privacy-content section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.privacy-content section:last-child {
    border-bottom: none;
}

.privacy-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
    margin-bottom: 1rem;
}

.privacy-content p {
    color: #8c8cb3;
    margin-bottom: .9rem;
    font-size: .97rem;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: .9rem;
}

.privacy-content ul li {
    color: #8c8cb3;
    font-size: .95rem;
    padding: .25rem 0 .25rem 1.4rem;
    position: relative;
}

.privacy-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.highlight-box {
    background: rgba(0,245,255,.05);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    color: #a6a6d3;
    font-size: .92rem;
}
