.about.prediction {
    background: radial-gradient(circle at top, #0a0a0a, #000000);
    border: 1px solid rgba(255, 198, 0, 0.08);
    color: #e5e5e5;
    padding: 40px;
    border-radius: 14px;
    margin-top: 30px;
}

.about .section-header h1 {
    text-align: center;
    font-weight: 600;
    color: #FFC600;
    font-family: "Archivo Black", sans-serif;
}

.about .section-header h2 {
    font-size: 28px;
    text-align: center;
    color: #FFC600;
    font-family: "Archivo Black", sans-serif;
    text-shadow: 0 0 40px rgba(255, 198, 0, 0.08);
}

.about .section-header h3 {
    font-size: 22px;
    color: #FFC600;
    margin-top: 25px;
    position: relative;
    display: inline-block;
}

.about .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFC600, #FFD740);
    border-radius: 2px;
}

.about .section-header p,
.about .section-header ol,
.about .section-header ul,
.about .section-header li {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db;
}

.about .section-header p {
    margin-bottom: 16px;
}

.about .section-header ul,
.about .section-header ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.about .section-header ul li,
.about .section-header ol li {
    margin-bottom: 8px;
}

.about .section-header ul li::marker {
    color: #FFC600;
}

.about .section-header ol li::marker {
    color: #FFC600;
    font-weight: 700;
}

.about .section-header a {
    color: #FFC600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.about .section-header a:hover {
    color: #FFD740;
    border-bottom-color: #FFD740;
}

.about .section-header strong {
    color: #FFC600;
}

.about .section-header hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 198, 0, 0.2), transparent);
    margin: 30px 0;
}

.about .section-header blockquote {
    border-left: 3px solid #FFC600;
    padding-left: 20px;
    margin: 20px 0;
    color: #9ca3af;
    font-style: italic;
}

.about .section-header code {
    background: #111111;
    color: #FFC600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .about.prediction {
        padding: 20px 16px;
        margin-top: 20px;
    }

    .about .section-header h1 {
        font-size: 26px;
    }

    .about .section-header h2 {
        font-size: 22px;
    }

    .about .section-header h3 {
        font-size: 18px;
    }

    .about .section-header h3::after {
        width: 30px;
    }

    .about .section-header p,
    .about .section-header ol,
    .about .section-header ul,
    .about .section-header li {
        font-size: 16px;
    }

    .about .section-header ul,
    .about .section-header ol {
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .about.prediction {
        padding: 16px 12px;
        margin-top: 16px;
        border-radius: 10px;
    }

    .about .section-header h1 {
        font-size: 22px;
    }

    .about .section-header h2 {
        font-size: 18px;
    }

    .about .section-header h3 {
        font-size: 16px;
    }

    .about .section-header p,
    .about .section-header ol,
    .about .section-header ul,
    .about .section-header li {
        font-size: 14px;
        line-height: 1.6;
    }

    .about .section-header ul,
    .about .section-header ol {
        padding-left: 14px;
    }

    .about .section-header blockquote {
        padding-left: 12px;
        margin: 12px 0;
    }

    .about .section-header hr {
        margin: 20px 0;
    }
}