/**
 * NEXUSPRIME | GUIDELINES MODULE STYLES (NPSP v13.5)
 */

.nx-sober-container {
    padding: 120px 20px 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

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

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

.nx-legal-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 3.5rem;
    font-weight: 950;
    letter-spacing: -2px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.nx-legal-main-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nx-legal-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.nx-legal-section:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.nx-legal-sec-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.nx-legal-sec-title em {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
    color: var(--accent-gold);
}

.nx-legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.nx-legal-list {
    list-style: none;
    padding-left: 0;
}

.nx-legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dim);
}

.nx-legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.nx-legal-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.nx-btn-sober {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--accent-emerald);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.nx-btn-sober:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .nx-legal-main-title {
        font-size: 2.2rem;
    }
    .nx-legal-section {
        padding: 25px;
    }
}
