@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');
:root {
    --gold: #ffd700;
    --gold-gradient: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --neon-glow: 0 0 20px rgba(255, 215, 0, 0.5);
}
body {
    background: radial-gradient(circle at center, #1a0000 0%, #000 100%);
    color: #fff; font-family: 'Poppins', sans-serif;
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; margin: 0; text-align: center; overflow-x: hidden;
}
.gacha-box {
    background: rgba(10, 10, 10, 0.98); padding: 25px;
    border-radius: 25px; border: 2px solid var(--gold);
    box-shadow: var(--neon-glow); width: 90%; max-width: 420px;
    margin: 20px 0; z-index: 10;
}
.logo-anaslot { width: 180px; margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
.tab-container { display: flex; gap: 8px; margin-bottom: 20px; }
.tab-btn {
    flex: 1; padding: 12px 5px; border-radius: 12px; border: 1px solid #333;
    background: #111; color: #777; cursor: pointer; font-weight: bold; font-size: 11px;
}
.tab-btn.active { background: var(--gold-gradient); color: #000; border: none; box-shadow: 0 0 10px var(--gold); }
#display-area { min-height: 250px; display: flex; flex-direction: column; justify-content: center; }
.input-user {
    width: 100%; box-sizing: border-box; padding: 15px; border-radius: 12px; border: 2px solid var(--gold);
    background: #000; color: var(--gold); text-align: center; font-weight: 900; 
    margin-bottom: 15px; font-size: 16px; outline: none;
}
.btn-main {
    background: var(--gold-gradient); border: none; padding: 18px;
    border-radius: 50px; color: #000; font-weight: 900;
    cursor: pointer; font-size: 0.95rem; text-transform: uppercase; width: 100%;
}
.id-highlight-box {
    background: #000; border: 2px solid var(--gold);
    border-radius: 15px; padding: 15px; margin: 10px 0;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.id-text { font-size: 28px; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
.copy-btn, .retry-btn {
    background: #222; border: 1px solid var(--gold); color: var(--gold);
    padding: 8px 12px; border-radius: 5px; font-size: 10px; cursor: pointer; font-weight: bold;
}
.retry-btn { background: none; border-color: #444; color: #777; margin: 10px auto; display: block; width: fit-content; }
.pattern { 
    background: rgba(0, 0, 0, 0.8); padding: 15px; border-radius: 15px; 
    margin-top: 10px; border-left: 5px solid var(--gold); font-size: 13px; text-align: left;
}
.cta-link {
    display: block; margin-top: 15px; background: linear-gradient(to right, #ff0000, #b30000);
    color: #fff; padding: 18px; text-decoration: none; font-weight: 900; border-radius: 15px;
}
#wd-notif {
    position: fixed; bottom: 20px; left: 20px; background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold); padding: 12px 15px; border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 12px;
    z-index: 9999; transform: translateX(-150%); transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#wd-notif.show { transform: translateX(0); }
.wd-icon { width: 35px; height: 35px; background: var(--gold-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 900; font-size: 18px; }
.wd-content { text-align: left; }
.wd-name { font-size: 12px; font-weight: 900; color: var(--gold); display: block; }
.wd-amount { font-size: 11px; color: #fff; display: block; }
.seo-text-container { margin-top: 30px; text-align: left; border-top: 1px solid #222; padding-top: 20px; }
.seo-text-container h1, .seo-text-container h2 { font-size: 15px; color: var(--gold); margin-bottom: 8px; }
.seo-text-container p { font-size: 11px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.loader { border: 4px solid #111; border-top: 4px solid var(--gold); border-radius: 50%; width: 45px; height: 45px; animation: spin 0.8s linear infinite; margin: 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hidden { display: none; }

/* --- UPDATE TOMBOL LOGIN GACOR (WARNA BARU) --- */
.btn-login-float {
    position: fixed;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff4e50, #f9d423, #ff4e50); /* Warna Emas Api / Rose Gold */
    background-size: 200% auto;
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 78, 80, 0.6);
    z-index: 9999;
    border: 2px solid rgba(0,0,0,0.2);
    transition: 0.4s;
    text-transform: uppercase;
    display: inline-block;
    animation: shine-gacor 3s linear infinite; /* Animasi cahaya bergerak */
}

.btn-login-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 212, 35, 0.8);
    color: #000;
}

@keyframes shine-gacor {
    to { background-position: 200% center; }
}

@media screen and (max-width: 480px) {
    .btn-login-float {
        padding: 8px 14px;
        font-size: 10px;
        top: 10px;
        right: 10px;
    }
}
/* --- TOMBOL WA MELAYANG POJOK KIRI --- */
/* --- TOMBOL WA MELAYANG POJOK KANAN BAWAH --- */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px; /* PINDAH KE KANAN */
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: 0.3s;
    animation: pulse-wa 2s infinite;
}

.wa-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.wa-icon-container img {
    width: 25px;
    height: 25px;
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    font-size: 7px;
    padding: 2px 4px;
    border-radius: 10px;
    border: 1px solid #fff;
}

.wa-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.7);
}

/* Animasi Denyut Hijau */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsif HP */
@media screen and (max-width: 480px) {
    .wa-float {
        padding: 8px 12px;
        font-size: 10px;
        bottom: 15px;
        right: 15px; /* Tetap di kanan untuk HP */
    }
}