.about.prediction {
    background: radial-gradient(circle at top, #2e003e, #1a0028);
    border: 1px solid rgba(184, 0, 255, 0.3);
    color: #d1c5d8;
    padding: 40px;
    border-radius: 14px;
    padding: 20px;
    margin-top: 30px;
}

.about .section-header h1 {
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #ffff00, #b800ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.about .section-header h2 {
    font-size: 28px;
    text-align: center;
    color: #ffff00;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.1);
}

.about .section-header h3 {
    font-size: 22px;
    color: #b800ff;
    text-shadow: 0 0 30px rgba(184, 0, 255, 0.15);
}

.about .section-header p,
ol,
ul,
li {
    font-size: 18px;
    color: #d1c5d8;
    line-height: 1.8;
}

.about .section-header p strong {
    color: #ffff00;
}

.about .section-header p a {
    color: #b800ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 0, 255, 0.2);
}

.about .section-header p a:hover {
    color: #ffff00;
    border-bottom-color: #ffff00;
}

.about .section-header ol,
.about .section-header ul {
    padding-left: 24px;
}

.about .section-header ol li,
.about .section-header ul li {
    margin-bottom: 8px;
    list-style-type: none;
    position: relative;
    padding-left: 28px;
}

.about .section-header ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 14px;
}

.about .section-header ol {
    counter-reset: item;
}

.about .section-header ol li {
    counter-increment: item;
    padding-left: 32px;
}

.about .section-header ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: #b800ff;
    font-weight: 700;
    font-size: 16px;
}

/* Highlight Box / Info Box */
.about .highlight-box {
    background: rgba(184, 0, 255, 0.08);
    border-left: 4px solid #ffff00;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.about .highlight-box p {
    margin: 0;
    color: #d1c5d8;
}

.about .highlight-box strong {
    color: #ffff00;
}

/* Feature Grid dalam About */
.about .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.about .feature-item {
    background: rgba(46, 0, 62, 0.6);
    border: 1px solid rgba(184, 0, 255, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.about .feature-item:hover {
    border-color: #ffff00;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 0, 255, 0.15);
}

.about .feature-item .icon {
    color: #b800ff;
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.about .feature-item h4 {
    color: #ffff00;
    font-size: 16px;
    margin-bottom: 4px;
}

.about .feature-item p {
    font-size: 14px;
    color: #b8a0c8;
    margin: 0;
}

@media (max-width: 768px) {
    .about.prediction {
        padding: 16px;
    }

    .about .section-header h1 {
        font-size: 26px;
    }

    .about .section-header h2 {
        font-size: 22px;
    }

    .about .section-header h3 {
        font-size: 18px;
    }

    .about .section-header p,
    ol,
    ul,
    li {
        font-size: 16px;
    }

    .about .feature-grid {
        grid-template-columns: 1fr;
    }

    .about .section-header ol li,
    .about .section-header ul li {
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .about.prediction {
        padding: 12px;
        margin-top: 20px;
    }

    .about .section-header h1 {
        font-size: 22px;
    }

    .about .section-header h2 {
        font-size: 20px;
    }

    .about .section-header h3 {
        font-size: 16px;
    }

    .about .section-header p,
    ol,
    ul,
    li {
        font-size: 14px;
    }

    .about .section-header ol li,
    .about .section-header ul li {
        padding-left: 20px;
    }

    .about .highlight-box {
        padding: 12px 16px;
    }
}