.legal-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section address {
    font-style: normal;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-muted);
    padding-left: 24px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-weight: 600;
}

.legal-table td {
    color: var(--text-muted);
}

.legal-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.legal-warning {
    background: rgba(255, 59, 48, 0.1);
    border-left: 3px solid #ff3b30;
    padding: 12px 16px;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 12px;
}
.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}
.btn-back {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.btn-back:hover {
    color: var(--gold);
}
.legal-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.legal-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-page .container {
        padding: 0 20px;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px 12px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}