/* =========================
   DISCLAIMER PAGE
========================= */
.disclaimer-page {
    max-width: 1100px;
    margin: 130px auto 80px;
    padding: 60px;
    border-radius: 32px;

    position: relative;
    overflow: hidden;

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(20px);

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.2);
}

/* Glow Effects */
.disclaimer-page::before {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    top: -120px;
    left: -120px;

    background:
        rgba(139,92,246,0.15);

    filter: blur(120px);
    pointer-events: none;
}

.disclaimer-page::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -100px;
    right: -100px;

    background:
        rgba(6,182,212,0.15);

    filter: blur(120px);
    pointer-events: none;
}

/* =========================
   MAIN TITLE
========================= */
.disclaimer-page h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.disclaimer-page h1::after {
    content: "";

    width: 100px;
    height: 5px;

    border-radius: 999px;

    display: block;
    margin: 18px auto 0;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #06b6d4
        );
}

/* =========================
   SECTION CARD
========================= */
.disclaimer-section {
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 28px;

    position: relative;
    z-index: 2;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid
        rgba(255,255,255,0.08);

    transition: 0.35s ease;
}

.disclaimer-section:hover {
    transform: translateY(-6px);

    border-color:
        rgba(6,182,212,0.25);

    box-shadow:
        0 20px 40px
        rgba(6,182,212,0.08);
}

/* =========================
   SUB HEADINGS
========================= */
.disclaimer-section h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
}

/* =========================
   TEXT
========================= */
.disclaimer-section p {
    font-size: 1rem;
    line-height: 2;
    color: #cbd5e1;
}

/* Highlight */
.disclaimer-section strong {
    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #06b6d4
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   DIVIDER
========================= */
.disclaimer-divider {
    width: 100%;
    height: 1px;
    margin: 35px 0;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,0.15),
            transparent
        );
}

/* =========================
   LIGHT MODE
========================= */
body:not(.dark)
.disclaimer-page {
    background:
        rgba(255,255,255,0.85);

    border:
        1px solid
        rgba(0,0,0,0.08);
}

body:not(.dark)
.disclaimer-page h1 {
    color: #0f172a;
}

body:not(.dark)
.disclaimer-section {
    background:
        rgba(0,0,0,0.03);

    border:
        1px solid
        rgba(0,0,0,0.06);
}

body:not(.dark)
.disclaimer-section h2 {
    color: #111827;
}

body:not(.dark)
.disclaimer-section p {
    color: #475569;
}

body:not(.dark)
.disclaimer-divider {
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(0,0,0,0.1),
            transparent
        );
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {

    .disclaimer-page {
        margin: 110px 20px 50px;
        padding: 35px 22px;
        border-radius: 28px;
    }

    .disclaimer-page h1 {
        font-size: 2.8rem;
    }

    .disclaimer-section {
        padding: 22px;
    }

    .disclaimer-section h2 {
        font-size: 1.4rem;
    }

    .disclaimer-section p {
        line-height: 1.9;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {

    .disclaimer-page {
        padding: 25px 18px;
    }

    .disclaimer-page h1 {
        font-size: 2.2rem;
    }

    .disclaimer-section {
        padding: 20px;
        border-radius: 22px;
    }

    .disclaimer-section h2 {
        font-size: 1.2rem;
    }

    .disclaimer-section p {
        font-size: 14px;
    }
}

/* =========================
   350px
========================= */
@media (max-width: 350px) {

    .disclaimer-page h1 {
        font-size: 1.8rem;
    }
}