/* ── LEGAL PAGES CSS ────────────────────────────────────────────── */

.legal-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-header h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-date {
    color: var(--text-muted);
    font-size: 15px;
}

.legal-content section {
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.legal-content h3 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #e0e0e0;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

.legal-warning {
    background: rgba(255, 166, 0, 0.1);
    border-left: 4px solid #ffa600;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cookie-table th, 
.cookie-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table code {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 14px;
    color: var(--primary);
}

.legal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.legal-footer-links {
    display: flex;
    gap: 24px;
}

.legal-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.legal-footer-links a:hover {
    color: var(--primary);
}
