body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    width: 100%;
    max-width: 450px;
    background-color: #1a1a1a;
    border: 1px solid #ffd700;
    border-radius: 4px;
    padding: 15px;
    box-sizing: border-box;
}
.menu-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.btn-menu {
    flex: 1;
    background: linear-gradient(to bottom, #333, #1a1a1a);
    color: #fff;
    border: 1px solid #ffd700;
    padding: 10px 5px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-menu.active {
    background: #ffd700 !important;
    color: #000 !important;
}
.result-section {
    background-color: #0b0b0b;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.result-title {
    color: #ffd700;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: bold;
}
.numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.number-box {
    background-color: #000;
    color: #ffd700;
    font-size: 26px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #ffd700;
}
/* CSS Baru untuk Kotak Prediksi */
.prediction-section {
    background-color: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px;
}
.prediction-header {
    background-color: #ffd700;
    color: #000;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    font-size: 12px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.pred-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 5px;
    border-bottom: 1px solid #222;
    font-size: 13px;
}
.pred-item:last-child {
    border-bottom: none;
}
.pred-label {
    color: #aaa;
    font-weight: bold;
}
.pred-value {
    color: #fff;
    font-weight: bold;
}
.text-yellow {
    color: #ffd700;
}
