/* ========== PREMIUM DISCLAIMER PAGE STYLES ========== */

.disclaimer-page {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%) !important;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Orbs */
.disclaimer-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%) !important;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, -2%) rotate(5deg);
    }

    50% {
        transform: translate(-1%, 2%) rotate(-3deg);
    }

    75% {
        transform: translate(1%, -1%) rotate(2deg);
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 70%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 2s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 15%;
    top: 90%;
    animation-delay: 4s;
    animation-duration: 15s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-100px) translateX(20px) scale(1.5);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-200px) translateX(-10px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-100px) translateX(30px) scale(1.3);
        opacity: 0.6;
    }
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ========== HERO HEADER ========== */
.disclaimer-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.2);
    }
}

.hero-badge i {
    color: #3b82f6;
    font-size: 14px;
}

.hero-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-shadow: 0 0 80px rgba(59, 130, 246, 0.5); */
    /* animation: titleGlow 4s ease-in-out infinite; */
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.5));
    }
}

.disclaimer-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Warning Banner */
.warning-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 127, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 16px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.warning-banner i {
    font-size: 24px;
    color: #f87171;
    animation: warningShake 1s ease-in-out infinite;
}

@keyframes warningShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.warning-banner span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fca5a5;
}

/* ========== GLASSMORPHIC CARDS ========== */
.disclaimer-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.disclaimer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(59, 130, 246, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

/* Section Title with Icon */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.section-icon i {
    font-size: 26px;
    color: white;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* ========== SUBSECTIONS ========== */
.subsection {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subsection::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 0 4px 4px 0;
}

.subsection:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title .number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.disclaimer-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #94a3b8;
    margin-bottom: 16px;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.disclaimer-text strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* ========== PREMIUM LIST STYLES ========== */
.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.disclaimer-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #94a3b8;
    padding: 14px 20px 14px 55px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.disclaimer-list li:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.disclaimer-list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-list li::after {
    content: '✓';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ========== HIGHLIGHT BOXES ========== */
.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 25px 30px;
    border-radius: 16px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed, #ec4899);
}

.highlight-box p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #93c5fd;
    font-weight: 500;
    line-height: 1.7;
}

.highlight-box i {
    color: #60a5fa;
    margin-right: 10px;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 127, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 25px 30px;
    border-radius: 16px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #ec4899, #f97316);
}

.warning-box p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #fca5a5;
    font-weight: 500;
    line-height: 1.7;
}

.warning-box i {
    color: #f87171;
    margin-right: 10px;
}

/* ========== DIVIDER ========== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 35px 0;
    position: relative;
}

.divider::after {
    content: '⬥';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 1);
    padding: 0 15px;
    color: rgba(59, 130, 246, 0.5);
    font-size: 10px;
}

/* ========== CONTACT BOX ========== */
.contact-box {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 24px;
    padding: 45px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-box h4 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-box p {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.contact-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1e40af;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-box a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-box a i {
    font-size: 18px;
    animation: emailBounce 2s ease-in-out infinite;
}

@keyframes emailBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.disclaimer-card:nth-child(2) {
    animation-delay: 0.3s;
}

.subsection:nth-child(odd) {
    animation-delay: 0.1s;
}

.subsection:nth-child(even) {
    animation-delay: 0.2s;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    /* background: rgba(255, 255, 255, 0.03); */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.toc-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-title i {
    color: #3b82f6;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.toc-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.toc-item .num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.toc-item span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #94a3b8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .disclaimer-page {
        padding: 50px 0;
    }

    .disclaimer-hero h1 {
        font-size: 36px;
    }

    .disclaimer-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .subsection {
        padding: 20px;
    }

    .subsection-title {
        font-size: 18px;
    }

    .disclaimer-text,
    .disclaimer-list li {
        font-size: 15px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 30px 20px;
    }
}