#scc-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;              /* lebih lebar */
    max-width: 960px;        /* batas maksimal */
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    text-align: left;        /* teks rata kiri biar nyaman dibaca */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    z-index: 9999;
    animation: slideUp 0.8s forwards;
}

@keyframes slideUp {
    from { bottom: -200px; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

#scc-banner p {
    margin: 0 0 16px;
}

#scc-banner a {
    color: var(--brand);
    font-weight: bold;
    text-decoration: underline;
}

#scc-banner button {
    margin: 0 12px 0 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.3s ease;
    padding: 10px 22px;
    background: var(--brand);
    color: var(--light);
    border: none;
}


#scc-banner button:hover {
    transform: scale(1.05);
}
