/* --- Disclaimer Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Alert Box */
.alert-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    align-items: flex-start;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.alert-box.critical {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-left: 5px solid #ef4444;
}

.alert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon img {
    width: 24px;
    height: 24px;
}

.alert-text h3 {
    color: #991b1b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.alert-text p {
    color: #7f1d1d;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Info Grid */
.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Plain Text Block */
.text-block {
    background: #f8fafc;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}

.text-block h3 {
    color: #1e293b;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-block p {
    color: #475569;
    line-height: 1.7;
}

/* CTA Buttons */
.center-cta {
    text-align: center;
}

.center-cta h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-small {
    background: #fff;
    color: #0066FF;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
}

.btn-secondary-small:hover {
    background: #0066FF;
    color: #fff;
    border-color: #0066FF;
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .alert-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}