body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:white;
    overflow-x:hidden;
}

.logo{
    text-align:center;
    font-size:28px;
    font-weight:bold;
    color:gold;
    padding:20px;
    letter-spacing:3px;
    text-shadow:0 0 15px gold;
}

.container{
    max-width:800px;
    margin:auto;
    background:rgba(0,0,0,0.7);
    padding:25px;
    border-radius:20px;
    box-shadow:0 0 30px gold;
}

button{
    padding:10px 20px;
    border:none;
    border-radius:10px;
    background:gold;
    font-weight:bold;
    cursor:pointer;
    margin:5px;
}

.card{
    background:rgba(255,255,255,0.05);
    border:1px solid gold;
    border-radius:12px;
    padding:15px;
    margin:10px 0;
}

.title{
    color:gold;
    font-weight:bold;
    margin-bottom:8px;
}

.number{
    font-size:22px;
    letter-spacing:3px;
}

/* Rolling animation */
.rolling{
    display:inline-block;
}

.copy-btn{
    background:#444;
    color:white;
    font-size:12px;
    padding:5px 10px;
    float:right;
}

#loading{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    z-index:999;
    display:none;
}

.spinner{
    border:5px solid #333;
    border-top:5px solid gold;
    border-radius:50%;
    width:60px;
    height:60px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

.loading-text{
    margin-top:15px;
    color:gold;
    font-weight:bold;
}

.footer{
    position: relative;
    width: 100%;
    height: 100px; /* atur tinggi GIF sesuai keinginan */
    overflow: hidden;
}

.footer-gif{
    width: 100%;
    height: 100%;
    object-fit: cover; /* biar GIF menutupi seluruh footer */
    display: block;
}

.vip-footer {
    margin-top: 30px;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #00ffcc;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 255, 204, 0.4);
    box-shadow: 0 -2px 15px rgba(0, 255, 204, 0.3);
    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}

.vip-footer p {
    margin: 0;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}


