:root {
  --bg: #0a0918; --surface: #12102a; --surface-2: #1a1740; --surface-3: #211d4a;
  --border: rgba(255,255,255,0.06); --border-hover: rgba(255,255,255,0.12);
  --text: #f0ecff; --text-2: rgba(240,236,255,0.55); --text-3: rgba(240,236,255,0.3);
  --accent-orange: #f59e0b; --accent-amber: #fbbf24; --accent-purple: #a855f7; --accent-violet: #7c3aed;
  --accent-grad: linear-gradient(135deg, #f59e0b 0%, #f97316 45%, #c026d3 100%);
  --accent-grad-2: linear-gradient(135deg, #7c3aed, #a855f7);
  --green: #22c55e; --radius: 14px; --radius-sm: 10px; --radius-xs: 8px;
}

html { 
	font-size: 16px;
	scrollbar-gutter: stable;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  max-width: 540px; margin: 0 auto; min-height: 100vh;
  overflow-x: hidden; padding-bottom: 100px; position: relative;
}

/* ========== TOP DOWNLOAD APK ========== */
.main-dl-top-apk {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #f59e0b 100%);
	padding: 10px 16px;
	gap: 8px;	
}
.main-dl-top-apk .icon-dl-apk {
	display: flex;
}
.main-dl-top-apk .icon-dl-apk img {
	width: 40px;
	height: 40px;
}
.main-dl-top-apk .content-dl-apk {
	display: flex;
	justify-content: center;
	align-items: center;	
	gap: 8px;
	font-size: 14px;
	color: var(--text);
}
.main-dl-top-apk .content-dl-apk img {
	width: 36px;
	height: 36px;
}
.main-dl-top-apk .action-dl-apk {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;	
}
.main-dl-top-apk .goto-dl-apk .btn {
	background: linear-gradient(45deg, #7c3aed 0%, #a855f7 100%);
	border: 1px solid #b488ff;	
	color: var(--text);
}
.main-dl-top-apk .close-dl-apk {
	color: rgba(0, 0, 0, 0.59);
	font-size: 16px;
}

/* ========== BURGER MENU ========== */

.burger-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 100;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.burger-overlay.show {
	display: block;
}
.burger-drawer {
	position: fixed;
	top: 0;
	width: 0;
	height: 100vh;
	background: var(--surface);
	z-index: 101;
	overflow: hidden;
	transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
	display: flex;
	flex-direction: column;
}
.burger-drawer.show {
	width: 280px;
	overflow-y: auto;
	border-right: 1px solid var(--border);
}
.burger-drawer-inner {
	min-width: 280px;
	width: 280px;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.burger-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid var(--border);
}
.burger-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.06);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	color: var(--text-2);
}
.burger-close svg {
	width: 20px;
	height: 20px;
}
.burger-brand {
	font-weight: 900;
	font-size: 20px;
	background: var(--accent-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.burger-auth {
	display: flex;
	gap: 8px;
	padding: 16px;
}
.burger-btn {
	flex: 1;
	height: 44px;
	border: none;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
.burger-btn.masuk {
	background: var(--accent-grad-2);
	color: #fff;
}
.burger-btn.daftar {
	background: var(--accent-grad);
	color: #fff;
}
.burger-shortcuts {
	display: flex;
	gap: 8px;
	padding: 0 16px 16px;
}
.burger-shortcut {
	flex: 1;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: var(--surface-2);
	color: var(--text-2);
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.burger-shortcut.deposit {
	background: rgba(124,58,237,0.15);
	border-color: rgba(124,58,237,0.3);
	color: var(--accent-purple);
}
.burger-shortcut.withdraw {
	background: rgba(88, 238, 143, 0.15);
	border-color: rgba(88, 238, 143, 0.3);
	color: var(--green);
}
.burger-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	padding: 8px 16px 16px;
}
.burger-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 4px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--text-2);
	transition: background 0.2s;
	cursor: pointer;
}
.burger-item:hover {
	background: rgba(255,255,255,0.04);
}
.burger-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: radial-gradient(circle at 30% 30%, rgba(124,58,237,0.3), rgba(124,58,237,0.08));
	border: 1px solid rgba(255,255,255,0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.burger-item span {
	font-size: 11px;
	font-weight: 600;
	text-align: center;
}
.burger-share {
	padding: 16px;
	border-top: 1px solid var(--border);
}
.bruger-share-title {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}
.burger-share-row {
	display: flex;
	gap: 10px;
}
.share-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 19px;
	color: inherit;
}
.share-icon:hover {
	transform: scale(1.1);
	text-decoration: none;
}
.share-icon svg {
	width: 20px;
	height: 20px;
}
.share-icon.facebook {
	background:rgba(59,130,246,0.15);
	color: #3b82f6;
}
.share-icon.whatsapp {
	background:rgba(34,197,94,0.15);
	color: #22c55e;
}
.share-icon.telegram {
	background:rgba(59,130,246,0.15);
	color: #3b82f6;
}
.share-icon.instagram {
	background:rgba(236,72,153,0.15);
	color: #ec4899;
}
.share-icon.twitter {
	background:rgba(255,255,255,0.08);
	color: #fff;
}
.burger-cs-link {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding: 18px 16px;
	border-top: 1px solid var(--border);
	text-decoration: none;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s;
	cursor: pointer;
}
.burger-cs-link:hover {
	background: rgba(255,255,255,0.03);
	color: inherit;
}
.burger-cs-link span:first-child {
	font-size: 20px;
}
.burger-cs-link span:nth-child(2) {
	flex: 1;
}

/* ========== PAGE PANEL ========== */
.page-panel-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 48;
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
}

.page-panel-backdrop.show {
    display: block;
}

.page-panel {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateX(100%);
    width: 100%;
    max-width: 540px;
    height: 100vh;
    background: var(--bg);
    z-index: 49;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.page-panel.show {
    transform: translateX(-50%) translateX(0);
    visibility: visible;
    pointer-events: all;
}

.page-panel-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(10,9,24,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.page-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 160px;
    scrollbar-width: none;
}

.page-panel-content::-webkit-scrollbar {
    display: none;
}

@keyframes panelOpen {
    0%   { transform: translateX(-50%) translateX(0) scale(1.05); opacity: 0; filter: blur(12px); }
    100% { transform: translateX(-50%) translateX(0) scale(1); opacity: 1; filter: blur(0); }
}

.page-panel.show {
    animation: panelOpen 0.25s ease-out forwards;
    visibility: visible;
    pointer-events: all;
}

@keyframes panelClose {
    0%   { transform: translateX(-50%) translateX(0) scale(1); opacity: 1; filter: blur(0); }
    100% { transform: translateX(-50%) translateX(0) scale(1.05); opacity: 0; filter: blur(12px); }
}

.page-panel.closing {
    animation: panelClose 0.25s ease-in forwards;
    pointer-events: none;
}

/* ========== PROMOTION PAGE ========== */

/* CONTENT */
.promo-content { display: flex; flex-direction: column; gap: 14px; }

/* TABS */
.promo-tabs {
    display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
    -ms-overflow-style: none; padding: 2px;
}
.promo-tabs.is-sticky {
	position: sticky;
	top: 64px;
	z-index: 10;
	background: var(--bg);
	padding: 10px 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	margin-left: -16px;
	margin-right: -16px;
}
.promo-tabs::-webkit-scrollbar { display: none; }
.promo-tab {
    min-height: 40px; padding: 10px 18px; border-radius: 20px; font-family: inherit;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
    border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
    white-space: nowrap; flex-shrink: 0;
}
.promo-tab:hover { border-color: var(--border-hover); color: var(--text); }
.promo-tab.active { background: var(--accent-grad-2); border-color: transparent; color: #fff; }

/* PROMO LIST */
.promo-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* PROMO CARD */
.promo-card {
    border-radius: var(--radius-sm); overflow: hidden;
    background: var(--surface); border: 1px solid var(--border);
    transition: all 0.25s;
}
.promo-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* PROMO BANNER */
.promo-banner {
    width: 100%; position: relative; overflow: hidden;
}
.promo-banner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* PROMO FOOTER */
.promo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
}

.promo-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.pi-1 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.pi-2 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.pi-3 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.pi-4 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pi-5 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.pi-6 { background: linear-gradient(135deg, #ec4899, #db2777); }

.promo-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.promo-title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
		line-height: 1.4;
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 4px;
    background: rgba(124,58,237,0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(124,58,237,0.25);
}
.promo-status.active {
    background: rgba(34,197,94,0.15);
    color: var(--green);
    border-color: rgba(34,197,94,0.25);
}
.promo-status.expired {
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border-color: rgba(239,68,68,0.25);
}

/* PROMO ACTIONS */
.promo-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 14px;
}

.promo-actions .btn {
    flex: 1;
    height: 38px;
    font-size: 12px;
}

.promo-actions .btn-detail {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
    border: 1px solid var(--border);
}

.promo-actions .btn-detail:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border-color: var(--border-hover);
}

/* PROMO DETAILS */

.promo-details-section {
    margin-bottom: 12px;
}

.promo-details-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.promo-details-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.promo-details ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-details ul li {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

.promo-details-action {
    margin-top: 14px;
}

/* ========== DEPOSIT PAGE ========== */

/* SKELETON */
.skeleton {
    background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-xs);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-section {
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-label {
    height: 12px;
    width: 30%;
}

.skeleton-item {
    height: 48px;
    width: 100%;
}

.skeleton-item-sm {
    height: 36px;
    width: 100%;
}

/* TOP BAR ACTION */
.topbar-action {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--text-2); transition: all 0.2s;
  border-radius: var(--radius-xs);
}
.topbar-action:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.topbar-action svg { width: 20px; height: 20px; }

/* BALANCE CARD */
.balance-card {
  position: relative;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #f59e0b 100%);
  overflow: hidden;
}
.balance-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  pointer-events: none;
}
.balance-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.balance-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.balance-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 8px;
  position: relative; z-index: 1;
}

.balance-refresh a, 
.label-view-rules-dep a, 
.label-view-rules-wd a {
	font-size: 10px;
	text-transform: uppercase;
	color: var(--accent-amber);
}

.balance-refresh a:hover, 
.label-view-rules-dep a:hover, 
.label-view-rules-wd a:hover {
	color: var(--accent-amber);
	text-decoration: underline !important;
}

/* DEPOSIT STEP INDICATOR */
.dep-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 16px 0 8px;
    gap: 0;
}

.dep-step-indicator.is-sticky {
    position: sticky;
    top: 65px;
    z-index: 10;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 10px 24px 8px;
		margin-left: -16px;
		margin-right: -16px;
}

.dep-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dep-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid var(--border);
    color: var(--text-3);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dep-step-label {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dep-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 22px;
    min-width: 40px;
    transition: background 0.3s ease;
}

/* ACTIVE STATE */
.dep-step-item.active .dep-step-circle {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(124,58,237,0.15);
}

.dep-step-item.active .dep-step-label {
    color: var(--accent-purple);
}

/* DONE STATE */
.dep-step-item.done .dep-step-circle {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #fff;
}

.dep-step-item.done .dep-step-circle::before {
    content: '✓';
}

.dep-step-item.done .dep-step-circle span {
    display: none;
}

.dep-step-item.done .dep-step-label {
    color: var(--text-2);
}

.dep-step-line.done {
    background: var(--accent-purple);
}

/* SECTION */
.dep-section { display: flex; flex-direction: column; gap: 10px; }
.dep-label {
  font-size: 14px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.dep-content { display: flex; flex-direction: column; gap: 10px; }

.dep-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-3);
}

/* CHANNEL GRID */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.channel-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer; transition: all 0.25s;
	position: relative;
}
.channel-item:hover { border-color: var(--border-hover); }
.channel-item.active {
  border-color: var(--accent-violet);
  background: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(124,58,237,0.04));
}
.channel-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--text-3);
  flex-shrink: 0; transition: all 0.2s;
}
.channel-item.active .channel-dot {
  border-color: var(--accent-violet);
  background: var(--accent-violet);
  box-shadow: inset 0 0 0 3px var(--surface);
}
.channel-info { flex: 1; min-width: 0; }
.channel-name { font-size: 13px; font-weight: 700; color: var(--text); }
.channel-min { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.channel-badge {
  font-size: 10px; font-weight: 700; padding: 2px 6px;
  border-radius: 4px; background: rgba(124,58,237,0.2); color: var(--accent-purple);
}

.channel-promo-term {
	position: absolute;
	bottom: 1px;
	left: 1px;
	right: 1px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-size: 10px;
	height: 20px;
	background: rgba(0, 0, 0, .76);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.channel-promo-term a {
	display: flex;
	z-index: 1;
	flex: 1;
	align-items: center;
	justify-content: center;
}

/* AMOUNT GRID */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.amount-item {
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  cursor: pointer; transition: all 0.25s;
}
.amount-item:hover { border-color: var(--border-hover); background: var(--surface-2); }
.amount-item.active {
  border-color: transparent;
  background: var(--accent-grad-2);
  box-shadow: 0 4px 16px rgba(124,58,237,0.25);
}
.amount-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 700; color: var(--text);
}
.amount-item.active .amount-value { color: #fff; }
.amount-rp { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.amount-item.active .amount-rp { color: rgba(255,255,255,0.7); }
.amount-item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* CUSTOM INPUT */
.custom-input-wrap {
  display: flex; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  height: 48px; overflow: hidden; transition: all 0.25s;
}
.custom-input-wrap:focus-within {
  border-color: rgba(168,120,255,0.4);
  box-shadow: 0 0 0 3px rgba(168,120,255,0.08);
}
.custom-prefix {
  padding: 0 14px; font-size: 14px; font-weight: 700;
  color: var(--text-3); flex-shrink: 0;
  border-right: 1px solid var(--border);
  height: 100%; display: flex; align-items: center;
}
input.custom-input {
  flex: 1; height: 100%; background: transparent; border: none; outline: none;
  color: var(--text); font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 600; padding: 0 14px;
}
input..custom-input::placeholder { color: var(--text-3); font-weight: 400; }
.custom-hint {
  font-size: 11px; color: var(--text-3);
  padding-left: 2px;
	margin-top: 6px;
}

/* PAYMENT METHODS */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.method-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer; transition: all 0.25s;
}
.method-item:hover { border-color: var(--border-hover); background: var(--surface-2); }
.method-item.active {
  border-color: var(--accent-violet);
  background: linear-gradient(180deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
  box-shadow: 0 0 16px rgba(124,58,237,0.1);
}
.method-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--surface-2);
}
.method-item.active .method-icon { background: rgba(124,58,237,0.2); }
.method-name { font-size: 12px; font-weight: 600; color: var(--text-2); }
.method-item.active .method-name { color: var(--text); }

.dep-channel-pane { display: none; }
.dep-channel-pane.active { display: grid; }

.dep-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dep-info-item {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.dep-info-label {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dep-info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dep-info-value a {
    color: var(--text-3);
    transition: color 0.2s;
}

.dep-info-value a:hover {
    color: var(--accent-purple);
}

.dep-unavailable { padding: 16px; border-radius: var(--radius-sm); background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; font-size: 13px; }

.channel-item.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.submit-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.submit-wrap .btn {
    flex: 1;
    min-width: calc(50% - 5px);
}

.submit-wrap-3btn .btn:first-child {
    flex: 0 0 100%;
}

/* confirm transfer */
.dep-notice {
    padding: 12px 14px;
    border-radius: var(--radius-xs);
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    color: var(--accent-amber);
    font-size: 13px;
}

.dep-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.dep-qrcode {
    width: 200px;
    height: 200px;
}

.dep-qrcode img, .dep-qrcode canvas {
	width: 100%;
	height: 100%;
	max-width: 2000px;
	background-color: #fff;
	padding: 10px;
	border-radius: var(--radius-sm);
}

.dep-qrcode-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

#countdownText {
    font-size: 14px;
    font-weight: 700;
}

.upload-receipt-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-hover);
    background: var(--surface-2);
    color: var(--text-2);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    margin-top: 6px;
}
.upload-receipt-wrap:hover {
    border-color: var(--accent-purple);
    color: var(--text);
}

/* history deposit */
.card-deposit-history { 
	background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: var(--radius-sm); 
	overflow:hidden;	
}

.item-deposit-history { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 16px; 
	border-bottom: 1px solid var(--border); 
	text-decoration:none;
	color:inherit;
}

.card-deposit-history > a:last-of-type {
  border-bottom: none;
}

.item-deposit-history:hover, 
.item-deposit-history.active, 
.item-deposit-history.active:hover {
	color: inherit;
	background-color: var(--surface-2);
}

.item-deposit-history .item-left-panel {
	text-align: left;
}

.item-deposit-history .item-right-panel {
	text-align: right;
}

.item-deposit-history .item-bank {
	font-size: 14px;
	font-weight: 700;
}

.item-deposit-history .item-detail {
	font-size: 12px;
	color: var(--text-3);
	margin-top: 4px;
}

.item-deposit-history .item-amount {
	font-family: 'JetBrains Mono';
	font-weight: 700;
	color: var(--accent-amber);
}

.item-deposit-history .item-status {
	font-size:11px;
	margin-top:4px;
}

.expand-deposit-history-detail {
	display: flex;
	display: flex;
	flex-direction: column;
	padding: 16px;
	border-bottom: 1px solid var(--border);
}

.card-deposit-history > .expand-deposit-history-detail:last-child { 
	border-bottom: none;
}

.deposit-history-detail {
	display:flex;
	justify-content:space-between;
	padding: 8px 0;
}

.expand-deposit-history-detail > .deposit-history-detail + .deposit-history-detail {
	border-top: 1px solid var(--border);
}

.expand-deposit-history-detail > .deposit-history-detail:first-child {
	padding-top: 0;
}

.expand-deposit-history-detail > .deposit-history-detail:last-child {
	padding-bottom: 0;
}

.deposit-history-detail .title-history-detail {
	font-size:13px;
	color:var(--text-2);
}

.deposit-history-detail .amount-history-detail {
	font-family:'JetBrains Mono';
	font-size: 13px;
	font-weight: 100;
	color:var(--accent-amber);
}

/* empty state history */
.empty-state-history { text-align: center; padding: 60px 20px; }
.empty-icon-history { font-size: 56px; margin-bottom: 12px; opacity: 0.5; }
.empty-text-history { font-size: 14px; color: var(--text-3); }

@media (max-width: 480px) {
	.channel-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 360px) {
	.balance-card {
		position: relative;
		padding: 14px 16px;
	}
	.amount-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================
   INSTANT DEPOSIT ONPAGE (QRIS OB)
   ============================ */

/* SCREEN 1 */
#instant-deposit-onpage .qob-header {
    text-align: center;
    margin-bottom: 16px;
}
#instant-deposit-onpage .qob-header h5 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 4px;
}
#instant-deposit-onpage .qob-header p {
    color: var(--text-2);
    font-size: 13px;
    margin-bottom: 0;
}

/* LABEL */
#instant-deposit-onpage .qob-label {
		display: flex;
		align-items: center;
		font-size: 14px;
		font-weight: 700;
		color: var(--text);
    margin-bottom: 8px;
    margin-top: 16px;
}
#instant-deposit-onpage .qob-label .opt {
    font-weight: 400;
    color: var(--text-3);
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
}

/* AMOUNT GRID */
#instant-deposit-onpage .qob-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}
#instant-deposit-onpage .qob-amount-btn {
    padding: 14px 8px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'JetBrains Mono', monospace;
}
#instant-deposit-onpage .qob-amount-btn:hover {
    border-color: var(--border-hover);
    background: var(--surface-2);
}
#instant-deposit-onpage .qob-amount-btn.active {
    border-color: transparent;
    background: var(--accent-grad-2);
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,58,237,0.25);
}
#instant-deposit-onpage .qob-amount-btn.other {
    color: var(--accent-purple);
    border-color: rgba(168,85,247,0.3);
    font-family: inherit;
    font-size: 13px;
}
#instant-deposit-onpage .qob-amount-btn.other:hover {
    background: rgba(168,85,247,0.1);
}

/* CUSTOM AMOUNT */
#instant-deposit-onpage .qob-custom-amount {
    display: none;
    margin-bottom: 8px;
}
/*
#instant-deposit-onpage #qob-amount-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: border 0.2s;
}
*/
#instant-deposit-onpage #qob-amount-input:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
}
#instant-deposit-onpage #qob-amount-input::placeholder {
    color: var(--text-3);
    font-weight: 400;
    font-size: 13px;
    font-family: inherit;
}
#instant-deposit-onpage .qob-back-grid {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-3);
    text-decoration: none;
}
#instant-deposit-onpage .qob-back-grid:hover {
    color: var(--accent-purple);
}

/* PROMO LIST */
#instant-deposit-onpage .qob-promo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}
#instant-deposit-onpage .qob-promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    flex-wrap: wrap;
		min-height: 62px;
}
#instant-deposit-onpage .qob-promo-item input[type=radio] { display: none; }
#instant-deposit-onpage .qob-promo-item:hover { border-color: var(--border-hover); }
#instant-deposit-onpage .qob-promo-item.active {
    border-color: var(--accent-violet);
    background: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(124,58,237,0.04));
}
#instant-deposit-onpage .qob-promo-radio {
    width: 16px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--text-3);
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}
#instant-deposit-onpage .qob-promo-item.active .qob-promo-radio {
    border-color: var(--accent-violet);
    background: var(--accent-violet);
    box-shadow: inset 0 0 0 3px var(--surface);
}
#instant-deposit-onpage .qob-promo-info { flex: 1; }
#instant-deposit-onpage .qob-promo-info .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
#instant-deposit-onpage .qob-promo-info .sub {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 2px;
}
#instant-deposit-onpage .qob-promo-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-amber);
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    padding: 2px 8px;
    border-radius: 20px;
}

/* MORE TOGGLE */
#instant-deposit-onpage .qob-more-toggle {
    font-size: 12px;
    color: var(--accent-purple);
    text-decoration: none;
    display: inline-block;
    margin: 4px 0;
}
#instant-deposit-onpage .qob-more-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#instant-deposit-onpage .qob-sk-section {
    display: none;
    margin-bottom: 1em;
}

/* INLINE S&K */
#instant-deposit-onpage .qob-inline-sk {
    width: 100%;
    margin-top: 10px;
    position: relative;
}
#instant-deposit-onpage .qob-inline-sk-detail {
    font-size: 12px;
    color: var(--text-2);
    max-height: 5em;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.8;
}
#instant-deposit-onpage .qob-inline-sk-fade {
    display: none;
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(transparent, rgba(124,58,237,0.04));
}
#instant-deposit-onpage .qob-inline-sk-toggle {
    font-size: 11px;
    color: var(--accent-purple);
    text-decoration: none;
    display: none;
    margin-top: 4px;
    text-align: center;
    width: 100%;
}
#instant-deposit-onpage .qob-sk-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-3);
    margin-bottom: 6px;
}
#instant-deposit-onpage .qob-sk-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 2px;
}
#instant-deposit-onpage .qob-sk-row span { color: var(--text-3); }
#instant-deposit-onpage .qob-sk-row strong { color: var(--accent-violet); }
#instant-deposit-onpage .qob-sk-row small { color: var(--text-3); font-size: 11px; }
#instant-deposit-onpage .qob-sk-games { font-size: 11px; color: var(--text-2); line-height: 1.8; }

/* AGREE WRAP */
#instant-deposit-onpage .qob-agree-wrap {
    display: none;
    margin-top: 12px;
}
#instant-deposit-onpage .qob-agree-wrap label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}
#instant-deposit-onpage .qob-agree-wrap input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.2s;
    position: relative;
}
#instant-deposit-onpage .qob-agree-wrap input[type=checkbox]:checked {
    background: var(--accent-grad);
    border-color: transparent;
}
#instant-deposit-onpage .qob-agree-wrap input[type=checkbox]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* ERROR */
#instant-deposit-onpage .qob-error {
    display: none;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    color: #f87171;
    font-size: 13px;
    margin-top: 12px;
}

/* SUBMIT */
#instant-deposit-onpage .qob-submit {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--accent-grad);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
#instant-deposit-onpage .qob-submit:hover { opacity: 0.9; }

/* LOADING */
#instant-deposit-onpage .qob-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 0;
    text-align: center;
    color: var(--text-3);
    font-size: 14px;
}
#instant-deposit-onpage .qob-loading i {
    font-size: 28px;
}
#instant-deposit-onpage .qob-loading p { margin: 0; }

/* SCREEN 2 - QR CODE */
#instant-deposit-onpage .qob-qr-wrap {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}
#instant-deposit-onpage #qob-qr-canvas-wrap {
    display: inline-block;
    position: relative;
    width: 300px;
    height: 300px;
    background-image: url("../../assets/images/qris-frame-white.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}
#instant-deposit-onpage #qob-qr-canvas {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}
#instant-deposit-onpage #qob-qr-canvas img,
#instant-deposit-onpage #qob-qr-canvas canvas {
    display: block;
    max-width: 215px;
    max-height: 215px;
}
#instant-deposit-onpage .qob-qr-info {
    text-align: center;
    margin-bottom: 12px;
}
#instant-deposit-onpage .qob-qr-info .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-amber);
    font-family: 'JetBrains Mono', monospace;
}
#instant-deposit-onpage .qob-qr-info .refid {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 4px;
}
#instant-deposit-onpage .qob-countdown {
    text-align: center;
    font-size: 13px;
    color: #f87171;
    margin-bottom: 12px;
}
#instant-deposit-onpage .qob-countdown .timer {
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
}
#instant-deposit-onpage .qob-instruction {
    text-align: center;
    font-size: 13px;
    color: var(--accent-amber);
    padding: 12px 14px;
    border-radius: var(--radius-xs);
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    line-height: 1.6;
}

/* ========== WITHDRAW PAGE ========== */

.main-witdraw .page-content {
	padding-bottom: 3rem;
}

/* SECTION */
.wd-section { 
	display: flex; 
	flex-direction: column; 
	gap: 10px; 
}
.wd-label {
  font-size: 14px; 
	font-weight: 700; 
	color: var(--text);
  display: flex; 
	align-items: center; 
	gap: 6px;
}
.wd-content { 
	display: flex; 
	flex-direction: column; 
	gap: 10px; 
}
/* ========== avail saldo card ========== */
.avail-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(168,85,247,0.05));
  border: 1px solid rgba(124,58,237,0.15);
  display: flex; flex-direction: column; gap: 8px;
}
.avail-row {
  display: flex; align-items: center; justify-content: space-between;
}
.avail-label { font-size: 13px; color: var(--text-2); }
.avail-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 700; color: #4ade80;
}
.availe-value.pay { color: var(--text); }
.avail-divider { height: 1px; background: rgba(124,58,237,0.1); }
/* BANK REGISTER CARD */
.bank-register-card {
  padding: 20px 16px; border-radius: var(--radius-sm); border: 1px dashed var(--border);
  background: var(--surface); text-align: center;
}
.bank-register-card .label-card {
	font-size: 13px;
	color: var(--text-2);
	text-align: center;
	margin-bottom:12px;
}
.add-bank-btn {
  padding: 10px 24px; border-radius: 20px; border: 1px dashed var(--accent-amber);
  background: rgba(245,158,11,0.08); color: var(--accent-amber);
  font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.add-bank-btn:hover { background: rgba(245,158,11,0.15); }
.bank-register-card .manage-card {
	margin-top:10px;
}
.bank-register-card .manage-card a {
	min-height:40px;border-radius:12px;border:1px solid rgba(245,158,11,0.22);background:rgba(245,158,11,0.08);display:flex;align-items:center;justify-content:center;padding:10px 14px;font-size:13px;font-weight:700;color:var(--accent-amber);text-decoration:none;
}
.info-addbank-wd {
	font-size:12px;color:var(--text-3);margin-bottom:16px;line-height:1.6;
}
/* BANK REGISTERED CARD */
.bank-registered-card {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
	text-decoration:none;color:inherit;
}
.bank-registered-card:hover, 
.bank-registered-card:focus {
	text-decoration:none;color:inherit;
}
.bank-registered-card .bank-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--surface-2); flex-shrink: 0;
}
.bank-registered-card .bank-info { flex: 1; }
.bank-registered-card .bank-name { font-size: 14px; font-weight: 700; }
.bank-registered-card .bank-number { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-3); margin-top: 2px; }
.bank-registered-card .cs-arrow { color: var(--text-3); font-size: 18px; }

.bank-registered-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; display: flex; flex-direction: column;
}
.bank-registered-info-card .card-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.bank-registered-info-card .stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.bank-registered-info-card .stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-registered-info-card .stat-name { font-size: 14px; color: var(--text-2); }
.bank-registered-info-card .stat-val { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; color: var(--text); }
/* EDIT BANK CARD */
.card-editbank-withdraw {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
	background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: var(--radius-sm); 
	padding: 20px 18px;
}
.card-editbank-withdraw .content-edit-bank {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 12px;
}
.card-editbank-withdraw .content-edit-bank .icon-edit-bank {
	font-size:48px;
}
.card-editbank-withdraw .content-edit-bank .detail-edit-bank {
	font-size:14px;
	color:var(--text-2);
	line-height:1.6;
}
.card-editbank-withdraw .action-edit-bank {
	display: flex;
	flex-direction: column;
}

/* history withdraw */
.card-withdraw-history { 
	background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: var(--radius-sm); 
	overflow:hidden;	
}

.item-withdraw-history { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 16px; 
	border-bottom: 1px solid var(--border); 
	text-decoration:none;
	color:inherit;
}

.card-withdraw-history > a:last-of-type {
  border-bottom: none;
}

.item-withdraw-history:hover, 
.item-withdraw-history.active, 
.item-withdraw-history.active:hover {
	color: inherit;
	background-color: var(--surface-2);
}

.item-withdraw-history .item-left-panel {
	text-align: left;
}

.item-withdraw-history .item-right-panel {
	text-align: right;
}

.item-withdraw-history .item-bank {
	font-size: 14px;
	font-weight: 700;
}

.item-withdraw-history .item-detail {
	font-size: 12px;
	color: var(--text-3);
	margin-top: 4px;
}

.item-withdraw-history .item-amount {
	font-family: 'JetBrains Mono';
	font-weight: 700;
	color: var(--accent-amber);
}

.item-withdraw-history .item-status {
	font-size:11px;
	margin-top:4px;
}

.expand-withdraw-history-detail {
	display: flex;
	display: flex;
	flex-direction: column;
	padding: 16px;
	border-bottom: 1px solid var(--border);
}

.card-withdraw-history > .expand-withdraw-history-detail:last-child { 
	border-bottom: none;
}

.withdraw-history-detail {
	display:flex;
	justify-content:space-between;
	padding: 8px 0;
}

.expand-withdraw-history-detail > .withdraw-history-detail + .withdraw-history-detail {
	border-top: 1px solid var(--border);
}

.expand-withdraw-history-detail > .withdraw-history-detail:first-child {
	padding-top: 0;
}

.expand-withdraw-history-detail > .withdraw-history-detail:last-child {
	padding-bottom: 0;
}

.withdraw-history-detail .title-history-detail {
	font-size:13px;
	color:var(--text-2);
}

.withdraw-history-detail .amount-history-detail {
	font-family:'JetBrains Mono';
	font-size: 13px;
	font-weight: 100;
	color:var(--accent-amber);
}

/* ========== PROFILE/MY ACCOUNT PAGE ========== */

.page-myaccount.loggedin .content {
	padding: 0;
}

/* PROFILE HEADER */
.profile-header {
  position: relative; padding: 32px 16px 24px; text-align: center;
  background: linear-gradient(180deg, rgba(124,58,237,0.15) 0%, transparent 100%);
}
.profile-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(245,158,11,0.1));
  pointer-events: none;
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--accent-grad-2); display: flex; align-items: center; justify-content: center;
  font-size: 36px; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
  border: 3px solid rgba(255,255,255,0.1);
}
.profile-name {
  font-size: 18px; font-weight: 800; position: relative; z-index: 1;
}
.profile-id {
  font-size: 13px; color: var(--text-3); margin-top: 4px; position: relative; z-index: 1;
  font-family: 'JetBrains Mono', monospace;
}
.profile-balance {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; padding: 8px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; position: relative; z-index: 1;
}
.profile-balance-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; 
	font-weight: 700; 
	color: var(--accent-amber);
	line-height: unset;
	position: unset;
	z-index: unset;
	margin-bottom: unset;
}
.profile-balance-label { font-size: 12px; color: var(--text-3); }
.profile-shortcuts { 
	display:flex; 
	gap:8px; 
	justify-content:center; 
	margin-top:12px; 
	position:relative; 
	z-index:1; 
	flex-wrap:wrap; 
}
.profile-balance-refresh {
	display: flex;
}
.profile-balance-refresh a, 
.profile-balance-refresh a:hover {
	font-size: 12px; 
	color: var(--text-3); 
}
.shortcut-chip { display:inline-flex; align-items:center; justify-content:center; gap:6px; min-height:40px; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.06); border:1px solid var(--border); color:var(--text); text-decoration:none; font-size:12px; font-weight:700; }
.shortcut-chip:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.1); }
.shortcut-dot { width:8px; height:8px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 4px rgba(34,197,94,0.12); }

/* head message notification */

.head-message-notification {
	position: absolute;
	top: 16px;
	right: 16px; 
	z-index:2;
}

.head-message-notification a {
	position: relative; 
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	text-decoration: none;
}

.head-message-notification a:hover {
	
}

.head-message-notification a svg {
	width: 22px;
	height: 22px;
}

.head-message-notification .value {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ef4444;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	display: flex; align-items: center;
	justify-content: center;
	border: 2px solid #0a0918;
}

.head-message-notification .value:empty {
  display: none;
}

/* ACTION BUTTONS */
.profile-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 0 16px; margin-top: -4px; position: relative; z-index: 2;
}
.profile-action-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: var(--radius-sm); font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all 0.25s;
}
.profile-action-btn:hover { transform: translateY(-1px); }
.profile-action-btn.withdraw {
  background: var(--accent-grad-2); color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.profile-action-btn.deposit {
  background: var(--accent-grad); color: #fff;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.profile-action-btn svg { width: 20px; height: 20px; }

/* CONTENT */
.profile-content { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

/* VIP CARD */
.vip-card {
  padding: 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #7c3aed, #a855f7, #c026d3);
  position: relative; overflow: hidden;cursor:pointer
}
.vip-card::after {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  pointer-events: none;
}
.vip-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vip-badge {
  display: flex; align-items: center; gap: 8px;
}
.vip-icon {
	/* font-size: 28px; */
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.vip-icon img.img-medal {
	height: 46px;
	filter: drop-shadow(0 0 5px rgba(43, 3, 54, 0.75));
	aspect-ratio: 1;
}
.vip-level { font-size: 22px; font-weight: 900; color: #fff; }
.vip-link {
  font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600;
  display: flex; align-items: center; gap: 4px; cursor: pointer;
	color:inherit;text-decoration:none;
}
.vip-stats { display: flex; flex-direction: column; gap: 12px; }
.vip-stat-row {
  display: flex; align-items: center; justify-content: space-between;
}
.vip-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }
.vip-stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700; color: #fff;
}
.vip-progress {
  width: 100%; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.15); margin-top: 4px; overflow: hidden;
}
.vip-progress-bar {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  width: 0%; transition: width 1s ease;
}

/* MENU LIST */
.menu-section {
  background: var(--surface); border-radius: var(--radius-sm);
  border: 1px solid var(--border); overflow: hidden;
}
.menu-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; cursor: pointer; transition: background 0.2s;
  border-bottom: 1px solid var(--border);
	cursor: pointer;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(255,255,255,0.02); }
.menu-icon {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.mi-blue { background: rgba(59,130,246,0.15); }
.mi-green { background: rgba(34,197,94,0.15); }
.mi-orange { background: rgba(245,158,11,0.15); }
.mi-purple { background: rgba(168,85,247,0.15); }
.mi-red { background: rgba(239,68,68,0.15); }
.mi-pink { background: rgba(236,72,153,0.15); }

.menu-label { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.menu-value { font-size: 13px; color: var(--text-3); margin-right: 4px; }
.menu-arrow { color: var(--text-3); font-size: 16px; }

/* LOGOUT */
.logout-btn {
  width: 100%; padding: 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(239,68,68,0.2); background: rgba(239,68,68,0.06);
  color: #ef4444; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-align: center;
}
.logout-btn:hover { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.3); }

/* CHANGE AVATAR */
.main-change-avatar {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1rem;
}
.card-avatar {
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm); 
	padding: 20px 16px;
	gap: 14px;
}
.label-avatar {
	font-size: 15px;
	font-weight: 800;
}
.grid-avatar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.item-avatar {
	aspect-ratio: 1;
	border-radius: var(--radius-xs);
	background: var(--surface-2);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	cursor: pointer;
}
.item-avatar.active{
	background: var(--accent-grad-2);
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(124,58,237,.24);
}
.action-avatar {
	
}

/* MAIN CARD SECTION */
.main-card-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1rem;
}
.card-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 8px;
}
.label-card-section {
	display: flex;
	align-items: center;
	gap: 8px;
}
.label-card-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
	padding-bottom: 2px;
}
.label-card-text {
	font-size: 14px;
	font-weight: 700;
}
.sublabel-card-section {
	font-size: 13px;
	color: var(--text-2);
	line-height: 1.7;
}
.content-card-section {
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm); 
	padding: 20px 16px;
	gap: 14px;
}
.content-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}
.content-card-info:hover {
    color: inherit;
    text-decoration: none;
}
.content-card-info-detail {
    flex: 1;
}
.content-card-info-arrow {
    color: var(--text-3);
    font-size: 14px;
    flex-shrink: 0;
}
.content-card-info-label {
	font-size: 11px;
	color: var(--text-3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}
.content-card-info-value {
	font-family: 'JetBrains Mono', monospace;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.action-card-section {
	
}
.btn-add-card {
	padding: 10px 24px;
	border-radius: 20px;
	border: 1px dashed var(--accent-amber);
	background: rgba(245,158,11,0.08);
	color: var(--accent-amber);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	align-self: center;
}
.btn-add-card:hover { 
	background: rgba(245,158,11,0.15); 
}

/* OTP BOXES WRAP */
.otp-boxes-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.otp-boxes-wrap .otp-boxes {
    flex: 1;
    display: flex;
    gap: 6px;
    min-width: 0;
}

/* OTP BOXES */
.otp-boxes .otp-box {
    flex: 1;
    min-width: 0;
    max-width: 44px;
    height: 52px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: all 0.2s;
    padding: 0;
}
.otp-boxes .otp-box:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.otp-boxes .otp-box.filled {
    border-color: var(--accent-purple);
    background: rgba(124,58,237,0.08);
}

.otp-boxes-wrap .btn {
    height: 52px;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 12px;
}
.otp-boxes-wrap .btn .btn-resend-text {
    display: inline;
}

/* OTP LABEL */
.otp-label {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* OTP EMAIL DISPLAY */
.otp-email-display {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border);
}
.otp-email-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.otp-email-verified i {
    font-size: 18px;
}
.otp-email-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-change-otp-target {
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    line-height: 1;
}
.btn-change-otp-target:hover {
    opacity: 0.8;
}

/* not available service */
.not-available-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 16px;
    text-align: center;
    animation: fadeInUp 0.4s ease forwards;
}
.not-available-service .icon {
    font-size: 48px;
    animation: iconBounce 0.6s ease 0.2s both;
}
.not-available-service .info {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    animation: fadeInUp 0.4s ease 0.3s both;
}

@keyframes iconBounce {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes fadeInUp {
    0% { transform: translateY(16px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* language settings */
.main-language-settings {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lang-item {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
}
.lang-item:hover { border-color: var(--border-hover); }
.lang-item.active { border-color: var(--accent-violet); background: rgba(124,58,237,0.08); }
.lang-flag { font-size: 28px; }
.lang-name { flex: 1; font-size: 14px; font-weight: 600; }
.lang-check { color: var(--accent-violet); font-size: 20px; }
.lang-item[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}
.lang-item[disabled]:hover {
    border-color: var(--border);
    background: var(--surface);
}
.lang-item.active[disabled] {
    border-color: var(--accent-violet);
    background: rgba(124,58,237,0.08);
    opacity: 1;
}

@media (max-width: 400px) {
    .otp-boxes .otp-box {
        height: 48px;
        font-size: 16px;
    }
    .otp-boxes-wrap .btn {
        height: 48px;
        padding: 0 10px;
    }
    .otp-boxes-wrap .btn .btn-resend-text {
        display: none;
    }
}

@media (max-width: 360px) {
	.vip-top {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.vip-link {
		padding-left: 54px;
	}
}

/* ========== MESSAGE ========== */

/* MESSAGE TABS */
.msg-tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px; margin-bottom: 14px;
}
.msg-tabs::-webkit-scrollbar { display: none; }
.msg-tab {
	flex: 1;
  min-height: 40px; padding: 10px 16px; border-radius: 20px; font-family: inherit;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  white-space: nowrap; flex-shrink: 0;
}
.msg-tab:hover { border-color: var(--border-hover); color: var(--text); }
.msg-tab.active { background: var(--accent-grad-2); border-color: transparent; color: #fff; }

/* MESSAGE TOOLBAR */
.msg-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.msg-toolbar-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg-toolbar-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}
.msg-toolbar-btn.delete-all-msg:hover {
    border-color: rgba(239,68,68,0.4);
    color: #ef4444;
}

/* MESSAGE LOAD MORE */
.msg-loadmore-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
    background: transparent;
    color: var(--text-3);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    margin-top: 14px;
}
.msg-loadmore-btn:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

/* MESSAGE CARD SECTION */
.main-msg-card-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 14px;
}

/* MESSAGE CARD */
.msg-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: all 0.2s;
}
.msg-card:hover { border-color: var(--border-hover); }
.msg-card.unread { border-left: 3px solid var(--accent-violet); }
.msg-header { display: flex; align-items: center; justify-content: space-between; }
.msg-sender { display: flex; align-items: center; gap: 8px; }
.msg-sender-icon {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.msg-sender-icon.general { background: rgba(124,58,237,0.2); }
.msg-sender-icon.system { background: rgba(255, 0, 0, 0.2); }
.msg-sender-icon.deposit { background: rgba(34,197,94,0.2); }
.msg-sender-icon.withdraw { background: rgba(245,158,11,0.2); }
.msg-sender-icon.promo { background: rgba(236,72,153,0.2); }
.msg-sender-name { font-size: 14px; font-weight: 700; }
.msg-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.msg-actions {
    position: relative;
}
.msg-action-btn {
    background: none;
    border: none;
    color: var(--text-3);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    font-size: 14px;
    transition: all 0.2s;
}
.msg-action-btn:hover {
    background: var(--surface-2);
    color: var(--text);
}
.msg-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    min-width: 185px;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.msg-dropdown.show {
    display: block;
}
.msg-dropdown-item {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}
.msg-dropdown-item i {
	width: 15px;
}
.msg-dropdown-item:hover {
    background: var(--surface-3);
}
.msg-dropdown-item.delete-msg {
    color: #ef4444;
}
.msg-dropdown-item.delete-msg i {
    color: #ef4444;
}
.msg-badge {
  padding: 2px 8px; border-radius: 12px; font-size: 10px; font-weight: 700;
  background: rgba(124,58,237,0.15); color: var(--accent-purple);
}
.msg-badge.new { background: rgba(239,68,68,0.15); color: #ef4444; }
.msg-body {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}
.msg-body.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.msg-body strong { color: var(--accent-amber); }

.msg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.msg-time { font-size: 11px; color: var(--text-3); }

.msg-footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.msg-history-btn {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}
.msg-history-btn:hover {
    color: var(--accent-amber);
}
.msg-history-btn.active {
    color: var(--accent-amber);
}
.msg-history {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.msg-history-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.msg-history-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.msg-history-body {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
}
.msg-history-time {
    font-size: 11px;
    color: var(--text-3);
}
.msg-history-loading {
    font-size: 13px;
    color: var(--text-3);
    padding: 8px 0;
}
.msg-reply-btn {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}
.msg-reply-btn:hover {
    color: var(--accent-amber);
}
.msg-reply-btn.active {
    color: var(--accent-amber);
}

/* REPLY FORM */
.msg-reply-form {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.msg-reply-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-hover);
    background: var(--surface-2);
    color: var(--text-2);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    margin-top: 6px;
		height: 52px;
}
.msg-reply-upload:hover {
    border-color: var(--accent-purple);
    color: var(--text);
}
.msg-reply-preview {
    position: relative;
    display: inline-block;
		margin-top: var(--sp-3) 
}
.msg-reply-preview-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}
.msg-reply-remove-img {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== STATISTICS ========== */
.stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-name { font-size: 14px; color: var(--text-2); }
.stat-val { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; color: var(--text); }

.trans-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trans-filter .input-group {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    margin-bottom: 0;
}
.trans-filter .input-group.input-group-full {
    flex: 1 1 100%;
}
.trans-filter .input-group:last-of-type {
    padding-right: 0;
}
.trans-filter .input-wrapper {
    height: 40px;
}
.trans-filter .input-label {
    font-size: 11px;
    margin-bottom: 4px;
}
.trans-filter .input-select,
.trans-filter input {
    font-size: 12px;
    padding: 0 10px 0 0;
}
.trans-filter .input-icon {
    width: 32px;
    font-size: 12px;
}
.trans-filter-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
}
.trans-filter-actions .btn {
    height: 40px;
    font-size: 13px;
}
.trans-result {
    margin-top: 8px;
}

@media (max-width: 400px) {
    .trans-filter .input-group {
        flex: 1 1 100%;
    }
}

/* ========== STAT TABLE ========== */
.card-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding:0;overflow:hidden; }
.stat-table-header {
    display: flex;
		background: var(--surface-2);
    padding: 12px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.stat-table-header span { flex: 1; }
.stat-table-header span:last-child { flex: 0 0 20px; }

.stat-table-row {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.12s;
}
.stat-table-row:hover { background: var(--surface-3); }
.stat-table-row:last-of-type { border-bottom: none; }
.stat-date { flex: 1; font-size: 13px; color: var(--text); }
.stat-table-row .stat-val { flex: 1; font-size: 13px; font-family: 'JetBrains Mono', monospace; color: var(--text); }
.stat-arrow { flex: 0 0 20px; color: var(--text-3); font-size: 16px; text-align: right; transition: transform 0.15s; }

.stat-table-expand {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
}
.stat-expand-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
}
.stat-expand-row:last-child { border-bottom: none; }
.stat-expand-row span:first-child { color: var(--text-3); }
.stat-expand-row span:last-child { color: var(--text); font-weight: 500; text-align: right; }

.stat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 12px;
    color: var(--text-2);
}

.stat-loadmore { padding: 10px 0; }
.stat-loadmore-loading { padding: 10px 0; }

.trans-loadmore-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
		border: 1px dashed var(--text-3);
		background: transparent;
		color: var(--text-3);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.trans-loadmore-btn:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

/* ========== BADGE ========== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.text-bg-success {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}
.text-bg-danger {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}
.text-bg-warning {
    background: rgba(245,158,11,0.15);
    color: var(--accent-amber);
}
.text-bg-primary {
    background: rgba(124,58,237,0.15);
    color: var(--accent-purple);
}
.text-bg-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-2);
}
.text-bg-info {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
}

/* ========== CUSTOMER SERVICES ========== */
.list-customer-services {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.list-customer-services .cs-card {
  display: flex; 
	align-items: center; 
	gap: 14px; 
	padding: 16px;
  background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: var(--radius-sm);
  cursor: pointer; 
	transition: all 0.25s;
}
.list-customer-services .cs-card:hover { 
	border-color: var(--border-hover); 
	transform: translateY(-2px); 
	box-shadow: 0 8px 24px rgba(0,0,0,0.3); 
}
.list-customer-services .cs-icon {
	background: rgba(168,85,247,0.15);
  width: 48px; 
	height: 48px; 
	border-radius: 50%; 
	display: flex; 
	align-items: center;
  justify-content: center; 
	font-size: 24px; 
	color: var(--text);
	flex-shrink: 0;
}
.list-customer-services .cs-info { flex: 1; }
.list-customer-services .cs-title { 
	font-size: 14px; 
	font-weight: 700; 
	color: var(--text);
}
.list-customer-services .cs-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.list-customer-services .cs-arrow { color: var(--text-3); font-size: 14px; }

.list-customer-services .cs-card.email .cs-icon {
	background: rgba(168, 85, 247, 0.15);
}
.list-customer-services .cs-card.phone .cs-icon {
	background: rgba(245, 158, 11, 0.15);
}
.list-customer-services .cs-card.skype .cs-icon {
	background: rgba(6, 96, 236, 0.41);
}
.list-customer-services .cs-card.line .cs-icon {
	background: rgba(8, 201, 79, 0.45);
}
.list-customer-services .cs-card.wechat .cs-icon {
	background: rgba(10, 167, 5, 0.55);
}
.list-customer-services .cs-card.whatsapp .cs-icon, 
.list-customer-services .cs-card.whatsapp2 .cs-icon, 
.list-customer-services .cs-card.whatsapp3 .cs-icon {
	background: rgba(32, 190, 90, 0.33);
}
.list-customer-services .cs-card.facebook .cs-icon {
	background: rgba(3, 113, 255, 0.74);
}
.list-customer-services .cs-card.twitter .cs-icon {
	background: rgba(41, 57, 78, 0.87);
}
.list-customer-services .cs-card.instagram .cs-icon {
	background: rgba(97, 0, 68, 0.76);
}
.list-customer-services .cs-card.google .cs-icon {
	background: rgba(100, 100, 100, 0.76);
}
.list-customer-services .cs-card.youtube .cs-icon {
	background: rgba(221, 2, 2, 0.45);
}
.list-customer-services .cs-card.telegram .cs-icon {
	background: rgba(2, 159, 221, 0.45);
}

/* ========== REFERRAL ========== */

/* CONTENT */
.referral-content { display: flex; flex-direction: column; gap: 14px; }

/* TABS */
.referral-tabs { display: flex; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; }
.referral-tab { flex: 1; padding: 12px 8px; text-align: center; font-size: 13px; font-weight: 700; color: var(--text-3); cursor: pointer; border: none; background: none; font-family: inherit; transition: all 0.2s; position: relative; }
.referral-tab.active { color: #fff; background: var(--accent-grad); }
.referral-tabs.is-sticky {
	position: sticky;
	top: 56px;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	margin-left: -16px;
	margin-right: -16px;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* TABS PANEL */
.referral-tabs-panel { 
	display: flex; 
	flex-direction: column; 
	gap: 14px; 
}
.tab-panel { 
	display: none; 
	flex-direction: column; 
	gap: 14px; 
}
.tab-panel.active { 
	display: flex; 
}
.referral-card-gradient { 
	background: linear-gradient(135deg, #7c3aed, #a855f7, #f59e0b); 
	text-align: center; 
	padding: 28px 16px; 
	border-radius:var(--radius-sm);
}
.share-subtitle {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 14px;
}
.wrapper-share-link {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,0,0,0.2);
	border-radius: 10px;
	padding: 12px 16px;
}
.share-link {
	flex: 1;
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	text-align: left;
	word-break: break-all;
}
.btn-copy-link {
	padding: 8px 16px;
	border-radius: 8px;
	border: none;
	background: #fff;
	color: #7c3aed;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}
.share-socmed-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-top: 18px;
}
.list-share-socmed {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}
.items-share-socmed {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	font-size: 21px;
	text-decoration: none;
}
.items-share-socmed:hover {
	background: rgba(255,255,255,0.45);
	color: var(--text);
	text-decoration: none;	
}
.items-share-socmed.facebook:hover {
	background: rgba(59, 130, 246, 0.67);
}
.items-share-socmed.whatsapp:hover {
	background: rgba(34, 197, 94, 0.67);
}
.items-share-socmed.telegram:hover {
	background: rgba(6, 164, 201, 0.67);
}
.items-share-socmed.instagram:hover {
	background: rgba(236, 72, 153, 0.67);
}
.items-share-socmed.twitter:hover {
	background: rgba(37, 15, 48, 0.67);
}
.items-share-socmed.tiktok:hover {
	background: rgba(77, 2, 115, 0.67);
}

.referral-card { 
	background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: var(--radius-sm); 
	padding: 20px 16px; 
}
.referral-card-subtitle {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 16px;
}
.referral-card-ico-big {
	font-size: 56px;
	margin-bottom: 8px;
}
.referral-card-detail {
	font-size: 13px;
	color: var(--text-2);
}

@media (max-width: 400px) {
	.items-share-socmed {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
}

/* ========== LUCKY WHEEL ========== */
.lucky-wheel-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 40px;
}

/* HERO */
.lw-hero {
    background: linear-gradient(180deg, #2d1b69 0%, #1a0f3e 60%, var(--bg) 100%);
    border-radius: var(--radius);
    padding: 20px 16px 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.2), transparent 70%);
    pointer-events: none;
}

/* WHEEL WRAP */
.lw-wheel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lw-coins-left,
.lw-coins-right {
    position: absolute;
    bottom: -10px;
    font-size: 20px;
    opacity: 0.7;
}
.lw-coins-left { left: 10px; }
.lw-coins-right { right: 10px; }

/* WHEEL OUTER */
.lw-wheel-outer {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lw-wheel-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c026d3, #7c3aed, #f59e0b, #7c3aed, #c026d3);
    animation: lwRingRotate 3s linear infinite;
    box-shadow: 0 0 30px rgba(192,38,211,0.5), 0 0 60px rgba(124,58,237,0.3);
}

@keyframes lwRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CANVAS WHEEL */
#lwCanvas {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
}

/* POINTER */
.lw-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid #f59e0b;
    filter: drop-shadow(0 4px 8px rgba(245,158,11,0.6));
}

/* CENTER */
.lw-center {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 20px rgba(124,58,237,0.6), inset 0 0 10px rgba(255,255,255,0.1);
    border: 3px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.2s;
}

.lw-center:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(124,58,237,0.8), inset 0 0 10px rgba(255,255,255,0.1);
}

.lw-center-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lw-center-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* COUNTDOWN */
.lw-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
}

.lw-countdown-label {
    color: var(--text-2);
    font-size: 12px;
}

.lw-countdown-timer {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #fbbf24;
}

/* CLAIM CARD */
.lw-claim-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.lw-claim-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.lw-claim-icon { font-size: 28px; flex-shrink: 0; }

.lw-claim-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.lw-claim-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 800;
    color: #fbbf24;
}

.lw-claim-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lw-claim-progress {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.lw-claim-progress-bar {
    height: 100%;
    background: var(--accent-grad);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.lw-claim-progress-label {
    font-size: 11px;
    color: var(--text-3);
}

.lw-claim-progress-label strong {
    color: var(--accent-amber);
}

/* INVITE */
.lw-invite-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-2);
    transition: all 0.2s;
}

.lw-invite-card:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.lw-invite-card i {
    color: var(--text-2);
    font-size: 18px;
}

/* LUCKY WHEEL RULES */
.lw-rules {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.lw-rules-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.lw-rules-header:hover {
    background: var(--surface-2);
}

.lw-rules-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.lw-rules-title i {
    color: var(--text-2);
}

.lw-rules-chevron {
    font-size: 12px;
    color: var(--text-3);
    transition: transform 0.25s ease;
}

.lw-rules.open .lw-rules-chevron {
    transform: rotate(180deg);
}

.lw-rules-body {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--border);
}

.lw-rules.open .lw-rules-body {
    display: block;
}

.lw-rules-list {
    margin: 12px 0 0 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

.lw-rules-list ol {
    padding-left: 18px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TABS */
.lw-tabs {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.lw-tab {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-3);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.lw-tab.active {
    color: #fbbf24;
}

.lw-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #fbbf24;
    border-radius: 2px 2px 0 0;
}

/* LIST */
.lw-list {
    display: flex;
    flex-direction: column;
}

/* LUCKY WHEEL SESSION RECORDS */
.lw-session-item {
    border-bottom: 1px solid var(--border);
}

.lw-session-item:last-child {
    border-bottom: none;
}

.lw-session-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    cursor: pointer;
}

.lw-session-period {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text);
}

.lw-session-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.lw-session-status.active {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.lw-session-status.expired {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.lw-session-status.claimed {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

.lw-session-meta {
    font-size: 12px;
    color: var(--text-3);
    flex-shrink: 0;
}

.lw-session-chevron {
    font-size: 11px;
    color: var(--text-3);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.lw-session-detail {
    padding-bottom: 8px;
}

.lw-session-bonus-divider {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.lw-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    gap: 8px;
}

.lw-list-item:last-child { border-bottom: none; }

.lw-list-user {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text);
}

.lw-list-status {
    color: var(--text-3);
    font-size: 12px;
}

.lw-list-amount {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #fbbf24;
    min-width: 50px;
    text-align: right;
}

/* POPUP */
.lw-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 87px;
    background: rgba(5,3,15,0.75);
    backdrop-filter: blur(12px);
    z-index: 600;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: popFadeIn 0.3s ease;
}

.lw-popup {
    width: 100%;
    max-width: 540px;
    background: linear-gradient(180deg, #7c3aed 0%, #4c1d95 30%, var(--surface) 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    animation: lwSlideUp 0.35s cubic-bezier(0.16,1,0.3,1);
}

@keyframes lwSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lw-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.lw-popup-header-share {
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lw-popup-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.lw-popup-body {
    padding: 16px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lw-popup-subtitle {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.lw-popup-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
}

.lw-popup-amount-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 900;
    color: #fbbf24;
}

/* PROCESS */
.lw-process {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lw-process-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.lw-process-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.lw-process-item.done { color: rgba(255,255,255,0.9); }

.lw-process-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.lw-process-item.done .lw-process-dot {
    background: #22c55e;
    border-color: #22c55e;
    position: relative;
}

.lw-process-item.done .lw-process-dot::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

.lw-popup-share-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

/* SHARE ICONS */
.lw-share-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lw-share-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    transition: transform 0.2s;
}

.lw-share-icon:hover { transform: scale(1.1); color: #fff; text-decoration: none; }

.lw-share-icon i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.lw-share-icon.facebook i  { background: rgba(59,130,246,0.3);  color: #3b82f6; }
.lw-share-icon.whatsapp i  { background: rgba(34,197,94,0.3);   color: #22c55e; }
.lw-share-icon.telegram i  { background: rgba(59,130,246,0.3);  color: #38bdf8; }
.lw-share-icon.instagram i { background: rgba(236,72,153,0.3);  color: #ec4899; }
.lw-share-icon.twitter i   { background: rgba(255,255,255,0.1); color: #fff;    }

.lw-share-link-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
}

.lw-share-link {
    flex: 1;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    word-break: break-all;
}

.lw-share-copy {
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
}

/* RESULT POPUP */
.lw-result-popup {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,3,15,0.8);
    backdrop-filter: blur(12px);
    animation: popFadeIn 0.3s ease;
}

.lw-result-box {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    max-width: 280px;
    width: 100%;
    animation: lwSlideUp 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 24px 80px rgba(124,58,237,0.5);
}

.lw-result-emoji { font-size: 56px; margin-bottom: 12px; }

.lw-result-title {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.lw-result-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 40px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 20px;
}

.lw-result-close {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.lw-result-close:hover {
    background: rgba(255,255,255,0.25);
}