/* assets/css/legal-premium.css */

.legal-premium-page {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top center, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.legal-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header .last-updated {
    font-size: 0.9rem;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 span {
    color: #00d4aa;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    opacity: 0.5;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-section ul li {
    color: #94a3b8;
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.disclaimer-box .icon {
    font-size: 2rem;
    color: #ef4444;
}

.disclaimer-box h3 {
    margin: 0 0 10px;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-box p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Breadcrumb override */
.breadcrumb-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.breadcrumb-item {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item:hover {
    color: #00d4aa;
}

.breadcrumb-sep {
    margin: 0 15px;
    color: #334155;
}

.breadcrumb-active {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 40px 25px;
        border-radius: 24px;
    }
    .legal-header h1 {
        font-size: 2.2rem;
    }
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
