.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-header .subtitle {
    color: #000;
    font-size: 1.1rem;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-section p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #000;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    color: #000;
    margin-bottom: 10px;
}

.legal-section strong {
    color: #000;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    margin-top: 40px;
}

.discord-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.discord-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 20px;
    }
}
