* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    background: linear-gradient(135deg, #020614 0%, #051233 50%, #0a1850 100%);
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}



/* Banner Image */
.banner-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 174, 255, 0.3);
    animation: fadeIn 0.6s ease;
    border: 2px solid rgba(0, 174, 255, 0.4);
    transition: all 0.3s ease;
}

.banner-img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 174, 255, 0.5);
    transform: translateY(-2px);
    border-color: rgba(0, 174, 255, 0.6);
}

/* CTA Buttons */
.cta-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 50%, #00aaff 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.5), 0 0 25px rgba(0, 174, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease;
    text-decoration: none;
    border: 2px solid rgba(0, 174, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.5);
    background: linear-gradient(135deg, #0077ff 0%, #00aaff 50%, #00ccff 100%);
    border-color: rgba(0, 174, 255, 0.8);
}

/* Primary Button - Electric Blue */
.cta-button-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 50%, #00aaff 100%);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.5), 0 0 25px rgba(0, 174, 255, 0.4);
    color: #ffffff;
    font-weight: 700;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, #0077ff 0%, #00aaff 50%, #00ccff 100%);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.6);
    color: #ffffff;
}

/* LINE Button - Green */
.cta-button-line {
    background: linear-gradient(135deg, #00B900 0%, #06C755 50%, #00B900 100%);
    box-shadow: 0 5px 20px rgba(6, 199, 85, 0.4), 0 0 20px rgba(0, 185, 0, 0.3);
    color: #ffffff;
}

.cta-button-line:hover {
    background: linear-gradient(135deg, #00D900 0%, #00F566 50%, #00D900 100%);
    box-shadow: 0 8px 30px rgba(6, 199, 85, 0.6), 0 0 30px rgba(0, 245, 102, 0.4);
    color: #ffffff;
}

.cta-button i {
    font-size: 18px;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    animation: fadeIn 0.8s ease;
}

.stat-box {
    flex: 1;
    background: linear-gradient(135deg, rgba(5, 18, 51, 0.9) 0%, rgba(10, 24, 80, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 2px solid rgba(0, 174, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 174, 255, 0.2);
}

.stat-icon {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-icon i {
    opacity: 0.9;
}

.stat-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-label {
    color: #fff;
    font-size: 0.75rem;
    opacity: 0.8;
}

.stat-box:nth-child(1) .stat-icon i {
    color: #00aeff;
    filter: drop-shadow(0 0 10px rgba(0, 174, 255, 0.8));
}

.stat-box:nth-child(2) .stat-icon i {
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.stat-box:nth-child(3) .stat-icon i {
    color: #00ddff;
    filter: drop-shadow(0 0 10px rgba(0, 221, 255, 0.7));
}

/* Jackpot Container */
.jackpot-wrapper {
    background: linear-gradient(135deg, #051233 0%, #0a1850 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 174, 255, 0.3);
    margin-bottom: 15px;
    animation: fadeIn 1s ease;
    border: 2px solid rgba(0, 174, 255, 0.5);
}

.jackpot-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

.jackpot-amount {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffa500 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.jackpot-amount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

.amount-label {
    color: rgba(60, 30, 0, 0.9);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.amount-value {
    color: #1a0f40;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 215, 0, 0.8);
}

.coin-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    background: linear-gradient(45deg, #ffd700, #daa520);
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Online Counter */
.online-counter-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    animation: fadeIn 1.2s ease;
}

.online-counter {
    background: linear-gradient(135deg, rgba(5, 18, 51, 0.98) 0%, rgba(10, 24, 80, 0.98) 100%);
    padding: 8px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 174, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(0, 174, 255, 0.5);
}

.counter-left {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.counter-icon {
    width: 26px;
    height: 26px;
    color: #00aeff;
}

.counter-number {
    font-size: 20px;
    font-weight: 700;
    color: #00aeff;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 12px rgba(0, 174, 255, 0.8);
}

.online-indicator {
    width: 6px;
    height: 6px;
    background-color: #00ff88;
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}

.counter-text {
    text-align: left;
}

.counter-label {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(0, 174, 255, 0.5);
}

.counter-sublabel {
    font-size: 10px;
    color: rgba(0, 174, 255, 0.8);
}

/* Withdrawal List */
.withdrawal-container {
    background: linear-gradient(135deg, rgba(5, 18, 51, 0.95) 0%, rgba(10, 24, 80, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 174, 255, 0.25);
    margin: 20px 0;
    animation: fadeIn 1.4s ease;
    border: 2px solid rgba(0, 174, 255, 0.4);
}

.withdrawal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.withdrawal-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 174, 255, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aeff;
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.4);
}

.live-badge {
    font-size: 11px;
    font-weight: 700;
    color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 231, 1, 0.2));
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
    animation: blink 1.5s ease infinite;
}

.withdrawal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.withdrawal-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(5, 18, 51, 0.7), rgba(10, 24, 80, 0.6));
    border-radius: 16px;
    border: 2px solid rgba(0, 174, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.withdrawal-row:hover {
    transform: scale(1.02);
    border-color: rgba(0, 174, 255, 0.5);
    background: linear-gradient(135deg, rgba(5, 18, 51, 0.9), rgba(10, 24, 80, 0.8));
    box-shadow: 0 4px 15px rgba(0, 174, 255, 0.3);
}

.bank-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111420;
    padding: 3px;
    flex-shrink: 0;
}

.bank-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.withdrawal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.withdrawal-meta {
    font-size: 11px;
    color: #8E9AB6;
    display: flex;
    gap: 8px;
    align-items: center;
}

.bank-code {
    color: #00aeff;
    font-weight: 700;
}

.withdrawal-amount-wrap {
    text-align: right;
}

.withdrawal-amount {
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.withdrawal-status {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 2px;
}

.status-pending {
    color: #00aeff;
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.6);
}

.status-success {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shine {
    to {
        left: 100%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes coinBurst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.3);
        opacity: 0;
    }
}

@keyframes coinCollect {
    0% {
        transform: translate(var(--sx), var(--sy)) scale(1);
        opacity: 1;
    }
    60% {
        transform: translate(calc(var(--tx) * 0.7), calc(var(--ty) * 0.7)) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.4);
        opacity: 0;
    }
}

.coin-burst {
    animation: coinBurst 2s ease forwards;
}

.coin-collect {
    animation: coinCollect 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.icon-spin {
    animation: spin 1s linear infinite;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .scroll-buttons,
    
    .stat-box {
        padding: 8px;
    }

    .stat-icon {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .jackpot-title {
        font-size: 1.4rem;
    }

    .amount-value {
        font-size: 1.8rem;
    }

    .withdrawal-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .bank-icon {
        width: 36px;
        height: 36px;
    }

    .withdrawal-amount {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px 15px;
    margin-top: 30px;
    animation: fadeIn 1.6s ease;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer a:hover {
    color: #00aeff;
    text-shadow: 0 0 15px rgba(0, 174, 255, 0.6);
    transform: translateY(-2px);
}
