:root {
    --silver-bg: #23272c;
    --silver-surface: #2d3238;
    --silver-main: #e2e8f0;
    --silver-accent: #8d99ae;
    --silver-highlight: #cfd8dc;
    --silver-gradient: linear-gradient(90deg,#bfc7cf 0%,#f8fafc 100%);
    --shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5px 6px 0 #aaa;
}

.header-text {
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 18px 0;
}

.tgl-result {
    background: var(--silver-gradient);
    color: #222;
    border-radius: 12px 12px 0 0;
    padding: 15px 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 0;
}

.bola-result {
    display: flex;
    justify-content: center;
    gap: 16px;
    background: var(--silver-surface);
    padding: 24px 0 12px 0;
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
}

.bola {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff, #bfc7cf 60%, #88919a 100%);
    color: #23272c;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    font-weight: 800;
    border: 2.5px solid #e5e7eb;
    box-shadow: 0 2px 8px #bbc2cf66, 0 0.5px 2px #aaa;
    margin: 0 3px;
    transition: transform 0.15s;
    transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}
.bola:hover {
    transform: scale(1.12) rotate(-2deg);
    box-shadow: 0 4px 16px #bfc7cfcc;
}

.text-bawah {
    text-align: center;
    font-size: 1rem;
    margin: 16px 0 30px 0;
    letter-spacing: .6px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 30px 0 10px 0;
}

.tombol-pagination {
    display: inline-block;
    padding: 9px 20px;
    background: linear-gradient(100deg, #dee4ea 60%, #bcc6d2 100%);
    color: #23272c;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 7px #bcc6d280;
    margin: 0 3px;
    transition: background .16s, box-shadow .18s, color .16s;
}
  
.tombol-pagination:hover,
.tombol-pagination:focus {
    background: linear-gradient(90deg, #f5f7fa, #bfc7cf 80%);
    color: red;
    box-shadow: 0 5px 18px #bfc7cfcc;
}

.tombol-pagination[aria-current="page"] {
    background: #f8fafc;
    color: #0ea5e9;
    border: 2px solid #bfc7cf;
}

.tombol-pagination.disabled {
    pointer-events: none;
    opacity: 0.6;
}

/* Responsive for mobile */
@media (max-width: 500px) {
    .bola { width: 35px; height: 35px; font-size: 1.25rem; }
    .header-text { font-size: 1.1rem; }
    .tgl-result, .bola-result { font-size: 1rem; }
    .tombol-pagination { padding: 7px 12px; font-size: .9rem; }
}


.bola:hover{
    /* sedikit membesar + terangkat */
    transform: translateY(-4px) scale(1.12);

    /* sorotan & bayangan agar tampak 3-D */
    box-shadow:
        0 2px 8px rgba(0,0,0,.25),
        inset 0 2px 4px rgba(255,255,255,.35);

}

