* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0a0c10; color: #fff; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 8px rgba(79,142,247,0.3); } 50% { box-shadow: 0 0 20px rgba(79,142,247,0.6); } }
@keyframes dotPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }
@keyframes toastIn { from { opacity:0; transform:translateY(12px) scale(0.97); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes toastOut { from { opacity:1; transform:translateY(0) scale(1); } to { opacity:0; transform:translateY(8px) scale(0.96); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-100%); } to { opacity:1; transform:translateX(0); } }
@keyframes slideOutLeft { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(-100%); } }

nav { display: flex; align-items: center; justify-content: space-between; padding: 0 60px; height: 70px; background: rgba(10,12,16,0.6); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.04); position: fixed; width: 100%; top: 0; z-index: 1000; transition: background 0.3s; }
.logo { font-weight: 700; font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.logo-box { background: #fff; color: #0a0c10; padding: 2px 6px; font-size: 11px; font-weight: 900; border-radius: 4px; transition: background 0.2s; }
.logo:hover .logo-box { background: #4f8ef7; color: #fff; }
.nav-links { display: flex; gap: 28px; list-style: none; height: 100%; align-items: center; }
.nav-links li { color: #999; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; cursor: pointer; transition: color 0.3s; position: relative; display: flex; align-items: center; height: 100%; }
.nav-links li.active { color: #fff; }
.nav-links li.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #4f8ef7; border-radius: 2px 2px 0 0; }
.nav-links li:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; position: relative; }
.btn-discord-login { background: #5865F2; color: #fff; border: none; padding: 10px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-discord-login:hover { background: #4752C4; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(88,101,242,0.35); }

.cart-btn { position: relative; width: 40px; height: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: #aaa; font-size: 16px; }
.cart-btn:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-1px); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: #4f8ef7; color: #fff; font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; border: 2px solid #0a0c10; animation: pulseGlow 2s infinite; }
.cart-badge.show { display: flex; }
.user-profile-wrapper { display: flex; align-items: center; gap: 12px; }
.nav-stats-summary { display: flex; gap: 15px; font-size: 13px; color: #aaa; font-weight: 600; }
.nav-stats-summary span strong { color: #fff; }
.profile-trigger { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; transition: background 0.2s, border-color 0.2s; user-select: none; }
.profile-trigger:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.nav-avatar { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #a855f7, #3b82f6); }
.nav-username { font-size: 13px; font-weight: 600; color: #fff; }
.profile-trigger i { font-size: 11px; color: #888; transition: transform 0.25s; }
.profile-trigger.active i { transform: rotate(180deg); }
.profile-dropdown { position: absolute; top: 55px; right: 0; width: 300px; background: #14161e; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.6); padding: 24px; display: flex; flex-direction: column; gap: 18px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); z-index: 1100; }
.profile-dropdown.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-user-info { display: flex; align-items: center; gap: 14px; }
.dropdown-avatar { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #a855f7, #3b82f6); }
.dropdown-user-text h4 { font-size: 16px; font-weight: 700; color: #fff; }
.dropdown-user-text p { font-size: 12px; color: #566175; margin-top: 1px; }
.dropdown-balance-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 12px; padding: 14px 16px; font-size: 13px; }
.balance-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: #8492a6; }
.balance-row:last-child { margin-bottom: 0; }
.balance-row span strong { color: #4f8ef7; font-weight: 700; }
.dropdown-menu-list { list-style: none; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }
.dropdown-menu-list li { display: flex; align-items: center; gap: 14px; padding: 11px 14px; font-size: 14px; font-weight: 500; color: #b5bed0; cursor: pointer; border-radius: 10px; transition: all 0.2s; }
.dropdown-menu-list li:hover { background: rgba(255,255,255,0.04); color: #fff; }
.dropdown-menu-list li i { width: 18px; text-align: center; font-size: 15px; color: #616e85; }
.dropdown-menu-list li:hover i { color: #4f8ef7; }
.dropdown-menu-list li.logout-btn { color: #ff5252; border-top: 1px solid rgba(255,255,255,0.04); margin-top: 6px; padding-top: 14px; }
.dropdown-menu-list li.logout-btn i { color: #ff5252; }
.dropdown-menu-list li.logout-btn:hover { background: rgba(255,82,82,0.08); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}
.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-drawer { position: fixed; left: 0; top: 0; bottom: 0; width: 280px; background: #0d0f14; border-right: 1px solid rgba(255,255,255,0.06); z-index: 1300; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; padding: 0; }
.mobile-menu-drawer.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu-header .logo { font-size: 15px; }
.mobile-menu-close { width: 36px; height: 36px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #666; font-size: 15px; transition: all 0.15s; }
.mobile-menu-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 16px 14px; flex: 1; }
.mobile-nav-links li { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; color: #8492a6; cursor: pointer; transition: all 0.2s; }
.mobile-nav-links li i { width: 18px; text-align: center; font-size: 15px; color: #3a4555; transition: color 0.2s; }
.mobile-nav-links li:hover, .mobile-nav-links li.active { background: rgba(79,142,247,0.08); color: #fff; }
.mobile-nav-links li:hover i, .mobile-nav-links li.active i { color: #4f8ef7; }
.mobile-nav-links li.active { color: #4f8ef7; font-weight: 700; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 10% 60px 10%; background: linear-gradient(rgba(10,12,16,0.55), rgba(10,12,16,0.95)), url('IMG/Background.png') center/cover; }
.hero-content { display: flex; align-items: center; justify-content: flex-end; gap: 50px; max-width: 1300px; width: 100%; }
.hero-text { display: flex; flex-direction: column; align-items: flex-end; text-align: right; flex: 1; max-width: 640px; margin-left: auto; animation: fadeInRight 0.8s ease both; }
.hero-text p { margin-left: auto; }
.hero-bottom-row { justify-content: flex-end; }
.hero-tag { font-size: 11px; font-weight: 600; color: #4f8ef7; letter-spacing: 1.5px; margin-bottom: 14px; opacity: 0.9; text-transform: uppercase; }
.hero-text h1.hero-headline { font-family: 'Oswald', 'Inter', sans-serif; font-size: 62px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; line-height: 1.05; letter-spacing: -0.5px; }
.hero-text h1 span { color: #4f8ef7; }
.hero-text p { color: #999; max-width: 560px; line-height: 1.7; font-size: 14px; margin-bottom: 30px; }
.btn-group { display: flex; gap: 12px; margin-bottom: 30px; }
.btn { padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 12px; cursor: pointer; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; transition: all 0.25s ease; }
.btn .btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translate(2px,-2px); }
.btn-play { border-color: #4f8ef7; }
.btn-play:hover { background: rgba(79,142,247,0.12); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,142,247,0.25); }
.btn-comm { background: rgba(255,255,255,0.03); }
.btn-comm:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-bottom-row { display: flex; align-items: center; gap: 24px; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); padding: 7px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; color: #fff; border: 1px solid rgba(255,255,255,0.08); }
.live-badge .dot { width: 6px; height: 6px; background: #2ddd6f; border-radius: 50%; box-shadow: 0 0 8px #2ddd6f; animation: dotPulse 2s infinite; }
.live-badge.offline .dot { background: #ff4d4d; box-shadow: 0 0 8px #ff4d4d; }
.hero-badge-circle { position: relative; width: 64px; height: 64px; flex-shrink: 0; animation: spinSlow 14s linear infinite; }
.hero-badge-circle svg { width: 100%; height: 100%; }
.hero-badge-circle text { font-size: 8.2px; font-weight: 700; letter-spacing: 1px; fill: #566175; text-transform: uppercase; }
.hero-badge-circle i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 14px; color: #4f8ef7; animation: spinSlowReverse 14s linear infinite; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinSlowReverse { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }

.stats-section { padding: 70px 10%; background: #0a0c10; }
.stats-row-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.stats-eyebrow { font-size: 10px; font-weight: 800; color: #4f8ef7; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.stats-eyebrow::before { content:''; width: 20px; height: 2px; background: #4f8ef7; border-radius:2px; }
.stats-heading { font-family: 'Oswald', 'Inter', sans-serif; font-size: 38px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.1; }
.stats-heading em { font-style: normal; color: #4f8ef7; }
.stats-live-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(45,221,111,0.07); border: 1px solid rgba(45,221,111,0.18); color: #2ddd6f; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 20px; letter-spacing: 1px; }
.stats-live-pill .sdot { width: 5px; height: 5px; border-radius: 50%; background: #2ddd6f; animation: dotPulse 2s infinite; }

.stats-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; background: transparent; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 30px 20px; position: relative; transition: transform 0.25s; }
.stat-strip-item:not(:last-child)::after { content:''; position:absolute; right:0; top:15%; bottom:15%; width:1px; background: rgba(255,255,255,0.08); }
.stat-strip-item:hover { transform: translateY(-4px); }
.stat-strip-label { font-size: 11px; font-weight: 800; color: #4f8ef7; letter-spacing: 2px; text-transform: uppercase; }
.stat-strip-num { font-family: 'Oswald', 'Inter', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stat-strip-item:nth-child(1) .stat-strip-num { color: #7ab3ff; }
.stat-strip-item:nth-child(2) .stat-strip-num { color: #c084fc; }
.stat-strip-item:nth-child(3) .stat-strip-num { color: #2ddd6f; }
.stat-strip-sub { font-size: 11px; font-weight: 600; color: #566175; text-transform: uppercase; letter-spacing: 0.5px; }

.spotlight-section { padding: 70px 10% 90px; background: #0a0c10; }

.spotlight-banner { position: relative; width: 100%; border-radius: 20px; overflow: hidden; background: #05060a; margin-bottom: 18px; }
.video-embed-wrap { position: relative; width: 100%; padding-top: 42%; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #3a4555; font-size: 12px; font-weight: 600; text-align: center; padding: 0 20px; }
.video-embed-placeholder i { font-size: 28px; opacity: .5; }
.spotlight-caption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 18px 24px; background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent); pointer-events: none; }
.spotlight-caption-tag { display: inline-flex; align-items: center; gap: 6px; background: #4f8ef7; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; }
.spotlight-caption-text { font-size: 14px; font-weight: 700; color: #fff; }

.discord-strip { display: flex; align-items: center; gap: 20px; background: #0d1018; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 18px 24px; flex-wrap: wrap; }
.discord-strip-left { display: flex; align-items: center; gap: 12px; }
.discord-strip-left i.fa-discord { font-size: 26px; color: #5865F2; flex-shrink: 0; }
.discord-strip-title { font-size: 14px; font-weight: 800; }
.discord-strip-sub { font-size: 12px; color: #566175; font-weight: 600; }
.discord-strip-sub span { color: #2ddd6f; font-weight: 800; }
.discord-avatar-stack { display: flex; align-items: center; flex-wrap: wrap; flex: 1; min-width: 120px; min-height: 32px; }
.discord-avatar-stack .discord-member-row { width: 32px; height: 32px; border-radius: 50%; margin-left: -10px; flex-shrink: 0; position: relative; transition: transform .15s; }
.discord-avatar-stack .discord-member-row:first-child { margin-left: 0; }
.discord-avatar-stack .discord-member-row:hover { transform: translateY(-3px); z-index: 1; }
.discord-avatar-stack .discord-member-row.skeleton { background: rgba(255,255,255,0.05); border: 2px solid #0d1018; animation: dotPulse 1.4s ease-in-out infinite; }
.discord-avatar-stack .discord-member-avatar { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #1a1d26; border: 2px solid #0d1018; }
.discord-avatar-stack .discord-member-name { display: none; }
.discord-empty { font-size: 12px; color: #3a4555; font-weight: 600; }
.discord-join-btn { background: #5865F2; color: #fff; font-size: 12px; font-weight: 700; padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: opacity .15s; flex-shrink: 0; }
.discord-join-btn:hover { opacity: .85; }

.profile-page-view { display: none; padding: 130px 10% 100px 10%; background: #0a0c10; min-height: calc(100vh - 97px); animation: fadeInUp 0.4s ease; }
.history-page-view { padding: 130px 10% 100px 10%; background: #0a0c10; min-height: calc(100vh - 97px); animation: fadeInUp 0.4s ease; }
.history-filter-bar { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.hist-filter-btn { background: #11141c; border: 1px solid #1e2330; color: #566175; padding: 8px 18px; border-radius: 20px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all .2s; letter-spacing: .5px; }
.hist-filter-btn.active, .hist-filter-btn:hover { background: #4f8ef7; border-color: #4f8ef7; color: #fff; }
.history-list { display: flex; flex-direction: column; gap: 14px; }
.hist-card { background: #11141c; border: 1px solid #1e2330; border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.hist-card:hover { border-color: #2a3050; }
.hist-card-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid #1e2330; gap: 12px; flex-wrap: wrap; }
.hist-order-id { font-size: 12px; font-weight: 800; color: #4f8ef7; letter-spacing: .5px; }
.hist-date { font-size: 11px; color: #566175; }
.hist-status { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.hist-status.sending { background: rgba(79,142,247,0.12); color: #4f8ef7; border: 1px solid rgba(79,142,247,0.2); }
.hist-status.pending { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.hist-status.delivered { background: rgba(45,221,111,0.12); color: #2ddd6f; border: 1px solid rgba(45,221,111,0.2); }
.hist-status.failed { background: rgba(255,77,77,0.12); color: #ff4d4d; border: 1px solid rgba(255,77,77,0.2); }
.hist-status.cancelled { background: rgba(255,77,77,0.12); color: #ff4d4d; border: 1px solid rgba(255,77,77,0.2); }
.hist-card-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.hist-item-row { display: flex; align-items: center; gap: 12px; }
.hist-item-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: #1a1e2a; flex-shrink: 0; }
.hist-item-info { flex: 1; }
.hist-item-name { font-size: 13px; font-weight: 700; color: #e2e8f0; }
.hist-item-sub { font-size: 11px; color: #566175; margin-top: 2px; }
.hist-item-price { font-size: 13px; font-weight: 800; color: #4f8ef7; white-space: nowrap; }
.hist-item-price.gold { color: #f59e0b; }
.hist-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: #0d1018; border-top: 1px solid #1e2330; flex-wrap: wrap; gap: 8px; }
.hist-pay-method { font-size: 11px; color: #566175; display: flex; align-items: center; gap: 6px; }
.hist-total { font-size: 14px; font-weight: 900; }
.hist-total.pt { color: #f59e0b; }
.hist-total.cr { color: #4f8ef7; }
.hist-empty { text-align: center; padding: 80px 20px; color: #566175; }
.hist-empty i { font-size: 40px; margin-bottom: 16px; display: block; opacity: .4; }
.hist-empty p { font-size: 14px; }

/* ── Roblox Link Page ── */
.roblox-link-view { padding: 130px 10% 100px 10%; background: #0a0c10; min-height: calc(100vh - 97px); animation: fadeInUp 0.4s ease; }
.roblox-search-card { background: #11141c; border: 1px solid #1e2330; border-radius: 16px; padding: 40px 36px; max-width: 520px; margin: 0 auto 24px; text-align: center; }
.roblox-search-icon { margin-bottom: 16px; }
.roblox-search-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.roblox-search-card p { color: #566175; font-size: 13px; margin-bottom: 28px; line-height: 1.6; }
.roblox-input-wrap { display: flex; gap: 10px; }
.roblox-username-input { flex: 1; background: #0d1018; border: 1px solid #1e2330; border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.roblox-username-input:focus { border-color: #ff3c3c; }
.roblox-search-btn { background: #ff3c3c; color: #fff; border: none; border-radius: 10px; padding: 12px 20px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: opacity .2s; }
.roblox-search-btn:hover { opacity: .85; }
.roblox-search-btn:disabled { opacity: .5; cursor: not-allowed; }
.roblox-search-error { margin-top: 14px; background: rgba(255,60,60,0.1); border: 1px solid rgba(255,60,60,0.2); color: #ff6b6b; border-radius: 8px; padding: 10px 14px; font-size: 13px; text-align: left; }
.roblox-result-card { background: #11141c; border: 1px solid #2ddd6f33; border-radius: 16px; padding: 28px; max-width: 520px; margin: 0 auto; }
.roblox-result-label { font-size: 12px; color: #566175; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 20px; font-weight: 700; }
.roblox-confirm-box { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.roblox-confirm-avatar { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; background: #1a1e2a; border: 2px solid #1e2330; flex-shrink: 0; }
.roblox-confirm-info { text-align: left; }
.roblox-confirm-name { font-size: 20px; font-weight: 800; color: #fff; }
.roblox-confirm-username { font-size: 13px; color: #566175; margin-top: 4px; }
.roblox-confirm-username::before { content: "@"; }
.roblox-confirm-id { font-size: 11px; color: #3a4255; margin-top: 6px; font-family: monospace; }
.roblox-confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.roblox-btn-confirm { flex: 1; background: #2ddd6f; color: #0a0c10; border: none; border-radius: 10px; padding: 13px 20px; font-size: 14px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity .2s; }
.roblox-btn-confirm:hover { opacity: .85; }
.roblox-btn-cancel { flex: 1; background: #1a1e2a; color: #566175; border: 1px solid #1e2330; border-radius: 10px; padding: 13px 20px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; }
.roblox-btn-cancel:hover { border-color: #ff3c3c; color: #ff6b6b; }
.roblox-linked-box { background: #11141c; border: 1px solid #2ddd6f33; border-radius: 16px; padding: 36px; max-width: 520px; margin: 0 auto 24px; text-align: center; }
.roblox-linked-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,221,111,0.1); color: #2ddd6f; border: 1px solid rgba(45,221,111,0.2); border-radius: 20px; padding: 6px 16px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.roblox-linked-box .roblox-confirm-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; display: block; border-color: #2ddd6f44; }
.roblox-linked-box .roblox-confirm-name { font-size: 22px; }
.roblox-linked-box .roblox-confirm-username, .roblox-linked-box .roblox-confirm-id { text-align: center; }
.roblox-unlink-btn { margin-top: 20px; background: transparent; border: 1px solid #ff3c3c44; color: #ff6b6b; border-radius: 8px; padding: 10px 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.roblox-unlink-btn:hover { background: rgba(255,60,60,0.1); border-color: #ff3c3c; }
@media(max-width:900px){
    .roblox-link-view { padding: 90px 5% 60px 5%; }
    .roblox-confirm-box { flex-direction: column; text-align: center; }
    .roblox-confirm-info { text-align: center; }
}
.profile-header-area { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.profile-title-block { display: flex; align-items: center; gap: 15px; }
.profile-title-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #8492a6; font-size: 16px; }
.profile-title-block h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.profile-title-block p { font-size: 13px; color: #566175; margin-top: 2px; }
.btn-profile-back { background: #200c0c; border: 1px solid #4a1515; color: #ff7676; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-profile-back:hover { background: #2f1212; border-color: #631d1d; }
.profile-card-panel { background: #11131a; border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; padding: 30px; margin-bottom: 25px; }
.user-main-row { display: flex; align-items: flex-start; gap: 25px; border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 30px; margin-bottom: 30px; }
.user-panel-avatar { width: 80px; height: 80px; border-radius: 16px; background: linear-gradient(135deg, #a855f7, #3b82f6); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: bold; }
.user-panel-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px 40px; flex-grow: 1; }
.detail-field { display: flex; flex-direction: column; }
.detail-field label { font-size: 12px; color: #4e5768; margin-bottom: 6px; font-weight: 600; }
.detail-field span { font-size: 15px; font-weight: 700; color: #fff; }
.badge-pill { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; text-transform: uppercase; }
.badge-green { background: rgba(45,221,111,0.1); color: #2ddd6f; border: 1px solid rgba(45,221,111,0.15); }
.badge-grey { background: rgba(255,255,255,0.05); color: #a3a8b2; border: 1px solid rgba(255,255,255,0.05); }
.profile-balances-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 15px; }
.balance-card-box { background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04); border-radius: 12px; padding: 16px 20px; min-height: 85px; }
.balance-card-box label { font-size: 11px; color: #566175; font-weight: 600; margin-bottom: 8px; display: block; }
.balance-card-box .val { font-size: 18px; font-weight: 800; color: #fff; }
.balance-card-box.gold-accent { border-color: rgba(245,158,11,0.2); }
.balance-card-box.gold-accent label { color: #f59e0b; }
.balance-card-box.gold-accent .val { color: #f59e0b; }
.balance-card-box.green-accent { border-color: rgba(16,185,129,0.2); }
.balance-card-box.green-accent label { color: #10b981; }
.balance-card-box.green-accent .val { color: #10b981; }
.roblox-link-panel { background: #021424; border: 1px solid #072a47; border-radius: 16px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.roblox-user-info-block { display: flex; align-items: center; gap: 20px; }
.roblox-avatar-glow-ring { width: 76px; height: 76px; border-radius: 50%; border: 2px solid #00a2ff; box-shadow: 0 0 15px rgba(0,162,255,0.6); display: flex; align-items: center; justify-content: center; background: #010b14; overflow: hidden; }
.roblox-avatar-glow-ring img { width: 100%; height: 100%; object-fit: cover; }
.roblox-text-data h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.5px; }
.roblox-text-data p { font-size: 13px; color: #728ca6; line-height: 1.5; font-weight: 500; }
.roblox-text-data p strong { color: #fff; font-weight: 600; }
.btn-roblox-edit { background: #0099ff; color: #fff; border: none; padding: 12px 24px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.btn-roblox-edit:hover { background: #0082da; transform: translateY(-1px); }

.shop-container { display: none; padding: 100px 10% 80px 10%; background: #0a0c10; min-height: 100vh; animation: fadeInUp 0.4s ease; }
.shop-hero-text { text-align: center; margin-bottom: 40px; }
.shop-hero-text h2 { font-size: 38px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.shop-hero-text p { color: #566175; font-size: 13px; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.shop-tab-bar { display: flex; justify-content: center; margin-bottom: 36px; }
.shop-tab-group { display: flex; gap: 0; position: relative; background: #0d0f14; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 6px; }
.shop-tab-btn { padding: 12px 32px; border-radius: 11px; font-size: 12px; font-weight: 800; cursor: pointer; border: none; background: transparent; color: #3a4555; display: flex; align-items: center; gap: 9px; transition: all 0.25s; letter-spacing: 1px; text-transform: uppercase; position: relative; z-index: 1; }
.shop-tab-btn i { font-size: 13px; transition: transform 0.25s; }
.shop-tab-btn.active i { transform: scale(1.15); }
.shop-tab-btn:hover:not(.active) { color: #666; }
.shop-tab-btn.active.credit { background: linear-gradient(135deg, rgba(79,142,247,0.22), rgba(79,142,247,0.08)); color: #7ab3ff; border: 1px solid rgba(79,142,247,0.25); box-shadow: 0 2px 12px rgba(79,142,247,0.15); }
.shop-tab-btn.active.point { background: linear-gradient(135deg, rgba(245,158,11,0.22), rgba(245,158,11,0.08)); color: #fbbf5a; border: 1px solid rgba(245,158,11,0.25); box-shadow: 0 2px 12px rgba(245,158,11,0.15); }
.shop-tab-btn.active.topup { background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(168,85,247,0.08)); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); box-shadow: 0 2px 12px rgba(168,85,247,0.15); }
.tab-badge { font-size: 9px; font-weight: 900; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; background: rgba(255,255,255,0.08); color: #3a4555; }
.shop-tab-btn.active.credit .tab-badge { background: rgba(79,142,247,0.25); color: #7ab3ff; }
.shop-tab-btn.active.point .tab-badge { background: rgba(245,158,11,0.25); color: #fbbf5a; }
.shop-tab-btn.active.topup .tab-badge { background: rgba(168,85,247,0.25); color: #c084fc; }
.shop-filter-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.shop-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-btn { padding: 8px 18px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); color: #566175; transition: all 0.2s; letter-spacing: 0.5px; }
.cat-btn.active { background: #4f8ef7; color: #fff; border-color: #4f8ef7; }
.cat-btn:hover:not(.active) { background: rgba(255,255,255,0.05); color: #aaa; border-color: rgba(255,255,255,0.1); }
.shop-search { display: flex; align-items: center; gap: 10px; background: #0d0f14; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 10px 16px; min-width: 220px; transition: border-color 0.2s; }
.shop-search:focus-within { border-color: rgba(255,255,255,0.12); }
.shop-search i { color: #566175; font-size: 13px; }
.shop-search input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Inter', sans-serif; width: 100%; }
.shop-search input::placeholder { color: #2a3344; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.shop-item-card { background: #11131a; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; cursor: pointer; position: relative; animation: fadeInUp 0.35s ease both; }
.shop-item-card:hover { transform: translateY(-5px); border-color: rgba(79,142,247,0.3); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.shop-item-card.soldout { opacity: 0.6; }
.shop-item-card.soldout:hover { transform: none; border-color: rgba(255,255,255,0.05); box-shadow: none; }
.shop-item-img { width: 100%; height: 150px; background: #161921; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.shop-item-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, #11131a 100%); }
.shop-item-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; transition: transform 0.4s ease; }
.shop-item-card:not(.soldout):hover .shop-item-img img { transform: scale(1.05); }
.shop-item-badge { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 800; padding: 3px 9px; border-radius: 6px; letter-spacing: 1px; z-index: 3; }
.badge-new { background: rgba(45,221,111,0.15); color: #2ddd6f; border: 1px solid rgba(45,221,111,0.2); }
.badge-hot { background: rgba(255,77,77,0.15); color: #ff4d4d; border: 1px solid rgba(255,77,77,0.2); }
.badge-rare { background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.2); }
.badge-sale { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.badge-soldout { background: rgba(100,100,100,0.2); color: #aaa; border: 1px solid rgba(255,255,255,0.08); font-size: 9px; font-weight: 900; padding: 3px 9px; border-radius: 6px; letter-spacing: 1.5px; }
.shop-item-body { padding: 14px 16px 16px; }
.shop-item-cat { font-size: 10px; font-weight: 700; color: #3a4555; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.shop-item-name { font-size: 13px; font-weight: 700; color: #d0d8e8; margin-bottom: 6px; line-height: 1.3; }
.shop-item-stock { font-size: 11px; font-weight: 600; color: #3a4555; margin-bottom: 10px; }
.shop-item-stock.low { color: #f59e0b; }
.shop-item-stock.out { color: #ff4d4d; }
.shop-item-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shop-item-price { font-size: 15px; font-weight: 800; color: #4f8ef7; font-variant-numeric: tabular-nums; }
.shop-item-price.gold { color: #f59e0b; }
.btn-add-cart { background: rgba(79,142,247,0.08); border: 1px solid rgba(79,142,247,0.2); color: #4f8ef7; padding: 8px 16px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.btn-add-cart:hover:not(:disabled) { background: #4f8ef7; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(79,142,247,0.3); }
.btn-add-cart.gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); color: #f59e0b; }
.btn-add-cart.gold:hover:not(:disabled) { background: #f59e0b; color: #fff; box-shadow: 0 4px 12px rgba(245,158,11,0.3); }
.btn-add-cart.in-cart { background: rgba(79,142,247,0.15); border-color: rgba(79,142,247,0.4); }
.btn-add-cart.in-cart.gold { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.4); }
.btn-add-cart:disabled { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.05); color: #3a4555; cursor: not-allowed; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1200; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 440px; background: #0d0f14; border-left: 1px solid rgba(255,255,255,0.06); z-index: 1300; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 16px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.cart-header h3 span { font-size: 11px; font-weight: 800; background: #4f8ef7; color: #fff; padding: 2px 8px; border-radius: 6px; letter-spacing: 1px; }
.cart-close { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); color: #666; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 8px; font-size: 16px; transition: all 0.15s; }
.cart-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 12px; }
.cart-items-list::-webkit-scrollbar { width: 4px; }
.cart-items-list::-webkit-scrollbar-track { background: transparent; }
.cart-items-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.cart-item-row { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 14px 16px; display: flex; align-items: center; gap: 14px; border-radius: 10px; transition: all 0.25s ease; animation: fadeInUp 0.3s ease; }
.cart-item-row.removing { opacity:0; transform: translateX(20px); pointer-events: none; }
.cart-item-emoji { font-size: 28px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #11131a; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-emoji img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .name { font-size: 13px; font-weight: 700; color: #d0d8e8; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-info .price { font-size: 12px; font-weight: 800; color: #4f8ef7; }
.cart-item-info .price.gold { color: #f59e0b; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn { width: 26px; height: 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #aaa; font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 6px; transition: all 0.15s; font-weight: 700; }
.qty-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.qty-val { font-size: 13px; font-weight: 800; width: 32px; min-width: 20px; text-align: center; background: transparent; border: none; color: #fff; font-family: inherit; -moz-appearance: textfield; }
.qty-val::-webkit-outer-spin-button, .qty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-val:focus { outline: none; }
.cart-remove { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #3a4555; font-size: 13px; transition: color 0.15s; flex-shrink: 0; }
.cart-remove:hover { color: #ff4d4d; }
.cart-empty { text-align: center; padding: 60px 0; color: #2a3344; }
.cart-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.cart-footer { padding: 24px 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.cart-summary { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: #566175; }
.cart-summary-row.total { color: #fff; font-size: 16px; font-weight: 800; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.05); }
.cart-summary-row.total span:last-child { color: #4f8ef7; }
.cart-points-check { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.cart-points-check .label { color: #566175; font-weight: 600; }
.cart-points-check .val { font-weight: 800; }
.cart-points-check .val.ok { color: #2ddd6f; }
.cart-points-check .val.nok { color: #ff4d4d; }
.btn-checkout { width: 100%; padding: 14px; background: #4f8ef7; border: none; color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: background 0.15s, transform 0.15s, box-shadow 0.15s; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-checkout:hover:not(:disabled) { background: #3b7ee6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,142,247,0.35); }
.btn-checkout:disabled { background: rgba(79,142,247,0.2); color: #2a3a5a; cursor: not-allowed; }

.topup-section { padding: 0 0 60px 0; }
.topup-gate { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:60vh; padding: 60px 20px; text-align:center; }
.topup-gate-icon { width:64px; height:64px; border-radius:50%; background:rgba(168,85,247,0.12); display:flex; align-items:center; justify-content:center; font-size:26px; color:#a855f7; margin-bottom:20px; }
.topup-gate h4 { font-size:20px; font-weight:800; margin-bottom:10px; }
.topup-gate p { color:#566175; font-size:13px; max-width:340px; line-height:1.6; margin-bottom:24px; }
.topup-gate-btn { display:inline-flex; align-items:center; gap:8px; background:#5865F2; color:#fff; border:none; border-radius:8px; padding:12px 24px; font-size:14px; font-weight:700; cursor:pointer; transition:opacity .2s; }
.topup-gate-btn:hover { opacity:.85; }
.topup-hero { text-align: center; margin-bottom: 50px; }
.topup-hero h3 { font-size: 34px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 10px; }
.topup-hero h3 span { color: #a855f7; }
.topup-hero p { color: #566175; font-size: 13px; max-width: 480px; margin: 0 auto; line-height: 1.6; }
.topup-reset-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.2); color: #a855f7; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-top: 12px; letter-spacing: 0.5px; }
.topup-milestone-wrap { position: relative; padding: 0 20px; margin-bottom: 30px; }
.topup-track { position: relative; height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; margin: 0 40px; }
.topup-track-fill { height: 100%; background: linear-gradient(90deg, #a855f7, #7c3aed); border-radius: 4px; width: 0%; transition: width 1s ease; }
.topup-milestones { display: flex; justify-content: space-between; position: absolute; top: 50%; left: 40px; right: 40px; transform: translateY(-50%); }
.topup-node { width: 16px; height: 16px; border-radius: 50%; background: #1a1d26; border: 2px solid rgba(255,255,255,0.1); transition: all 0.3s; display: flex; align-items: center; justify-content: center; position: absolute; }
.topup-node.reached { background: #a855f7; border-color: #a855f7; box-shadow: 0 0 12px rgba(168,85,247,0.6); }
.topup-node.reached::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.topup-amounts { position: relative; height: 14px; margin: 20px 80px 0; }
.topup-amount-label { position: absolute; top: 0; transform: translateX(-50%); font-size: 11px; font-weight: 700; color: #3a4555; text-align: center; white-space: nowrap; }
.topup-amount-label.reached { color: #a855f7; }
.topup-rewards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 20px; }
.topup-reward-card { background: #11131a; border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; position: relative; transition: border-color 0.3s, transform 0.3s; }
.topup-reward-card:hover { transform: translateY(-2px); }
.topup-reward-card.unlocked { border-color: rgba(168,85,247,0.35); background: rgba(168,85,247,0.04); }
.topup-reward-card.unlocked .reward-lock-icon { display: none; }
.reward-lock-icon { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; background: rgba(255,255,255,0.04); border-radius: 6px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.reward-lock-icon i { color: #3a4555; font-size: 10px; }
.reward-img { width: 80px; height: 80px; border-radius: 10px; background: #1a1d26; display: flex; align-items: center; justify-content: center; font-size: 36px; filter: grayscale(1) brightness(0.4); transition: filter 0.3s; overflow: hidden; }
.reward-img img { width: 100%; height: 100%; object-fit: cover; }
.topup-reward-card.unlocked .reward-img { filter: none; }
.reward-qty-badge { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-weight: 800; color: #566175; }
.topup-reward-card.unlocked .reward-qty-badge { background: rgba(168,85,247,0.15); color: #a855f7; }
.reward-name { font-size: 13px; font-weight: 700; color: #3a4555; line-height: 1.3; }
.topup-reward-card.unlocked .reward-name { color: #c5d0e0; }
.reward-milestone { font-size: 11px; font-weight: 700; color: #252e3e; }
.topup-reward-card.unlocked .reward-milestone { color: #6040a0; }
.reward-status-btn { width: 100%; padding: 9px; border-radius: 8px; font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); color: #3a4555; cursor: default; letter-spacing: 0.5px; }
.reward-status-btn.claim { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); color: #a855f7; cursor: pointer; transition: all 0.2s; }
.reward-status-btn.claim:hover { background: #a855f7; color: #fff; border-color: #a855f7; }
.topup-input-panel { background: #11131a; border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; padding: 30px; margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.topup-input-left h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.topup-input-left p { font-size: 13px; color: #566175; }
.topup-input-right { display: flex; gap: 12px; align-items: center; }
.topup-amount-input { background: #0a0c10; border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 12px 18px; border-radius: 10px; font-size: 15px; font-weight: 700; outline: none; width: 180px; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.topup-amount-input:focus { border-color: #a855f7; }
.btn-topup-submit { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; border: none; padding: 13px 28px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-topup-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,85,247,0.35); }
.topup-progress-panel { background: #11131a; border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; padding: 24px 28px; margin-top: 16px; }
.topup-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.topup-progress-header span { font-size: 13px; font-weight: 600; color: #566175; }
.topup-progress-header strong { font-size: 16px; font-weight: 800; color: #a855f7; }
.topup-bar-bg { height: 8px; background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.topup-bar-inner { height: 100%; background: linear-gradient(90deg, #a855f7, #7c3aed); border-radius: 8px; width: 0%; transition: width 0.8s ease; }
.topup-next-hint { margin-top: 12px; font-size: 12px; color: #3a4555; font-weight: 600; }
.topup-next-hint span { color: #6040a0; }

.redeem-container { display: none; padding: 120px 10% 80px 10%; background: #0a0c10; min-height: 100vh; animation: fadeInUp 0.4s ease; }
.redeem-inner { max-width: 680px; margin: 0 auto; }
.redeem-label { font-size: 11px; font-weight: 800; color: #4f8ef7; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.redeem-label::before { content: ''; width: 24px; height: 2px; background: #4f8ef7; border-radius: 2px; }
.redeem-inner h2 { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; line-height: 1.1; }
.redeem-inner h2 span { color: #4f8ef7; font-style: italic; }
.redeem-inner > p { color: #566175; font-size: 14px; line-height: 1.7; margin-bottom: 40px; }
.redeem-box { background: #11131a; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 36px; margin-bottom: 24px; }
.redeem-box-title { font-size: 11px; font-weight: 800; color: #2a3a5a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.redeem-box-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.04); }
.redeem-input-wrap { position: relative; margin-bottom: 28px; }
.redeem-input { width: 100%; background: #0a0c10; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; border-top: 3px solid #4f8ef7; color: #fff; padding: 18px 20px; font-size: 20px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; font-family: 'Inter', monospace; outline: none; transition: border-color 0.2s; }
.redeem-input:focus { border-color: rgba(255,255,255,0.12); border-top-color: #4f8ef7; }
.redeem-input::placeholder { color: #1e2838; letter-spacing: 3px; font-weight: 700; font-size: 16px; }
.redeem-input-hint { margin-top: 8px; font-size: 11px; color: #2a3344; font-weight: 600; letter-spacing: 0.5px; display: block; }
.btn-redeem { width: 100%; padding: 15px; background: #4f8ef7; border: none; color: #fff; font-size: 13px; font-weight: 900; cursor: pointer; letter-spacing: 2px; text-transform: uppercase; transition: background 0.15s, transform 0.15s, box-shadow 0.15s; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 10px; }
.btn-redeem:hover { background: #3b7ee6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,142,247,0.35); }
.redeem-result { display: none; padding: 16px 20px; border: 1px solid; border-radius: 10px; margin-bottom: 16px; }
.redeem-result.success { background: rgba(45,221,111,0.06); border-color: rgba(45,221,111,0.2); }
.redeem-result.error { background: rgba(255,77,77,0.06); border-color: rgba(255,77,77,0.2); }
.redeem-result p { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.redeem-result.success p { color: #2ddd6f; }
.redeem-result.error p { color: #ff4d4d; }
.redeem-guide { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.guide-step { background: #11131a; border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; padding: 24px 20px; transition: transform 0.3s, border-color 0.3s; }
.guide-step:hover { transform: translateY(-3px); border-color: rgba(79,142,247,0.2); }
.guide-step-num { font-size: 11px; font-weight: 800; color: #1e2838; letter-spacing: 2px; margin-bottom: 12px; }
.guide-step-icon { font-size: 22px; margin-bottom: 12px; color: #4f8ef7; }
.guide-step h4 { font-size: 13px; font-weight: 800; color: #d0d8e8; margin-bottom: 6px; }
.guide-step p { font-size: 12px; color: #3a4555; line-height: 1.6; font-weight: 500; }
.redeem-notice { background: rgba(79,142,247,0.04); border: 1px solid rgba(79,142,247,0.1); border-radius: 12px; padding: 16px 20px; margin-top: 24px; }
.redeem-notice h5 { font-size: 11px; font-weight: 800; color: #4f8ef7; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.redeem-notice ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.redeem-notice ul li { font-size: 12px; color: #566175; font-weight: 500; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.redeem-notice ul li::before { content: '—'; color: #1e2838; flex-shrink: 0; }

.tos-container { display: none; padding: 120px 10% 80px 10%; background: #0a0c10; min-height: 100vh; animation: fadeInUp 0.4s ease; }
.tos-inner { max-width: 860px; margin: 0 auto; }
.tos-label { font-size: 11px; font-weight: 800; color: #4f8ef7; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.tos-label::before { content: ''; width: 24px; height: 2px; background: #4f8ef7; border-radius: 2px; }
.tos-inner h2 { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; line-height: 1.1; }
.tos-inner h2 span { color: #4f8ef7; font-style: italic; }
.tos-inner > p { color: #566175; font-size: 14px; line-height: 1.7; margin-bottom: 36px; }
.tos-card-grid { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.tos-card { background: #11131a; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 26px 30px; transition: border-color 0.25s, transform 0.25s; }
.tos-card:hover { border-color: rgba(79,142,247,0.25); transform: translateY(-2px); }
.tos-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tos-card-num { width: 36px; height: 36px; border-radius: 10px; background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2); color: #4f8ef7; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tos-card-header h3 { font-size: 16px; font-weight: 800; color: #fff; }
.tos-card-content { color: #8492a6; font-size: 13px; line-height: 1.8; font-weight: 500; }
.tos-card-content p { margin-bottom: 8px; }
.tos-card-content p:last-child { margin-bottom: 0; }
.tos-card-content ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.tos-card-content ul li { position: relative; padding-left: 18px; }
.tos-card-content ul li::before { content: '•'; position: absolute; left: 0; color: #4f8ef7; font-weight: 900; }
.tos-card-content strong { color: #d0d8e8; }
.tos-card-content .highlight-alert { color: #f59e0b; font-weight: 700; }
.tos-notice-box { background: rgba(79,142,247,0.04); border: 1px solid rgba(79,142,247,0.12); border-radius: 14px; padding: 22px 26px; display: flex; align-items: flex-start; gap: 16px; margin-top: 24px; }
.tos-notice-icon { font-size: 22px; color: #4f8ef7; margin-top: 2px; flex-shrink: 0; }
.tos-notice-text h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.tos-notice-text p { font-size: 12px; color: #566175; line-height: 1.6; }

.donate-container { display: none; padding: 100px 10% 80px 10%; background: #0a0c10; min-height: 100vh; animation: fadeInUp 0.4s ease; }
.donate-hero-text { text-align: center; margin-bottom: 48px; }
.donate-hero-text h2 { font-size: 38px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.donate-hero-text h2 span { color: #4f8ef7; font-style: italic; }
.donate-hero-text p { color: #566175; font-size: 14px; line-height: 1.7; max-width: 500px; margin: 0 auto; }
.donate-method-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 640px; margin: 0 auto 40px auto; }
.donate-method-tab { background: #11131a; border: 2px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 22px 28px; cursor: pointer; display: flex; align-items: center; gap: 18px; transition: all 0.2s; }
.donate-method-tab:hover { border-color: rgba(255,255,255,0.1); background: #13161f; }
.donate-method-tab.active-wallet { border-color: #f59e0b; background: rgba(245,158,11,0.06); }
.donate-method-tab.active-bank { border-color: #4f8ef7; background: rgba(79,142,247,0.06); }
.donate-tab-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.donate-tab-icon.wallet-icon { background: rgba(245,158,11,0.12); color: #f59e0b; }
.donate-tab-icon.bank-icon { background: rgba(79,142,247,0.12); color: #4f8ef7; }
.donate-method-tab.active-wallet .donate-tab-icon.wallet-icon { background: rgba(245,158,11,0.2); }
.donate-method-tab.active-bank .donate-tab-icon.bank-icon { background: rgba(79,142,247,0.2); }
.donate-tab-text h4 { font-size: 15px; font-weight: 800; color: #d0d8e8; margin-bottom: 3px; }
.donate-method-tab.active-wallet .donate-tab-text h4 { color: #f59e0b; }
.donate-method-tab.active-bank .donate-tab-text h4 { color: #4f8ef7; }
.donate-tab-text p { font-size: 12px; color: #566175; font-weight: 500; }
.donate-tab-check { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 11px; color: transparent; transition: all 0.2s; }
.donate-method-tab.active-wallet .donate-tab-check { background: #f59e0b; border-color: #f59e0b; color: #fff; }
.donate-method-tab.active-bank .donate-tab-check { background: #4f8ef7; border-color: #4f8ef7; color: #fff; }
.donate-panel { display: none; max-width: 640px; margin: 0 auto; }
.donate-panel.show { display: block; animation: fadeInUp 0.3s ease; }
.angpao-card { background: #11131a; border: 1px solid rgba(245,158,11,0.15); border-radius: 18px; overflow: hidden; }
.angpao-top { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03)); padding: 36px; display: flex; flex-direction: column; align-items: center; border-bottom: 1px solid rgba(245,158,11,0.1); text-align: center; }
.angpao-icon-circle { width: 70px; height: 70px; border-radius: 50%; background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); display: flex; align-items: center; justify-content: center; font-size: 30px; color: #f59e0b; margin-bottom: 18px; }
.angpao-top h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.angpao-top p { font-size: 13px; color: #8492a6; line-height: 1.7; max-width: 420px; }
.angpao-top p strong { color: #f59e0b; }
.angpao-bottom { padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.angpao-input-label { font-size: 11px; font-weight: 800; color: #f59e0b; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.angpao-input-wrap { position: relative; }
.angpao-input { width: 100%; background: #0a0c10; border: 1px solid rgba(245,158,11,0.2); border-radius: 12px; color: #fff; padding: 16px 18px; font-size: 14px; font-weight: 600; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
.angpao-input:focus { border-color: #f59e0b; }
.angpao-input::placeholder { color: #2a3344; font-weight: 500; }
.angpao-hint { font-size: 11px; color: #3a4555; font-weight: 500; line-height: 1.6; }
.angpao-hint strong { color: #8492a6; }
.wallet-step-row { display: flex; align-items: flex-start; gap: 14px; }
.wallet-step-num { width: 26px; height: 26px; border-radius: 50%; background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); color: #f59e0b; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.wallet-step-text { font-size: 13px; color: #8492a6; font-weight: 500; line-height: 1.6; }
.wallet-step-text strong { color: #d0d8e8; font-weight: 700; }
.donate-submit-btn { width: 100%; padding: 16px; border: none; color: #fff; font-size: 14px; font-weight: 800; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: all 0.2s; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; }
.donate-submit-btn.wallet-btn { background: #f59e0b; }
.donate-submit-btn.wallet-btn:hover { background: #e08e00; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.donate-submit-btn.bank-btn { background: #4f8ef7; }
.donate-submit-btn.bank-btn:hover { background: #3b7ee6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,142,247,0.35); }
.angpao-result { display: none; padding: 14px 16px; border: 1px solid; border-radius: 10px; font-size: 12px; font-weight: 700; }
.angpao-result.success { background: rgba(45,221,111,0.06); border-color: rgba(45,221,111,0.2); color: #2ddd6f; }
.angpao-result.error { background: rgba(255,77,77,0.06); border-color: rgba(255,77,77,0.2); color: #ff4d4d; }
.upload-drop-zone { border: 2px dashed rgba(245,158,11,0.2); border-radius: 12px; padding: 32px 24px; text-align: center; cursor: pointer; transition: all 0.2s; position: relative; background: rgba(245,158,11,0.02); }
.upload-drop-zone:hover { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.04); }
.upload-drop-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.upload-icon { font-size: 32px; color: rgba(245,158,11,0.4); margin-bottom: 12px; }
.upload-text-main { font-size: 14px; font-weight: 700; color: #8492a6; margin-bottom: 4px; }
.upload-text-sub { font-size: 12px; color: #3a4555; font-weight: 500; }
.upload-preview { display: none; width: 100%; border-radius: 8px; max-height: 200px; object-fit: contain; margin-top: 12px; }
.bank-account-card { background: #11131a; border: 1px solid rgba(79,142,247,0.15); border-radius: 18px; overflow: hidden; }
.bank-card-top { background: linear-gradient(135deg, rgba(79,142,247,0.12), rgba(79,142,247,0.03)); padding: 32px; border-bottom: 1px solid rgba(79,142,247,0.1); display: flex; flex-direction: column; align-items: center; text-align: center; }
.bank-logo-block { width: 64px; height: 64px; border-radius: 16px; background: #1a6b2c; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 28px; }
.bank-name-th { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.bank-name-en { font-size: 12px; color: #566175; font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; }
.bank-info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; width: 100%; }
.bank-info-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 14px 16px; text-align: left; }
.bank-info-label { font-size: 10px; font-weight: 700; color: #3a4555; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.bank-info-value { font-size: 15px; font-weight: 800; color: #fff; }
.bank-acct-number { font-size: 22px; font-weight: 900; color: #4f8ef7; letter-spacing: 2px; font-variant-numeric: tabular-nums; padding: 20px 0 4px; }
.copy-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2); color: #4f8ef7; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: all 0.2s; margin-top: 8px; letter-spacing: 0.5px; }
.copy-btn:hover { background: rgba(79,142,247,0.2); }
.bank-card-bottom { padding: 28px 32px; }
.bank-upload-section { background: rgba(79,142,247,0.03); border: 1px solid rgba(79,142,247,0.1); border-radius: 14px; padding: 24px; }
.bank-upload-title { font-size: 12px; font-weight: 800; color: #4f8ef7; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.bank-note { background: rgba(79,142,247,0.06); border: 1px solid rgba(79,142,247,0.12); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; font-size: 12px; color: #728ca6; line-height: 1.6; font-weight: 500; }
.bank-note strong { color: #4f8ef7; }
.upload-drop-zone.bank-zone { border-color: rgba(79,142,247,0.2); background: rgba(79,142,247,0.02); }
.upload-drop-zone.bank-zone:hover { border-color: rgba(79,142,247,0.4); background: rgba(79,142,247,0.04); }
.upload-drop-zone.bank-zone .upload-icon { color: rgba(79,142,247,0.4); }

.admin-container { display: none; min-height: 100vh; background: #0a0c10; padding-top: 70px; animation: fadeIn 0.3s ease; }
.admin-shell { display: flex; min-height: calc(100vh - 70px); }
.admin-sidebar { width: 240px; flex-shrink: 0; background: #0d0f14; border-right: 1px solid rgba(255,255,255,0.05); padding: 28px 18px; display: flex; flex-direction: column; position: sticky; top: 70px; height: calc(100vh - 70px); overflow-y: auto; }
.admin-brand { padding: 0 10px 24px 10px; }
.admin-brand h2 { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; }
.admin-brand p { font-size: 11px; color: #4f8ef7; font-weight: 700; letter-spacing: 2px; margin-top: 2px; }
.admin-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-nav li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; color: #566175; cursor: pointer; transition: all 0.2s; }
.admin-nav li i { width: 16px; text-align: center; font-size: 14px; }
.admin-nav li:hover { background: rgba(255,255,255,0.03); color: #aaa; }
.admin-nav li.active { background: rgba(79,142,247,0.1); color: #4f8ef7; }
.admin-back { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; color: #ff7676; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.admin-back:hover { background: rgba(255,82,82,0.08); }
.admin-main { flex: 1; padding: 32px 36px 60px; overflow-x: hidden; }
.admin-page { display: none; }
.admin-page.active { display: block; }
.admin-page-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.3px; }
.admin-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.admin-card { background: #11131a; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 24px 26px; transition: transform 0.2s; }
.admin-card:hover { transform: translateY(-2px); }
.admin-card label { font-size: 12px; color: #566175; font-weight: 600; display: block; margin-bottom: 10px; }
.admin-card .amt { font-size: 26px; font-weight: 800; color: #fff; }
.admin-card .amt.accent { color: #4f8ef7; }
.admin-card .sub-link { font-size: 11px; color: #3a4555; font-weight: 600; margin-top: 8px; display: block; }
.admin-panel { background: #11131a; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.admin-panel-head { padding: 20px 26px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.admin-panel-head h3 { font-size: 14px; font-weight: 800; }
.admin-panel-head .meta { font-size: 11px; color: #3a4555; font-weight: 600; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 10px; color: #3a4555; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 26px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.admin-table td { padding: 14px 26px; font-size: 13px; color: #b5bed0; border-bottom: 1px solid rgba(255,255,255,0.03); font-weight: 600; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.015); }
.admin-badge { font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 6px; letter-spacing: 1px; }
.admin-badge.angpao { background: rgba(245,158,11,0.12); color: #f59e0b; }
.admin-badge.slip { background: rgba(79,142,247,0.12); color: #4f8ef7; }
.admin-amount { color: #2ddd6f; font-weight: 800; }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.admin-search { display: flex; align-items: center; gap: 10px; background: #0d0f14; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 10px 16px; min-width: 240px; }
.admin-search i { color: #566175; font-size: 13px; }
.admin-search input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Inter', sans-serif; width: 100%; }
.admin-search input::placeholder { color: #2a3344; }
.admin-btn { background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2); color: #4f8ef7; padding: 10px 20px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; }
.admin-btn:hover { background: #4f8ef7; color: #fff; }
.admin-btn.danger { background: rgba(255,82,82,0.08); border-color: rgba(255,82,82,0.2); color: #ff5252; }
.admin-btn.danger:hover { background: #ff5252; color: #fff; }
.admin-btn.success { background: rgba(45,221,111,0.08); border-color: rgba(45,221,111,0.2); color: #2ddd6f; }
.admin-btn.success:hover { background: #2ddd6f; color: #0a0c10; }
.admin-btn.purple { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.2); color: #a855f7; }
.admin-btn.purple:hover { background: #a855f7; color: #fff; }
.admin-action-icon { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: #566175; cursor: pointer; font-size: 12px; transition: all 0.2s; margin-right: 4px; }
.admin-action-icon:hover { background: rgba(79,142,247,0.12); color: #4f8ef7; border-color: rgba(79,142,247,0.2); }
.admin-action-icon.danger:hover { background: rgba(255,82,82,0.12); color: #ff5252; border-color: rgba(255,82,82,0.2); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 26px; }
.admin-form-field { display: flex; flex-direction: column; gap: 8px; }
.admin-form-field.full { grid-column: 1 / -1; }
.admin-form-field label { font-size: 11px; font-weight: 700; color: #566175; letter-spacing: 0.5px; }
.admin-form-field input, .admin-form-field select, .admin-form-field textarea { background: #0a0c10; border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 12px 14px; border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.admin-form-field input:focus, .admin-form-field select:focus, .admin-form-field textarea:focus { border-color: #4f8ef7; }
.admin-form-field select option { background: #0a0c10; }
.admin-form-actions { padding: 0 26px 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.admin-empty-row td { text-align: center; padding: 40px 26px; color: #2a3344; font-weight: 700; letter-spacing: 0.5px; }

.product-tab-bar { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.product-tab-btn { padding: 9px 20px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); color: #566175; transition: all 0.2s; letter-spacing: 0.5px; }
.product-tab-btn.active-credit { background: rgba(79,142,247,0.12); color: #7ab3ff; border-color: rgba(79,142,247,0.25); }
.product-tab-btn.active-point { background: rgba(245,158,11,0.12); color: #fbbf5a; border-color: rgba(245,158,11,0.25); }
.product-tab-btn.active-topup { background: rgba(168,85,247,0.12); color: #c084fc; border-color: rgba(168,85,247,0.25); }
.product-tab-btn:hover:not(.active-credit):not(.active-point):not(.active-topup) { color: #aaa; background: rgba(255,255,255,0.04); }

.add-product-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); align-items: center; justify-content: center; }
.add-product-modal.open { display: flex; }
.modal-box { background: #0d0f14; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; width: 540px; max-width: 95vw; max-height: 90vh; overflow-y: auto; animation: fadeInUp 0.3s ease; }
.modal-header { padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 16px; font-weight: 800; }
.modal-close { width: 34px; height: 34px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #666; font-size: 14px; transition: all 0.15s; }
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.modal-body { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.modal-field { display: flex; flex-direction: column; gap: 8px; }
.modal-field label { font-size: 11px; font-weight: 700; color: #566175; letter-spacing: 0.5px; }
.modal-field input, .modal-field select { background: #0a0c10; border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 12px 14px; border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; width: 100%; }
.modal-field input:focus, .modal-field select:focus { border-color: #4f8ef7; }
.modal-field select option { background: #0a0c10; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-img-preview { width: 100%; height: 120px; border-radius: 10px; background: #11131a; border: 1px dashed rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 8px; }
.modal-img-preview img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-preview .placeholder { color: #3a4555; font-size: 12px; font-weight: 600; text-align: center; }
.modal-footer { padding: 0 28px 28px; display: flex; gap: 12px; }
.stock-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.stock-ok { background: rgba(45,221,111,0.1); color: #2ddd6f; border: 1px solid rgba(45,221,111,0.15); }
.stock-low { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.15); }
.stock-out { background: rgba(255,82,82,0.1); color: #ff5252; border: 1px solid rgba(255,82,82,0.15); }

/* ===== PAYMENT MODAL ===== */
.payment-modal { display: none; position: fixed; inset: 0; z-index: 2100; background: rgba(0,0,0,0.8); align-items: center; justify-content: center; padding: 20px; }
.payment-modal.open { display: flex; }
.payment-box { background: #0d0f14; border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; width: 480px; max-width: 100%; max-height: 90vh; overflow-y: auto; animation: fadeInUp 0.3s ease; scrollbar-width: none; }
.payment-box::-webkit-scrollbar { display: none; }
.payment-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.payment-header-left { display: flex; align-items: center; gap: 14px; }
.payment-header-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(79,142,247,0.12); border: 1px solid rgba(79,142,247,0.25); display: flex; align-items: center; justify-content: center; color: #4f8ef7; font-size: 16px; }
.payment-header h3 { font-size: 16px; font-weight: 800; color: #fff; }
.payment-header p { font-size: 12px; color: #566175; margin-top: 2px; font-weight: 600; }
.payment-close { width: 34px; height: 34px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #666; font-size: 14px; transition: all 0.15s; flex-shrink: 0; }
.payment-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.payment-section { padding: 20px 26px 0; }
.payment-section-label { font-size: 10px; font-weight: 800; color: #3a4555; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

.pay-items-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; max-height: 160px; overflow-y: auto; scrollbar-width: none; }
.pay-items-list::-webkit-scrollbar { display: none; }
.pay-item-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 14px; }
.pay-item-img { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; background: #161921; flex-shrink: 0; }
.pay-item-img img { width: 100%; height: 100%; object-fit: cover; }
.pay-item-name { font-size: 13px; font-weight: 700; color: #d0d8e8; flex: 1; }
.pay-item-qty { font-size: 11px; color: #566175; font-weight: 600; }
.pay-item-price { font-size: 13px; font-weight: 800; color: #4f8ef7; }
.pay-item-price.gold { color: #f59e0b; }

.pay-total-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4px; }
.pay-total-row span:first-child { font-size: 13px; color: #566175; font-weight: 600; }
.pay-total-amt { font-size: 20px; font-weight: 900; color: #4f8ef7; }
.pay-total-amt.gold { color: #f59e0b; }

.pay-point-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pay-point-row { display: flex; justify-content: space-between; align-items: center; }
.pay-point-label { font-size: 13px; color: #566175; font-weight: 600; }
.pay-point-val { font-size: 15px; font-weight: 800; color: #fff; }
.pay-divider { height: 1px; background: rgba(255,255,255,0.05); }

.pay-method-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.pay-method-tab { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: #566175; transition: all 0.2s; }
.pay-method-tab:hover { background: rgba(255,255,255,0.04); color: #aaa; }
.pay-method-tab.active { background: rgba(79,142,247,0.08); border-color: rgba(79,142,247,0.25); color: #fff; }

.pay-input { width: 100%; background: #0a0c10; border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 13px 16px; border-radius: 10px; font-size: 13px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; margin-bottom: 10px; }
.pay-input:focus { border-color: #f59e0b; }
.pay-hint { font-size: 11px; color: #3a4555; font-weight: 500; line-height: 1.6; margin-bottom: 20px; }

.pay-bank-card { background: rgba(79,142,247,0.04); border: 1px solid rgba(79,142,247,0.12); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.pay-bank-logo { font-size: 28px; }
.pay-bank-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.pay-bank-owner { font-size: 12px; color: #566175; font-weight: 600; margin-bottom: 6px; }
.pay-bank-num { font-size: 16px; font-weight: 900; color: #4f8ef7; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pay-copy-btn { font-size: 11px; font-weight: 700; color: #4f8ef7; background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2); padding: 3px 10px; border-radius: 20px; cursor: pointer; transition: all 0.2s; letter-spacing: 0; }
.pay-copy-btn:hover { background: rgba(79,142,247,0.2); }

.pay-upload-zone { border: 2px dashed rgba(79,142,247,0.2); border-radius: 12px; padding: 24px; text-align: center; cursor: pointer; background: rgba(79,142,247,0.02); transition: all 0.2s; position: relative; margin-bottom: 20px; }
.pay-upload-zone:hover { border-color: rgba(79,142,247,0.4); background: rgba(79,142,247,0.04); }
.pay-upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }

.pay-btn { width: calc(100% - 52px); margin: 0 26px 24px; padding: 14px; border: none; color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
.pay-btn-point { background: linear-gradient(135deg, #f59e0b, #d97706); }
.pay-btn-point:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.pay-btn-point:disabled { background: rgba(245,158,11,0.2); color: rgba(255,255,255,0.3); cursor: not-allowed; }
.pay-btn-wallet { background: linear-gradient(135deg, #f59e0b, #d97706); }
.pay-btn-wallet:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.pay-btn-bank { background: linear-gradient(135deg, #4f8ef7, #3b7ee6); }
.pay-btn-bank:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,142,247,0.35); }

.pay-result { margin: 0 26px 24px; padding: 14px 18px; border-radius: 12px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.pay-result.success { background: rgba(45,221,111,0.08); border: 1px solid rgba(45,221,111,0.2); color: #2ddd6f; }
.pay-result.error { background: rgba(255,77,77,0.08); border: 1px solid rgba(255,77,77,0.2); color: #ff4d4d; }

footer { background: #06080b; border-top: 1px solid rgba(255,255,255,0.03); padding: 30px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.copyright { color: #444a53; font-size: 13px; }
.social-links { display: flex; gap: 12px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); color: #a3a8b2; border-radius: 50%; text-decoration: none; font-size: 16px; transition: all 0.2s; }
.social-icon:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-2px); }

/* ===== MOBILE TAB TOGGLE BUTTON ===== */
.mobile-tab-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #aaa;
    font-size: 15px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.mobile-tab-toggle:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-tab-toggle.active { background: rgba(79,142,247,0.15); border-color: rgba(79,142,247,0.3); color: #4f8ef7; }

/* ===== MOBILE LEFT TAB BAR ===== */
.mobile-left-tab {
    display: none;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    background: rgba(13,15,20,0.95);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: none;
    border-radius: 0 16px 16px 0;
    padding: 10px 6px;
    backdrop-filter: blur(16px);
    box-shadow: 4px 0 24px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-left-tab.open {
    transform: translateY(-50%) translateX(0);
}
.mlt-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    color: #566175;
    min-width: 52px;
    position: relative;
}
.mlt-item i {
    font-size: 17px;
    transition: color 0.2s, transform 0.2s;
}
.mlt-item span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.mlt-item:hover {
    background: rgba(255,255,255,0.05);
    color: #aaa;
}
.mlt-item:hover i { transform: scale(1.1); }
.mlt-item.active {
    background: rgba(79,142,247,0.12);
    color: #4f8ef7;
}
.mlt-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: #4f8ef7;
    border-radius: 0 3px 3px 0;
}

@media (max-width: 900px) {
    .mobile-left-tab { display: flex; }
    .mobile-tab-toggle { display: flex; }
    nav { padding: 0 16px; }
    .nav-links { display: none; }
    .logo { font-size: 15px; }
    .hero { padding: 100px 6% 50px 6%; }
    .hero-content { justify-content: flex-start; }
    .hero-text { align-items: flex-start; text-align: left; max-width: 100%; margin-left: 0; }
    .hero-text p { margin-left: 0; font-size: 13px; }
    .hero-bottom-row { justify-content: flex-start; }
    .hero-text h1.hero-headline { font-size: 34px; }
    .hero-badge-circle { display: none; }
    .stats-section { padding: 50px 6%; }
    .stats-heading { font-size: 26px; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-strip-item:not(:last-child)::after { right: auto; top: auto; bottom: 0; left: 20%; width: 60%; height: 1px; }
    .stat-strip-num { font-size: 40px; }
    .spotlight-section { padding: 50px 6% 60px; }
    .video-embed-wrap { padding-top: 56.25%; }
    .discord-strip { flex-direction: column; align-items: flex-start; }
    .discord-avatar-stack { order: 3; width: 100%; }
    .discord-join-btn { width: 100%; text-align: center; }
    .shop-container { padding: 90px 5% 60px 5%; }
    .shop-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .shop-tab-btn { padding: 10px 16px; font-size: 11px; }
    .shop-filter-row { flex-direction: column; align-items: flex-start; }
    .shop-search { width: 100%; }
    .cart-drawer { width: 100%; }
    .profile-page-view { padding: 90px 5% 60px 5%; }
    .history-page-view { padding: 90px 5% 60px 5%; }
    .hist-card-header { gap: 8px; }
    .hist-item-img { width: 36px; height: 36px; }
    .profile-balances-grid { grid-template-columns: repeat(2,1fr); }
    .redeem-container { padding: 90px 5% 60px 5%; }
    .redeem-guide { grid-template-columns: 1fr; }
    .tos-container { padding: 90px 5% 60px 5%; }
    .donate-container { padding: 90px 5% 60px 5%; }
    .donate-method-tabs { grid-template-columns: 1fr; }
    .topup-rewards-grid { grid-template-columns: repeat(2,1fr); }
    .admin-container { padding-top: 70px; }
    .admin-shell { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
    .admin-main { padding: 20px; }
    .admin-cards-row { grid-template-columns: 1fr; }
    .admin-form-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
    .user-main-row { flex-direction: column; }
    .user-panel-details { grid-template-columns: 1fr; }
    .roblox-link-panel { flex-direction: column; align-items: flex-start; }
    .modal-row { grid-template-columns: 1fr; }
}

@media (max-width: 550px) {
    .hero-text h1 { font-size: 28px; }
    .btn-group { flex-wrap: wrap; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-balances-grid { grid-template-columns: 1fr 1fr; }
    .topup-rewards-grid { grid-template-columns: repeat(2,1fr); }
    .shop-tab-btn { padding: 9px 12px; font-size: 10px; gap: 5px; }
    .tab-badge { display: none; }
    .stat-strip-num { font-size: 32px; }
}
