/* ============================================================
   DJ LICKSTREAM — Legal Pages (Impressum & Datenschutz)
   ============================================================ */

.legal-page {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.legal-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-mid);
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.75;
    max-width: 680px;
}

/* Content */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
}

.legal-block {
    padding: 36px 0;
    border-bottom: 1px solid var(--gray-mid);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.legal-block h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 24px 0 12px;
}

.legal-block p {
    font-size: 0.93rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block strong {
    color: var(--white);
    font-weight: 600;
}

.legal-block em {
    color: var(--white-dim);
    font-style: italic;
}

.legal-block a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s;
}

.legal-block a:hover {
    color: var(--gold-light);
}

/* Note box */
.legal-note {
    font-size: 0.8rem !important;
    color: var(--white-faint) !important;
    font-style: italic;
    padding: 10px 16px;
    border-left: 2px solid rgba(200, 169, 110, 0.3);
    margin-top: 8px !important;
}

/* List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-list li {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}

.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.legal-list li a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Cookie table */
.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 3px;
    border: 1px solid var(--gray-mid);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.legal-table th {
    background: var(--bg-card);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-mid);
}

.legal-table td {
    padding: 12px 16px;
    color: var(--white-dim);
    border-bottom: 1px solid var(--gray-mid);
    vertical-align: top;
    line-height: 1.5;
}

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

/* Back button */
.legal-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-mid);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: calc(var(--nav-h) + 40px);
        padding-bottom: 72px;
    }

    .legal-title { font-size: 2.2rem; }
    .legal-block  { padding: 28px 0; }
}
