/* ===== LEGAL PAGES STYLES ===== */

.legal-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    padding-top: 120px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.legal-card {
    width: 100%;
    max-width: 800px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(79, 172, 254, 0.1);
    box-shadow: var(--shadow-card);
    padding: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.legal-card h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-card .last-update {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
}

.legal-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    color: var(--text-secondary);
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-card ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.legal-card a:hover {
    text-decoration: underline;
}

.legal-card strong {
    color: var(--text-primary);
}

/* ===== CONTACT PAGE ===== */

.contact-card {
    text-align: center;
    max-width: 600px;
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

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

.contact-info {
    text-align: left;
    margin-bottom: 40px;
}

.contact-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(79, 172, 254, 0.05);
    border: 1px solid rgba(79, 172, 254, 0.1);
    border-radius: var(--radius-md);
    text-align: left;
}

.contact-note i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-note p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 600px) {
    .legal-card {
        padding: 25px 20px;
    }

    .legal-card h1 {
        font-size: 1.6rem;
    }

    .legal-card h2 {
        font-size: 1.1rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .contact-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .btn-discord {
        width: 100%;
        padding: 16px 30px;
    }
}
