/* ==========================================================================
   💎 LUCKYKINGDOM VIP — ORIGINAL ROYAL SAPPHIRE BLUE LUXURY THEME
   ========================================================================== */

:root {
    --t1-card: rgba(20, 50, 130, .55);
    --t1-card-line: rgba(120, 175, 255, .35);
    --t1-yellow: #0109df;
    --t1-text: #ffffff;
    --t1-text-soft: rgba(255, 255, 255, .78);
    --t1-glow: 0 0 30px rgba(245, 197, 66, .35);
    --t1-game-bg: linear-gradient(180deg, #234ba8 0%, #16306b 100%);
    --t1-game-frame: #f5c516;

    /* 🌌 Electric Cobalt Royal Blue (Exact Match from Reference Image) */
    --lk-bg-deep: #000000;
    --lk-bg-night: #03174c;
    --lk-bg-abyss: #062168;
    --lk-blue-navy: #092a7e;
    --lk-blue-royal: #1d4ed8;
    --lk-blue-vibrant: #2563eb;
    --lk-blue-cyan: #38bdf8;
    --lk-blue-border: rgba(120, 175, 255, 0.35);
    --lk-blue-glow: rgba(37, 99, 235, 0.45);

    /* ✨ Original LK Gold Accents */
    --lk-yellow: #f5c516;
    --lk-gold-bright: #fbbf24;
    --lk-gold-rich: #f59e0b;
    --lk-gold-gradient: linear-gradient(135deg, #f5c542 0%, #c98e1a 100%);

    /* 🪟 Card & Input Form Surfaces */
    --card-bg: linear-gradient(180deg, rgba(20, 50, 130, 0.55), rgba(10, 31, 77, 0.55));
    --card-border: 1px solid rgba(120, 175, 255, 0.35);
    --input-bg: rgba(5, 13, 36, 0.55);
    --input-border: 1px solid rgba(120, 175, 255, 0.25);

    /* 🔤 Typography & Dimensions */
    --font-main: 'Kanit', system-ui, -apple-system, sans-serif;
    --font-num: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: #ffffff;
    background-color: #000000;
    background: 
        radial-gradient(900px 600px at 18% 8%, rgba(56, 110, 240, 0.45), transparent 60%),
        radial-gradient(800px 600px at 90% 90%, rgba(245, 197, 66, 0.18), transparent 60%),
        radial-gradient(700px 500px at 60% 50%, rgba(120, 175, 255, 0.20), transparent 60%),
        linear-gradient(180deg, #000000 0%, #0000ff 50%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow-x: clip;
    width: 100%;
}


/* ───────────── AUTHENTIC 1:1 LK PRODUCTION BACKGROUND (VIVID BLUE) ───────────── */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    pointer-events: none;
}

#confettiCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

body::before {
    display: none !important;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(rgba(245, 197, 66, 0.15) 1px, transparent 1px);
    background-size: 26px 26px, 60px 60px;
    background-position: 0 0, 13px 13px;
}




/* ───────────── FLOATING SOCIAL PROOF TOAST (BOTTOM-LEFT COMPACT) ───────────── */

.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    max-width: 290px;
    width: auto;
    background: rgba(9, 28, 73, 0.95);
    border: 1px solid rgba(120, 175, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(35, 75, 168, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 900;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}


.social-proof-toast.is-show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #163a8c 0%, #0d2258 100%);
    color: var(--lk-yellow);
    border: 1px solid rgba(245, 197, 66, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(245, 197, 66, 0.25);
    flex-shrink: 0;
}

.toast-text {
    display: flex;
    flex-direction: column;
}

.toast-user {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.toast-info {
    font-size: 11.5px;
    color: var(--lk-blue-cyan);
}

/* ───────────── 1. TOP BAR ───────────── */
.t1-topbar-outer {
    background: linear-gradient(180deg, rgba(3, 8, 25, 0.96) 0%, rgba(8, 24, 68, 0.94) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1.5px solid rgba(120, 175, 255, 0.28);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.2);
    padding-top: env(safe-area-inset-top, 0px);
}


.t1-topbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 60px;
}

.auth-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hover-glow-scale {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.hover-glow-scale:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.6));
}

.auth-logo img {
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Center Live Stats Badge (100% No-Wrap & Clean Alignment) */
.top-live-stats-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 12, 34, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.12), 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 16px rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
}


.live-pulse-dot {
    width: 8px !important;
    height: 8px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 10px #10b981 !important;
    animation: liveDotPulse 1.5s infinite !important;
    flex-shrink: 0 !important;
}

.live-stats-inner {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.stat-part {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.stat-part strong {
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

.stat-divider {
    color: rgba(120, 175, 255, 0.4) !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    margin: 0 2px !important;
    white-space: nowrap !important;
}

.actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    height: 38px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    user-select: none;
}


.btn-pill.dark {
    background: linear-gradient(180deg, #1a1a1a, #000);
    color: #ffffff;
    border-color: rgba(245, 197, 66, 0.5);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.btn-pill.dark:hover {
    background: linear-gradient(180deg, #2a2a2a, #111);
    border-color: var(--lk-yellow);
    box-shadow: 0 6px 18px rgba(245, 197, 66, 0.3);
}

.btn-pill.gold {
    background: var(--lk-yellow);
    color: #1a1a1a;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(245, 197, 66, 0.35);
}

.btn-pill.gold:hover {
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.6);
    filter: brightness(1.06);
}

/* ───────────── 2. MARQUEE BAR ───────────── */
.t1-marquee-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 8px;
    width: 100%;
}

.marquee-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(3, 10, 32, 0.85);
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 34px;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}


.marquee-wrap i {
    color: var(--lk-yellow);
    font-size: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.6));
    z-index: 2;
}

.marquee-viewport {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    animation: marqueeSmooth60fps 22s linear infinite;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-text, .marquee {
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding-right: 36px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@keyframes marqueeSmooth60fps {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ───────────── 3. LIVE JACKPOT BANNER ───────────── */
.jackpot-banner-wrap {
    max-width: 680px;
    margin: 18px auto 0;
    padding: 0 14px;
}

.jackpot-card {
    background: linear-gradient(135deg, rgba(13, 34, 88, 0.75) 0%, rgba(6, 17, 44, 0.85) 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 25px rgba(56, 110, 240, 0.15);
}

.jackpot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #e0f2fe;
}

.jackpot-counter {
    font-family: var(--font-num);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.jackpot-counter .currency {
    font-size: 19px;
    font-weight: 800;
    color: var(--lk-yellow);
}

.jackpot-counter .amount {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.75);
}

/* ───────────── 4. MAIN REGISTRATION CARD (TRUE LK BLUE THEME) ───────────── */
.bp-reg-wrap {
    max-width: 680px;
    margin: 16px auto 40px;
    padding: 0 14px;
}

.bp-reg-card {
    position: relative;
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: none !important;
}




.card-glow-top {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, var(--lk-yellow), var(--lk-blue-cyan), transparent);
    border-radius: 2px;
}

.bp-reg-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.reg-logo-img {
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(255, 193, 7, 0.35));
}

.bp-reg-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--lk-yellow);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 25px rgba(245, 197, 66, 0.35);
}

.bp-reg-subtitle {
    text-align: center;
    font-size: 13.5px;
    color: rgba(226, 232, 240, 0.82);
    margin-bottom: 18px;
}

/* ───────────── PARTNER BADGE ───────────── */
.partner-badge-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(22, 58, 140, 0.45) 0%, rgba(9, 28, 73, 0.65) 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.3);
    border-radius: var(--radius-md);
    color: #e0f2fe;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(56, 110, 240, 0.15);
}

.partner-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.partner-left i {
    font-size: 16px;
    color: var(--lk-yellow);
}

/* ───────────── INLINE VIP PRIVILEGE CODE CHIP (COMPACT 3D LUXURY) ───────────── */
/* ───────────── INLINE VIP PRIVILEGE CODE CHIP (CLEAN & SUBTLE) ───────────── */
.vip-code-chip-row {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.vip-code-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(20, 50, 130, 0.45);
    border: 1px solid rgba(245, 197, 66, 0.4);
    padding: 3.5px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    color: #ffe8a8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    user-select: none;
    transition: border-color 0.2s ease;
}

.vip-code-chip:hover {
    border-color: rgba(245, 197, 66, 0.7);
}

.vip-code-chip .emoji-3d {
    width: 16px;
    height: 16px;
}

.vip-code-chip strong {
    color: #ffd15c;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.6px;
    font-weight: 800;
}

/* CLEAN VIP APPLIED TAG */
.vip-applied-tag {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 1.5px 7px 1.5px 5px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 3.5px;
    margin-left: 6px;
    letter-spacing: 0.1px;
}


.emoji-3d-mini {
    width: 12px;
    height: 12px;
    object-fit: contain;
}




.bp-reg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.bp-col-12 {
    grid-column: 1 / -1;
    width: 100%;
}

@media (min-width: 768px) {
    .bp-reg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.bp-reg-field {
    display: flex;
    flex-direction: column;
}

.bp-reg-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.req {
    color: #f87171;
    margin-left: 3px;
    font-weight: bold;
}

.bp-reg-input-wrap {
    position: relative;
}

.input-icon-lead {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--lk-blue-cyan);
    font-size: 14px;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.bp-reg-input {
    width: 100%;
    height: 48px;
    padding: 0 44px 0 42px;
    border-radius: var(--radius-md);
    border: var(--input-border);
    background: var(--input-bg);
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
}

.bp-reg-input::placeholder {
    color: rgba(148, 163, 184, 0.45);
}

.bp-reg-input:focus {
    border-color: var(--lk-blue-cyan);
    background: rgba(2, 7, 24, 0.95);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25), 0 0 15px rgba(56, 189, 248, 0.2);
}

.input-check-status {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
}

.input-check-status.valid { color: #10b981; }
.input-check-status.invalid { color: #f87171; }

.bp-reg-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: rgba(226, 232, 240, 0.65);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.bp-reg-toggle:hover {
    color: #ffffff;
    background: rgba(35, 75, 168, 0.35);
}

.field-hint {
    font-size: 11.5px;
    color: rgba(148, 163, 184, 0.75);
    margin-top: 4px;
}

/* Password Strength & Match Indicator */
.password-meter-wrap {
    height: 3.5px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.password-meter {
    height: 100%;
    width: 0%;
    transition: width 0.35s ease, background-color 0.35s ease;
}

.password-meter.weak { width: 33%; background-color: #f87171; }
.password-meter.medium { width: 66%; background-color: #fbbf24; }
.password-meter.strong { width: 100%; background-color: #10b981; }

.match-badge {
    font-size: 11.5px;
    margin-top: 4px;
    font-weight: 700;
}

.match-badge.matched { color: #10b981; }
.match-badge.mismatched { color: #f87171; }

/* ───────────── 5. BANK PICKER (18 BANKS) ───────────── */
.bank-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* CLEAN BANK SELECTED INDICATOR */
.bank-selected-indicator {
    font-size: 11px;
    font-weight: 700;
    color: #ffd15c;
    background: rgba(245, 197, 66, 0.12);
    border: 1px solid rgba(245, 197, 66, 0.35);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4.5px;
    user-select: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.bank-selected-indicator .text-emerald {
    font-size: 10px;
    color: #10b981 !important;
}

.bank-selected-indicator.pop-badge {
    animation: bankBadgePop 0.25s ease;
}

@keyframes bankBadgePop {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}


.bp-bank-pick {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 8px;
}

.bp-bank-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bp-bank-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 4px;
    border-radius: var(--radius-md);
    background: rgba(13, 34, 88, 0.55);
    border: 1.5px solid rgba(120, 175, 255, 0.22);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    user-select: none;
}

.bp-bank-chip:hover {
    background: rgba(22, 58, 140, 0.5);
    border-color: var(--lk-blue-cyan);
}

.bp-bank-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    background: #091c49;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.bp-bank-name {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.85);
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bp-bank-radio:checked + .bp-bank-chip,
.bp-bank-chip.active {
    border-color: var(--lk-yellow);
    background: linear-gradient(135deg, rgba(35, 75, 168, 0.55) 0%, rgba(245, 197, 66, 0.25) 100%);
    box-shadow: 0 0 0 2px rgba(245, 197, 66, 0.3), 0 0 20px rgba(245, 197, 66, 0.35);
}

.bp-bank-radio:checked + .bp-bank-chip .bp-bank-name {
    color: var(--lk-yellow);
    font-weight: 800;
}

/* ───────────── 6. SUBMIT BUTTON & FOOTER ───────────── */
.bp-reg-submit {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-reg-btn {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: var(--radius-md);
    font-size: 16.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    transition: opacity 0.15s ease, filter 0.15s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.4px;
}

.bp-reg-btn:hover {
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
    filter: brightness(1.06);
}

.bp-reg-btn:active {
    transform: translateY(1px);
}

.bp-reg-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    40%, 100% { left: 200%; }
}

.security-seal-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12.5px;
    color: rgba(226, 232, 240, 0.88);
    margin-top: 4px;
}

.seal-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.seal-divider {
    color: rgba(255, 255, 255, 0.2);
}

.bp-reg-foot {
    text-align: center;
    font-size: 13.5px;
    color: rgba(226, 232, 240, 0.75);
}

.hover-underline-gold {
    color: var(--lk-blue-cyan);
    font-weight: 700;
    text-decoration: none;
}

.hover-underline-gold:hover {
    color: var(--lk-yellow);
    text-decoration: underline;
}

/* ───────────── 7. SUMMARY MODAL (MODAL สรุปข้อมูล) ───────────── */
.bp-reg-modal, .bp-custom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bp-reg-modal.is-show,
.bp-custom-modal.is-show {
    display: flex;
    animation: bpModalFade 0.2s ease forwards;
}

@keyframes bpModalFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.bp-reg-modal-backdrop, .bp-custom-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

.bp-reg-modal-dialog, .bp-custom-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #0d2258 0%, #06112c 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.85), 0 0 45px rgba(22, 58, 140, 0.35);
    overflow: hidden;
}

.bp-reg-modal-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.bp-reg-modal-head i {
    font-size: 26px;
}

.bp-reg-modal-title {
    font-weight: 800;
    font-size: 16.5px;
    margin: 0;
}

.bp-reg-modal-sub {
    font-size: 12px;
    opacity: 0.92;
}

.bp-reg-modal-body {
    padding: 20px 22px;
    max-height: 62vh;
    overflow-y: auto;
}

.bp-reg-sum {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(3, 10, 30, 0.75);
    border: 1px solid rgba(120, 175, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 18px;
}

.bp-reg-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.bp-reg-sum-row > span {
    color: rgba(148, 163, 184, 0.85);
}

.bp-reg-sum-row > b {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

.bp-reg-knows-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.bp-reg-knows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.bp-reg-knows-chip {
    background: rgba(13, 34, 88, 0.6);
    border: 1.5px solid rgba(120, 175, 255, 0.22);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    font-family: inherit;
}

.bp-reg-knows-chip:hover {
    background: rgba(22, 58, 140, 0.55);
    border-color: var(--lk-blue-cyan);
}

.bp-reg-knows-chip.is-active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
    font-weight: 700;
}

.bp-reg-modal-foot {
    display: flex;
    gap: 10px;
    padding: 14px 22px 20px;
    border-top: 1px solid rgba(120, 175, 255, 0.18);
}

.bp-reg-modal-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    font-family: inherit;
}

.bp-reg-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bp-reg-modal-btn-ok {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

/* ───────────── 8. LOGIN MODAL ───────────── */
.modal-content-custom {
    background: linear-gradient(180deg, #0d2258 0%, #06112c 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75);
}

.modal-header-custom {
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(120, 175, 255, 0.18);
}

.modal-title-custom {
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-custom {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    color: #e2e8f0;
}

.btn-close-custom:hover {
    background: rgba(120, 175, 255, 0.2);
    color: #ffffff;
}

.modal-body-custom {
    padding: 18px 22px 26px;
}

.form-group-custom {
    margin-bottom: 16px;
}

.form-group-custom label {
    display: block;
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.input-wrap-custom {
    position: relative;
}

.input-wrap-custom > i.fa-solid:first-child {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--lk-blue-cyan);
    font-size: 14px;
    pointer-events: none;
}

.input-wrap-custom input {
    width: 100%;
    height: 48px;
    padding: 0 44px 0 42px;
    border-radius: var(--radius-md);
    border: var(--input-border);
    background: var(--input-bg);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.input-wrap-custom input:focus {
    border-color: var(--lk-blue-cyan);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.28);
}

.forgot-wrap-custom {
    text-align: right;
    margin-bottom: 16px;
}

.forgot-wrap-custom a {
    color: var(--lk-blue-cyan);
    font-size: 12.5px;
    text-decoration: none;
}

.btn-login-submit-custom {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: var(--radius-md);
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #1d4ed8 0%, #163a8c 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(22, 58, 140, 0.45);
    font-family: inherit;
}

.foot-hint-custom {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(226, 232, 240, 0.7);
}

/* ───────────── 9. REDIRECT COUNTDOWN MODAL ───────────── */
.redirect-card {
    background: linear-gradient(180deg, #0d2258 0%, #06112c 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.85), 0 0 45px rgba(22, 58, 140, 0.35);
}

.redirect-icon-box {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 54px;
}

.pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.28);
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
}

.redirect-title {
    font-size: 23px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.redirect-desc {
    font-size: 13.5px;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 20px;
}

.countdown-wheel-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
}

.wheel-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.wheel-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 6;
}

.wheel-bar {
    fill: none;
    stroke: var(--lk-yellow);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.wheel-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--lk-yellow);
    font-family: var(--font-num);
}

.redirect-sum-box {
    background: rgba(3, 10, 30, 0.75);
    border: 1px solid rgba(120, 175, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 13.5px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sum-item-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redirect-sum-box span {
    color: rgba(148, 163, 184, 0.85);
}

.redirect-action-row {
    display: flex;
    gap: 10px;
}

.btn-copy-info {
    flex: 1;
    height: 48px;
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-md);
    background: rgba(22, 58, 140, 0.4);
    color: #e0f2fe;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-fast-redirect {
    flex: 1.2;
    height: 48px;
    border: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ───────────── 10. TRUST & FEATURES ROW ───────────── */
.features-row {
    max-width: 680px;
    margin: 0 auto 34px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-item {
    background: rgba(13, 34, 88, 0.5);
    border: 1.5px solid rgba(120, 175, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
}

.feature-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 11px;
    color: rgba(148, 163, 184, 0.85);
    margin: 0;
}

.site-footer {
    text-align: center;
    padding: 24px 16px 36px;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.55);
    border-top: 1px solid rgba(120, 175, 255, 0.12);
}

.footer-trust-marks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.footer-trust-marks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copyright {
    margin: 0;
}

.text-gold { color: var(--lk-yellow); }
.text-cyan { color: var(--lk-blue-cyan); }
.text-emerald { color: #10b981; }
.text-dim { opacity: 0.7; }

/* ───────────── 11.2 ULTRA 3D LIVE DYNAMIC GRID (MEGA JACKPOT & LIVE RTP) ───────────── */

.jackpot-banner-wrap {
    max-width: 680px;
    margin: 16px auto 22px;
    padding: 0 14px;
}

.live-dynamic-grid {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 14px;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

/* 🪙 3D MEGA JACKPOT CARD */
.jackpot-card {
    background: linear-gradient(145deg, rgba(24, 62, 160, 0.88) 0%, rgba(8, 24, 64, 0.96) 100%);
    border: 1.5px solid rgba(245, 197, 66, 0.65);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 14px 35px rgba(0, 0, 0, 0.65), 
        0 0 25px rgba(245, 197, 66, 0.22),
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -2px 5px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.75), 
        0 0 35px rgba(245, 197, 66, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.45);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd15c, #f5c542, transparent);
}

.jackpot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    white-space: nowrap;
    width: 100%;
}

.jackpot-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 800;
    color: #ffd15c;
    letter-spacing: 0.6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.jackpot-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4.5px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.jackpot-counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, rgba(3, 9, 26, 0.95) 0%, rgba(8, 20, 52, 0.85) 100%);
    border: 1.5px solid rgba(245, 197, 66, 0.35);
    border-radius: 12px;
    padding: 8px 12px;
    white-space: nowrap;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        0 2px 4px rgba(255, 255, 255, 0.08);
}

.currency-symbol {
    font-size: 20px;
    font-weight: 900;
    color: #f5c542;
    text-shadow: 0 0 12px rgba(245, 197, 66, 0.7);
    line-height: 1;
}

.jackpot-amount-val {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

/* 🔥 3D LIVE RTP HOT METER CARD */
.rtp-hot-card {
    background: linear-gradient(145deg, rgba(28, 55, 138, 0.88) 0%, rgba(10, 24, 62, 0.96) 100%);
    border: 1.5px solid rgba(255, 120, 30, 0.55);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 14px 35px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(255, 100, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -2px 5px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.rtp-hot-card:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.75),
        0 0 35px rgba(255, 100, 0, 0.38),
        inset 0 1px 3px rgba(255, 255, 255, 0.45);
}

.rtp-hot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff7a00, #ff3b30, transparent);
}

.rtp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    white-space: nowrap;
    width: 100%;
}

.rtp-title {
    font-size: 11.5px;
    font-weight: 800;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rtp-status-live {
    font-size: 9.5px;
    font-weight: 700;
    color: #f87171;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 2px 7px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4.5px;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}


.mini-pulse {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
}

.mini-pulse.pulse-gold {
    background: #f59e0b;
}

.mini-pulse.pulse-red {
    background: #ef4444;
}





.rtp-badges-row {
    display: flex;
    gap: 8px;
}

/* 3D Inset Capsules for Provider Rates */
.rtp-chip {
    flex: 1;
    background: linear-gradient(180deg, rgba(3, 9, 26, 0.95) 0%, rgba(8, 20, 52, 0.85) 100%);
    border: 1.5px solid rgba(120, 175, 255, 0.25);
    border-radius: 10px;
    padding: 6px 4px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.7),
        0 2px 4px rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.rtp-chip:hover {
    border-color: rgba(56, 189, 248, 0.6);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(56, 189, 248, 0.3);
}

.rtp-name {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.rtp-val {
    font-size: 14px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.4px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.rtp-flash {
    animation: rtpNumberFlash 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rtpNumberFlash {
    0% { transform: scale(1.18); filter: drop-shadow(0 0 10px #10b981) brightness(1.3); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent) brightness(1); }
}


/* 11.3 Welcome Privilege Banner */
.welcome-privilege-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(18, 52, 145, 0.7) 0%, rgba(6, 20, 65, 0.9) 100%);
    border: 1.5px dashed rgba(245, 197, 66, 0.6);
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(37, 99, 235, 0.25);
}


.privilege-icon {
    font-size: 22px;
    color: #f5c542;
    animation: bounceGift 2s infinite ease-in-out;
}

@keyframes bounceGift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.privilege-text strong {
    display: block;
    font-size: 13.5px;
    color: #ffd15c;
}

.privilege-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.spots-badge {
    color: #ff6b6b;
    font-weight: 800;
    background: rgba(255, 107, 107, 0.15);
    padding: 1px 6px;
    border-radius: 6px;
}

/* ───────────── 12. NEW CASINO COMPONENTS (WITHDRAWALS, LEADERBOARD, PROVIDERS) ───────────── */

/* 12.1 Latest Withdrawals Rail */
.lastest-withdraw-section {
    max-width: 680px;
    margin: 24px auto 26px;
    padding: 0 14px;
}

.lastest-withdraw {
    background: linear-gradient(180deg, rgba(20, 50, 130, 0.65), rgba(10, 31, 77, 0.75));
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.withdraw-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.withdraw-title-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rail-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.rail .cards-track {
    display: flex;
    width: max-content;
    animation: continuousRailScroll 28s linear infinite;
}

.rail .cards-track:hover {
    animation-play-state: paused;
}

.cards-group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}

@keyframes continuousRailScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lastest-withdraw .card {
    background: rgba(5, 13, 36, 0.75);
    border: 1px solid rgba(120, 175, 255, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 240px;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lastest-withdraw .info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-icon-square {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    padding: 2px;
    object-fit: contain;
    flex-shrink: 0;
}

.lastest-withdraw .acc {
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
}

.lastest-withdraw .txid {
    font-size: 10.5px;
    color: rgba(148, 163, 184, 0.7);
    font-family: monospace;
}

.lastest-withdraw .date-money {
    text-align: right;
}

.lastest-withdraw .date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.lastest-withdraw .amount {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffd15c;
}

/* 12.2 Top Winners Leaderboard Table */
.leaderboard-section {
    max-width: 680px;
    margin: 0 auto 26px;
    padding: 0 14px;
}

.header-container {
    background: linear-gradient(180deg, rgba(20, 50, 130, 0.65), rgba(10, 31, 77, 0.75));
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.leaderboard-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    width: 100%;
}

.leaderboard-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.leaderboard-title-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.leaderboard-title-text {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.live-stream-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #f87171;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.45);
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

.live-stream-badge span {
    white-space: nowrap;
    display: inline-block;
}

.custom-dropdown {
    position: relative;
    flex-shrink: 0;
}

.dropdown-button {
    background: rgba(5, 13, 36, 0.85);
    border: 1px solid rgba(120, 175, 255, 0.3);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s ease;
}


.dropdown-button:hover {
    border-color: #38bdf8;
    background: rgba(13, 34, 88, 0.9);
}

.dropdown-menu-custom {
    position: absolute;
    right: 0;
    top: 110%;
    background: #0a1f4d;
    border: 1px solid rgba(120, 175, 255, 0.35);
    border-radius: 12px;
    padding: 6px;
    z-index: 100;
    min-width: 190px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.dropdown-item-custom {
    display: block;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-item-custom:hover,
.dropdown-item-custom.active {
    background: rgba(56, 189, 248, 0.2);
    color: #ffd15c;
    font-weight: 700;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.leaderboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
}

.leaderboard-table thead th {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.8);
    padding: 6px 12px;
    font-weight: 600;
    border-bottom: 1px solid rgba(120, 175, 255, 0.15);
}

.leaderboard-table tbody tr {
    background: rgba(5, 13, 36, 0.6);
    border-radius: 10px;
    transition: background 0.15s ease;
}

.leaderboard-table tbody tr:hover {
    background: rgba(22, 58, 140, 0.4);
}

.leaderboard-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
}

.game-name-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.4);
}

.game-name {
    font-weight: 600;
    color: #ffffff;
}

.player-alias {
    color: rgba(255, 255, 255, 0.85);
    font-family: monospace;
}

.multiple {
    color: #10b981;
    font-weight: 700;
    font-family: monospace;
}

/* ⚡ Real-Time Live Streaming Table Row Animations ⚡ */
@keyframes tableRowEnter {
    0% {
        opacity: 0;
        transform: translateY(-22px) scale(0.96);
        background: rgba(16, 185, 129, 0.45);
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
    }
    40% {
        opacity: 1;
        background: rgba(16, 185, 129, 0.25);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        background: rgba(5, 13, 36, 0.6);
        box-shadow: none;
    }
}

.fade-table-enter-to {
    animation: tableRowEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* 12.3 World Class Game Providers Showcase */
.providers-section {
    max-width: 680px;
    margin: 0 auto 30px;
    padding: 0 14px;
}

.providers-container {
    background: linear-gradient(180deg, rgba(20, 50, 130, 0.65), rgba(10, 31, 77, 0.75));
    border: 1.5px solid rgba(120, 175, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.providers-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.wrapper-provider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 10px;
}

.wrapper-provider > div {
    background: rgba(5, 13, 36, 0.7);
    border: 1px solid rgba(120, 175, 255, 0.2);
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    height: 52px;
}

.wrapper-provider > div:hover {
    transform: translateY(-2px);
    border-color: #38bdf8;
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.25);
    background: rgba(13, 34, 88, 0.85);
}

.logo-provider {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* ───────────── 14. COMPLETE MOBILE & TABLET RESPONSIVE OPTIMIZATION (< 768px & < 480px) ───────────── */

@media (max-width: 768px) {
    /* Topbar Mobile */
    .t1-topbar {
        padding: 8px 12px 6px;
        min-height: auto;
        gap: 8px;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
    }


    .auth-logo {
        flex: 0 0 auto;
        order: 1;
    }

    .auth-logo img {
        height: 32px;
        max-width: 120px;
    }

    .actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-left: auto;
        flex-shrink: 0;
        order: 2;
    }

    .top-live-stats-chip {
        display: inline-flex !important;
        order: 3;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        margin: 2px 0 0 !important;
        padding: 4px 12px !important;
        font-size: 11px !important;
        gap: 6px !important;
        border-radius: 50px !important;
        background: rgba(4, 12, 34, 0.95) !important;
    }

    .top-live-stats-chip .live-stats-inner {
        font-size: 11px !important;
        gap: 6px !important;
    }

    .top-live-stats-chip .stat-part {
        font-size: 11px !important;
    }

    .actions .btn-pill {
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 11.5px !important;
        gap: 4px !important;
        white-space: nowrap;
    }


    .line-contact-pill {
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 11.5px !important;
        gap: 4px !important;
    }

    .line-pill-icon {
        width: 16px;
        height: 16px;
    }

    /* Marquee Mobile */
    .t1-marquee-bar {
        padding: 0 10px 8px !important;
        margin: 0 auto !important;
    }

    .marquee-wrap {
        padding: 4px 10px !important;
        min-height: 30px !important;
        gap: 6px !important;
    }

    .marquee-text, .marquee {
        font-size: 11.5px !important;
    }

    /* Jackpot & Live RTP Banner */

    .jackpot-banner-wrap {
        padding: 0 10px;
        margin: 12px auto 16px;
    }

    .live-dynamic-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jackpot-card {
        padding: 12px 14px;
    }

    .jackpot-counter .amount {
        font-size: 22px;
    }

    .rtp-hot-card {
        padding: 10px 12px;
    }

    .rtp-badges-row {
        gap: 6px;
    }

    .rtp-chip {
        padding: 5px 2px;
    }

    .rtp-val {
        font-size: 12.5px;
    }

    /* Main Registration Card */
    .bp-reg-wrap {
        padding: 0 10px;
        margin: 0 auto 20px;
    }

    .bp-reg-card {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .bp-reg-logo .reg-logo-img {
        height: 48px;
    }

    .bp-reg-title {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .bp-reg-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .welcome-privilege-banner {
        padding: 8px 10px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .welcome-privilege-banner .emoji-3d-lg {
        width: 26px;
        height: 26px;
    }

    .privilege-text strong {
        font-size: 12.5px;
    }

    .privilege-text p {
        font-size: 11px;
    }

    .partner-badge-chip {
        padding: 6px 10px;
        font-size: 12px;
        margin-bottom: 14px;
    }

    .partner-code-val {
        font-size: 12.5px;
        padding: 2px 8px;
    }

    /* Form Fields Mobile */
    .bp-reg-grid {
        gap: 12px;
    }

    .bp-reg-label {
        font-size: 12.5px;
        margin-bottom: 4px;
    }

    .bp-reg-input {
        height: 46px;
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
        padding: 0 38px 0 38px;
        border-radius: 10px !important;
    }

    .input-icon-lead {
        left: 12px;
        font-size: 14px;
    }

    /* Bank Picker Mobile */
    .bp-bank-pick {
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)) !important;
        gap: 6px !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }

    .bp-bank-chip {
        padding: 6px 4px;
        min-height: 52px;
        border-radius: 10px !important;
    }


    .bp-bank-logo {
        width: 28px;
        height: 28px;
    }

    .bp-bank-name {
        font-size: 9.5px;
        line-height: 1.1;
    }

    /* Submit Button Mobile */
    .bp-reg-btn {
        height: 50px !important;
        font-size: 15.5px !important;
        border-radius: 12px !important;
    }

    .security-seal-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        font-size: 11px;
    }

    .seal-divider {
        display: inline;
    }

    /* Latest Withdrawals Mobile */
    .lastest-withdraw-section {
        padding: 0 10px;
        margin: 16px auto 20px;
    }

    .lastest-withdraw {
        padding: 12px;
        border-radius: 14px;
    }

    .withdraw-title-text {
        font-size: 13.5px;
    }

    .payouts-speed-badge {
        font-size: 10.5px;
        padding: 2px 8px;
    }

    .lastest-withdraw .card {
        min-width: 215px;
        padding: 8px 10px;
    }

    .bank-icon-square {
        width: 30px;
        height: 30px;
    }

    .lastest-withdraw .acc {
        font-size: 11.5px;
    }

    .lastest-withdraw .amount {
        font-size: 12.5px;
    }

    /* Leaderboard Table Mobile */
    .leaderboard-section {
        padding: 0 10px;
        margin: 0 auto 20px;
    }

    .header-container {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .leaderboard-header-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }

    .leaderboard-title-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .leaderboard-title-main {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }

    .leaderboard-title-text {
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .custom-dropdown {
        width: 100% !important;
    }

    .dropdown-button {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 8px 14px !important;
        font-size: 12.5px !important;
        border-radius: 12px !important;
    }

    .dropdown-menu-custom {
        width: 100% !important;
    }

    .leaderboard-table thead th {
        font-size: 11px;
        padding: 4px 6px;
    }


    .leaderboard-table tbody td {
        padding: 7px 6px;
        font-size: 11.5px;
    }

    .game-logo {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .game-name {
        font-size: 11px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .multiple {
        font-size: 11.5px;
    }

    /* Providers Grid Mobile */
    .providers-section {
        padding: 0 10px;
        margin: 0 auto 20px;
    }

    .providers-container {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .providers-title {
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .wrapper-provider {
        grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
        gap: 6px;
    }

    .wrapper-provider > div {
        height: 44px;
        padding: 4px 6px;
        border-radius: 10px;
    }

    .logo-provider {
        max-height: 26px;
    }

    /* Features Row Mobile */
    .features-row {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 8px;
        margin-bottom: 24px;
    }

    .feature-item {
        padding: 10px 12px;
    }

    /* Floating LINE Support Widget Mobile */
    .floating-line-widget {
        bottom: 16px;
        right: 12px;
        padding: 4px 12px 4px 4px;
        border-radius: 40px;
    }

    .floating-line-img {
        width: 32px;
        height: 32px;
    }

    .line-badge-title {
        font-size: 11.5px;
    }

    .line-badge-status {
        font-size: 9.5px;
    }

    /* Social Proof Toast Mobile (Bottom-Left Compact) */
    .social-proof-toast {
        bottom: 16px;
        left: 12px;
        right: auto;
        max-width: 240px;
        width: auto;
        padding: 6px 10px;
        border-radius: 12px;
        gap: 8px;
    }

    .toast-avatar {
        width: 26px;
        height: 26px;
        font-size: 11.5px;
    }

    .toast-user {
        font-size: 11px;
        line-height: 1.2;
    }

    .toast-info {
        font-size: 9.5px;
        line-height: 1.2;
    }


    /* Modals Mobile */
    .bp-custom-modal-dialog,
    .bp-reg-modal-dialog {
        max-width: 94vw !important;
        margin: 16px auto !important;
    }

    .modal-body-custom,
    .bp-reg-modal-body {
        padding: 16px 14px 20px !important;
    }

    .modal-body-custom .input-wrap-custom input {
        font-size: 16px !important;
    }

    .redirect-action-row {
        flex-direction: column;
        gap: 8px;
    }
}


/* ───────────── 13. OFFICIAL LINE CONTACT CHANNEL STYLING ───────────── */

/* 13.1 Topbar LINE Pill */
.line-contact-pill {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.25), rgba(4, 153, 65, 0.35)) !important;
    border: 1.5px solid #06c755 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 38px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(6, 199, 85, 0.35);
}

.line-contact-pill:hover {
    background: #06c755 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.6);
}

.line-pill-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

/* 13.2 Footer LINE Contact Box */
.footer-contact-channel {
    max-width: 520px;
    margin: 0 auto 22px;
    background: rgba(5, 13, 36, 0.75);
    border: 1.5px solid rgba(6, 199, 85, 0.4);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 199, 85, 0.2);
}

.contact-hint-text {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    text-align: center;
}

.line-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.18), rgba(6, 199, 85, 0.08));
    border: 1px solid rgba(6, 199, 85, 0.5);
    border-radius: 12px;
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.line-contact-card:hover {
    background: rgba(6, 199, 85, 0.3);
    border-color: #06c755;
    box-shadow: 0 4px 18px rgba(6, 199, 85, 0.45);
    transform: translateY(-2px);
}

.contact-logo {
    width: 41px;
    height: 41px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-name {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.contact-sub {
    font-size: 11.5px;
    color: #86efac;
}

/* 13.3 Floating 24hr Support Widget */
.floating-line-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #06c755 0%, #04883b 100%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.5), 0 0 25px rgba(6, 199, 85, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatWidget 3.5s ease-in-out infinite;
}

@keyframes floatWidget {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.floating-line-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(6, 199, 85, 0.7), 0 0 35px rgba(6, 199, 85, 0.6);
}

.floating-line-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid #06c755;
    animation: linePulseAnim 2s infinite;
    pointer-events: none;
}

@keyframes linePulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15, 1.3); opacity: 0; }
}

/* 13.3 Floating LINE 24hr Support Widget (Bottom-Right Stack Base) */
.floating-line-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #06c755 0%, #04883b 100%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.5), 0 0 25px rgba(6, 199, 85, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatWidget 3.5s ease-in-out infinite;
}

@keyframes floatWidget {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.floating-line-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(6, 199, 85, 0.7), 0 0 35px rgba(6, 199, 85, 0.6);
}

.floating-line-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid #06c755;
    animation: linePulseAnim 2s infinite;
    pointer-events: none;
}

@keyframes linePulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15, 1.3); opacity: 0; }
}

.floating-line-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-line-badge {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.line-badge-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.line-badge-status {
    font-size: 10.5px;
    font-weight: 600;
    color: #e6fffa;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.line-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px #ffffff;
    animation: liveDotPulse 1.2s infinite;
}

/* 13.4 Floating VIP Privilege Widget (Stacked Above LINE on Bottom-Right) */
.floating-vip-widget {
    position: fixed;
    bottom: 82px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(20, 50, 130, 0.94) 0%, rgba(10, 31, 77, 0.96) 100%);
    border: 1.5px solid rgba(245, 197, 66, 0.65);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 197, 66, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatWidget 3.5s ease-in-out infinite 0.6s;
    user-select: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.floating-vip-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75), 0 0 35px rgba(245, 197, 66, 0.6);
}

.vip-pulse-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1.5px solid #f5c542;
    animation: linePulseAnim 2s infinite 0.6s;
    pointer-events: none;
}

.floating-vip-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.45);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-vip-badge {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vip-badge-title {
    font-size: 11px;
    font-weight: 800;
    color: #f5c542;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.vip-badge-code {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* CLEAN LIVE STREAM BADGE (LEADERBOARD) */
.live-stream-badge {
    font-size: 9.5px;
    font-weight: 700;
    color: #f87171;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 2px 7px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4.5px;
    margin-left: 6px;
    user-select: none;
    vertical-align: middle;
}

/* CLEAN PAYOUTS SPEED BADGE */
.payouts-speed-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}

.payouts-speed-badge .emoji-3d {
    width: 14px;
    height: 14px;
}



@media (max-width: 680px) {
    .live-dynamic-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .floating-line-widget {

        bottom: 16px;
        right: 12px;
        padding: 4px 12px 4px 4px;
    }
    
    .floating-line-img {
        width: 32px;
        height: 32px;
    }

    .line-badge-title {
        font-size: 11.5px;
    }

    .line-badge-status {
        font-size: 9.5px;
    }

    .floating-vip-widget {
        bottom: 68px;
        right: 12px;
        padding: 4px 12px 4px 4px;
    }

    .floating-vip-img {
        width: 32px;
        height: 32px;
    }

    .vip-badge-title {
        font-size: 10px;
    }

    .vip-badge-code {
        font-size: 10.5px;
    }
}

@media (max-width: 480px) {
    .vip-code-chip {
        padding: 4px 10px;
        font-size: 11px;
        gap: 6px;
        max-width: 100%;
    }

    .welcome-privilege-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 6px;
        padding: 10px;
    }

    .welcome-privilege-banner .emoji-3d-lg {
        margin: 0 auto;
    }

    .lastest-withdraw .card {
        min-width: 190px;
        padding: 8px 10px;
    }

    .custom-dropdown {
        width: 100%;
        margin-top: 6px;
    }

    .dropdown-button {
        width: 100%;
        justify-content: space-between;
    }
}






