:root {
--bg: #06080f; --surface: #111827; --surface2: #1a2235; --border: #1e3a5f;
--accent: #00d4ff; --accent2: #7c3aed; --accent-gradient: linear-gradient(135deg, #00d4ff, #7c3aed);
--text: #e2e8f0; --muted: #64748b; --success: #10b981; --danger: #ef4444;
--bkash: #e2136e;
--glass-bg:          rgba(255,255,255,0.12);
--glass-bg-hover:    rgba(255,255,255,0.20);
--glass-border:      rgba(255,255,255,0.28);
--glass-border-top:  rgba(255,255,255,0.55);
--glass-border-glow: rgba(0,200,255,0.50);
--glass-blur:        blur(16px) saturate(180%);
--glass-blur-heavy:  blur(24px) saturate(200%);
--glass-shadow:
0 8px 32px rgba(0,0,0,0.45),
0 1px 0 rgba(255,255,255,0.55) inset,
0 -1px 0 rgba(0,0,0,0.15) inset;
--glass-shadow-lg:
0 24px 64px rgba(0,0,0,0.55),
0 1px 0 rgba(255,255,255,0.60) inset,
0 -1px 0 rgba(0,0,0,0.20) inset;
--glass-glow-cyan:   0 0 40px rgba(0,180,255,0.18), 0 0 80px rgba(0,180,255,0.08);
--glass-glow-purple: 0 0 40px rgba(120,60,255,0.18);
--liquid-shimmer:    linear-gradient(125deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.28) 45%, rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.0) 100%);
--liquid-refract:    linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 40%, rgba(0,180,255,0.08) 70%, rgba(120,60,255,0.06) 100%);
}
body {
background:
radial-gradient(ellipse 90% 70% at 15% 5%,  rgba(0,160,255,0.28) 0%, transparent 55%),
radial-gradient(ellipse 70% 60% at 85% 15%, rgba(80,40,255,0.20) 0%, transparent 50%),
radial-gradient(ellipse 60% 80% at 80% 85%, rgba(0,200,180,0.16) 0%, transparent 55%),
radial-gradient(ellipse 50% 50% at 20% 80%, rgba(120,0,255,0.14) 0%, transparent 50%),
radial-gradient(ellipse 80% 40% at 50% 50%, rgba(0,80,160,0.12) 0%, transparent 60%),
linear-gradient(160deg, #04070f 0%, #060a16 50%, #050810 100%);
}
#bg-photo-layer {
position: fixed; inset: 0; z-index: -4;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
transition: opacity 1.2s ease;
opacity: 0;
overflow: hidden;
}
#bg-photo-layer.loaded { opacity: 1; }
#bg-photo-video {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover;
display: none;
}
#bg-photo-video.active { display: block; }
#bg-photo-overlay {
position: fixed; inset: 0; z-index: -3;
background: rgba(4,7,15,0.30);
pointer-events: none;
}
body::before {
content: '';
position: fixed; inset: 0; z-index: -3;
background:
radial-gradient(ellipse 120% 50% at 50% 0%,   rgba(0,140,255,0.18) 0%, transparent 50%),
radial-gradient(ellipse 60%  80% at 0%   60%,  rgba(40,0,200,0.14)  0%, transparent 55%),
radial-gradient(ellipse 70%  60% at 100% 40%,  rgba(0,200,200,0.10) 0%, transparent 50%);
animation: bgShift 28s ease-in-out infinite alternate;
will-change: opacity;
}
@keyframes bgShift {
0%   { opacity: 1; }
50%  { opacity: 0.75; }
100% { opacity: 1; }
}
body::after {
content: '';
position: fixed; inset: 0; z-index: -2; pointer-events: none;
background:
radial-gradient(circle 400px at 20% 20%, rgba(0,180,255,0.08), transparent),
radial-gradient(circle 350px at 80% 70%, rgba(100,40,255,0.08), transparent),
radial-gradient(circle 280px at 60% 10%, rgba(0,220,180,0.05), transparent);
animation: orbDrift 36s ease-in-out infinite alternate;
will-change: opacity;
}
@keyframes orbDrift {
0%   { opacity: 1; }
50%  { opacity: 0.6; }
100% { opacity: 1; }
}
body.light-mode {
--bg: #e8f0ff; --surface: rgba(255,255,255,0.55); --surface2: rgba(220,235,255,0.55); --border: #c5d5ee;
--text: #1e293b; --muted: #64748b;
--glass-bg: rgba(255,255,255,0.45);
--glass-bg-hover: rgba(255,255,255,0.60);
--glass-border: rgba(255,255,255,0.70);
--glass-shadow: 0 8px 32px rgba(0,80,160,0.10), 0 1px 0 rgba(255,255,255,0.8) inset;
}
body.light-mode::before {
background:
radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0,180,255,0.08) 0%, transparent 60%),
radial-gradient(ellipse 60% 50% at 80% 80%, rgba(100,60,237,0.05) 0%, transparent 55%),
linear-gradient(160deg, rgba(220,235,255,0.45) 0%, rgba(232,240,255,0.40) 50%, rgba(240,232,255,0.40) 100%);
}
body.light-mode { background: transparent !important; color: var(--text) !important; }
body.light-mode .card { background: var(--surface) !important; border-color: var(--border) !important; }
body.light-mode #welcome-screen .card { background: transparent !important; border-color: transparent !important; }
body.light-mode .premium-card { background: var(--surface) !important; border-color: var(--border) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; }
body.light-mode .input-field { background: #f8faff !important; border-color: #c5d5ee !important; color: #1e293b !important; }
body.light-mode .item-list-row { background: var(--surface2) !important; border-color: var(--border) !important; }
body.light-mode #admin-panel,
body.light-mode #customer-panel,
body.light-mode #welcome-screen,
body.light-mode #auth-forms-container { background: transparent !important; }
body.light-mode .bg-\[#0b1120\] { background: transparent !important; }
body.light-mode [class*="bg-slate-9"],
body.light-mode [class*="bg-\[#0b"] { background: rgba(220,235,255,0.40) !important; border-color: var(--border) !important; }
body.light-mode .topbar-glass {
background: rgba(255,255,255,0.35) !important;
border-color: rgba(255,255,255,0.70) !important;
border-top-color: rgba(255,255,255,0.90) !important;
box-shadow: 0 8px 32px rgba(0,80,160,0.15), 0 1px 0 rgba(255,255,255,0.80) inset !important;
}
body.light-mode .text-white { color: #1e293b !important; }
body.light-mode .text-gray-300,
body.light-mode .text-gray-400 { color: #475569 !important; }
body.light-mode .text-gray-500 { color: #64748b !important; }
body.light-mode .border-white\/5,
body.light-mode .border-white\/10 { border-color: var(--border) !important; }
body.light-mode select option { background: #ffffff; color: #1e293b; }
.theme-toggle-btn {
display: flex; align-items: center; gap: 6px;
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border: 1px solid var(--glass-border);
border-radius: 20px; padding: 5px 12px;
cursor: pointer; font-size: 12px; font-weight: 700;
color: var(--text); transition: all 0.25s; white-space: nowrap;
box-shadow: var(--glass-shadow);
}
.theme-toggle-btn:hover {
border-color: var(--glass-border-glow);
background: var(--glass-bg-hover);
box-shadow: var(--glass-glow-cyan);
}
*, *::before, *::after { box-sizing: border-box; }
body {
background: var(--bg); color: var(--text);
font-family: 'Sora', 'Hind Siliguri', sans-serif;
min-height: 100vh; overflow-x: hidden;
-webkit-tap-highlight-color: transparent; margin: 0;
}
.mono { font-family: 'Space Mono', monospace; }
.card {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border: 1px solid var(--glass-border);
border-top-color: var(--glass-border-top);
border-radius: 24px;
position: relative; overflow: hidden;
box-shadow: var(--glass-shadow);
transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
contain: layout style;
}
.card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 50%;
background: var(--liquid-refract);
border-radius: 24px 24px 60% 60% / 24px 24px 20px 20px;
pointer-events: none; z-index: 1;
}
.card::after {
content: '';
position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
pointer-events: none;
}
.card:hover {
border-color: rgba(0,200,255,0.35);
box-shadow: var(--glass-shadow), var(--glass-glow-cyan);
transform: translateY(-1px);
}
#welcome-screen .card::before,
#welcome-screen .card::after {
display: none;
}
.premium-card {
background: rgba(255,255,255,0.14);
backdrop-filter: var(--glass-blur-heavy);
-webkit-backdrop-filter: var(--glass-blur-heavy);
border: 1px solid rgba(255,255,255,0.32);
border-top-color: rgba(255,255,255,0.60);
border-radius: 28px;
box-shadow: var(--glass-shadow-lg);
position: relative; overflow: hidden;
}
.premium-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 55%;
background: var(--liquid-refract);
border-radius: 28px 28px 70% 70% / 28px 28px 24px 24px;
pointer-events: none; z-index: 1;
}
.input-field {
background: rgba(255,255,255,0.10);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255,255,255,0.25);
border-top-color: rgba(255,255,255,0.50);
border-radius: 14px;
color: var(--text); padding: 14px 16px; width: 100%;
font-size: 14px; outline: none; font-family: inherit;
transition: all 0.25s;
box-shadow:
0 4px 16px rgba(0,0,0,0.30),
0 1px 0 rgba(255,255,255,0.45) inset,
0 -1px 0 rgba(0,0,0,0.12) inset;
}
.input-field:focus {
border-color: rgba(0,200,255,0.55);
border-top-color: rgba(0,220,255,0.80);
background: rgba(0,180,255,0.08);
box-shadow:
0 0 0 3px rgba(0,200,255,0.15),
0 4px 20px rgba(0,0,0,0.30),
0 1px 0 rgba(255,255,255,0.50) inset,
0 0 20px rgba(0,200,255,0.12);
}
.btn-primary {
background: linear-gradient(160deg,
rgba(0,200,255,0.75) 0%,
rgba(0,150,255,0.65) 40%,
rgba(0,100,220,0.70) 100%);
backdrop-filter: blur(16px) saturate(200%);
-webkit-backdrop-filter: blur(16px) saturate(200%);
color: #fff;
border: 1px solid rgba(255,255,255,0.30);
border-top-color: rgba(255,255,255,0.65);
border-radius: 14px; padding: 14px 28px;
font-weight: 700; font-size: 14px; cursor: pointer;
transition: all 0.2s; width: 100%; display: block;
box-shadow:
0 6px 24px rgba(0,150,255,0.35),
0 1px 0 rgba(255,255,255,0.60) inset,
0 -1px 0 rgba(0,0,0,0.15) inset;
position: relative; overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 50%;
background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.00) 100%);
border-radius: 14px 14px 50% 50% / 14px 14px 8px 8px;
pointer-events: none;
}
.btn-primary::after {
content: '';
position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
background: linear-gradient(105deg, transparent, rgba(255,255,255,0.20), transparent);
transition: left 0.5s;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover {
transform: translateY(-2px);
box-shadow:
0 10px 36px rgba(0,150,255,0.50),
0 1px 0 rgba(255,255,255,0.70) inset,
0 -1px 0 rgba(0,0,0,0.15) inset;
}
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-danger {
background: rgba(239,68,68,0.14);
backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
color: #f87171;
border: 1px solid rgba(248,113,113,0.30);
border-top-color: rgba(255,150,150,0.50);
border-radius: 12px; padding: 8px 16px; font-size: 13px; cursor: pointer;
transition: all 0.2s;
box-shadow: 0 2px 10px rgba(239,68,68,0.15), 0 1px 0 rgba(255,200,200,0.25) inset;
}
.btn-danger:hover {
background: rgba(239,68,68,0.22);
box-shadow: 0 4px 20px rgba(239,68,68,0.30), 0 1px 0 rgba(255,200,200,0.35) inset;
transform: translateY(-1px);
}
.btn-success {
background: rgba(16,185,129,0.14);
backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
color: #34d399;
border: 1px solid rgba(52,211,153,0.30);
border-top-color: rgba(100,240,180,0.50);
border-radius: 12px; padding: 8px 14px; font-size: 12px; cursor: pointer;
font-weight: 700; transition: all 0.2s;
box-shadow: 0 2px 10px rgba(16,185,129,0.15), 0 1px 0 rgba(100,255,200,0.25) inset;
}
.btn-success:hover {
background: rgba(16,185,129,0.22);
box-shadow: 0 4px 20px rgba(16,185,129,0.30), 0 1px 0 rgba(100,255,200,0.35) inset;
transform: translateY(-1px);
}
.app-btn-glow {
background: linear-gradient(145deg, rgba(0,180,255,0.65), rgba(100,40,255,0.60));
backdrop-filter: blur(32px) saturate(220%); -webkit-backdrop-filter: blur(32px) saturate(220%);
color: #fff;
border: 1px solid rgba(255,255,255,0.28);
border-top-color: rgba(255,255,255,0.55);
font-weight: 700; border-radius: 18px; padding: 14px;
box-shadow:
0 8px 28px rgba(0,100,255,0.30),
0 1px 0 rgba(255,255,255,0.55) inset,
0 -1px 0 rgba(0,0,0,0.12) inset;
display: block; text-align: center; text-decoration: none;
transition: all 0.2s; position: relative; overflow: hidden;
}
.app-btn-glow::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 48%;
background: linear-gradient(180deg, rgba(255,255,255,0.26) 0%, transparent 100%);
border-radius: 18px 18px 50% 50%;
pointer-events: none;
}
.app-btn-glow:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(0,100,255,0.45), var(--glass-glow-purple);
}
.item-list-row {
background: rgba(255,255,255,0.10);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255,255,255,0.22);
border-top-color: rgba(255,255,255,0.45);
border-radius: 16px; padding: 14px 16px;
display: flex; align-items: center; justify-content: space-between; gap: 10px;
transition: all 0.25s;
box-shadow:
0 4px 16px rgba(0,0,0,0.30),
0 1px 0 rgba(255,255,255,0.40) inset;
position: relative; overflow: hidden;
}
.item-list-row::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 45%;
background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
border-radius: 16px 16px 50% 50% / 16px 16px 8px 8px;
pointer-events: none;
}
.item-list-row:hover {
border-color: rgba(0,200,255,0.40);
border-top-color: rgba(0,220,255,0.65);
background: rgba(0,180,255,0.12);
box-shadow: 0 6px 24px rgba(0,0,0,0.35), var(--glass-glow-cyan);
transform: translateY(-1px);
}
label { font-size: 13px; color: var(--muted); font-weight: 600; display: block; margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.full-width { grid-column: span 2 / span 2; }
.toast {
position: fixed; bottom: 90px; left: 50%;
transform: translateX(-50%) translateY(30px);
background: rgba(255,255,255,0.15);
backdrop-filter: blur(24px) saturate(200%);
-webkit-backdrop-filter: blur(24px) saturate(200%);
border: 1px solid rgba(255,255,255,0.32);
border-top-color: rgba(255,255,255,0.62);
border-radius: 20px; padding: 13px 20px;
display: flex; align-items: center; gap: 10px;
font-size: 14px; z-index: 99999; opacity: 0;
transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
width: calc(100% - 40px); max-width: 380px; pointer-events: none;
box-shadow:
0 16px 48px rgba(0,0,0,0.50),
0 1px 0 rgba(255,255,255,0.60) inset,
0 -1px 0 rgba(0,0,0,0.12) inset;
position: relative; overflow: hidden;
}
.toast::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 45%;
background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
border-radius: 20px 20px 50% 50%;
pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.html-viewer-screen { position: fixed; inset: 0; background: #000; z-index: 99999; display: flex; flex-direction: column; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: rgba(15,23,42,0.5); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.20); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,0.35); }
#bg-photo-layer, #bg-photo-overlay { transform: translateZ(0); }
.item-list-row { content-visibility: auto; }
.auth-glass {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border: 1px solid rgba(255,255,255,0.14);
box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.auth-glass input,
.auth-glass .input-field {
background: rgba(4,7,15,0.45);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.auth-glass h2,
.auth-glass p,
.auth-glass label {
text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}
.topbar-glass {
background: rgba(255,255,255,0.10);
backdrop-filter: blur(40px) saturate(220%);
-webkit-backdrop-filter: blur(40px) saturate(220%);
border: 1px solid rgba(255,255,255,0.28);
border-top-color: rgba(255,255,255,0.55);
border-bottom-color: rgba(255,255,255,0.10);
border-radius: 20px;
margin: 10px 10px 0 10px;
box-shadow:
0 8px 32px rgba(0,0,0,0.45),
0 1px 0 rgba(255,255,255,0.50) inset,
0 -1px 0 rgba(0,0,0,0.15) inset;
position: relative;
overflow: hidden;
}
.topbar-glass::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 50%;
background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
border-radius: 20px 20px 60% 60% / 20px 20px 16px 16px;
pointer-events: none; z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.btn-primary:active   { transform: scale(0.96) translateY(0) !important; transition: transform 0.08s, box-shadow 0.08s !important; }
.btn-danger:active    { transform: scale(0.96) !important; transition: transform 0.08s !important; }
.btn-success:active   { transform: scale(0.96) !important; transition: transform 0.08s !important; }
.bkash-bg:active      { transform: scale(0.96) translateY(0) !important; transition: transform 0.08s !important; }
.app-btn-glow:active  { transform: scale(0.96) translateY(0) !important; transition: transform 0.08s !important; }
.item-list-row:active { transform: scale(0.98) !important; transition: transform 0.08s !important; }
.settings-menu-item:active { transform: scale(0.97) !important; transition: transform 0.08s !important; }
.qa-btn:not(:hover) { animation: none !important; transform: translateY(0) !important; }
.qa-btn { will-change: transform, box-shadow; }
.settings-overlay {
position: fixed; inset: 0;
background: rgba(0,10,30,0.50);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
z-index: 99990; display: none; align-items: flex-end; justify-content: center;
}
.settings-overlay.open { display: flex; }
.settings-sheet {
background: rgba(255,255,255,0.10);
backdrop-filter: blur(24px) saturate(200%);
-webkit-backdrop-filter: blur(24px) saturate(200%);
border-radius: 32px 32px 0 0;
border: 1px solid rgba(255,255,255,0.28);
border-top-color: rgba(255,255,255,0.60);
border-bottom: none;
width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
padding-bottom: 32px; animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow:
0 -24px 80px rgba(0,0,0,0.50),
0 -1px 0 rgba(255,255,255,0.55) inset;
position: relative; overflow: hidden;
}
.settings-sheet::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 60px;
background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
border-radius: 32px 32px 0 0;
pointer-events: none; z-index: 0;
}
@keyframes slideUp { from { transform: translateY(100%); opacity:0; } to { transform: translateY(0); opacity:1; } }
.settings-tab {
padding: 10px 16px; border-radius: 12px; font-size: 13px; font-weight: 600;
cursor: pointer; transition: all 0.2s; color: var(--muted);
background: transparent; border: 1px solid transparent;
}
.settings-tab.active {
background: rgba(0,212,255,0.10);
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
color: var(--accent); border-color: rgba(0,212,255,0.22);
box-shadow: 0 0 16px rgba(0,212,255,0.10);
}
#tab-logout { color: #ef4444 !important; }
#tab-logout.active {
background: rgba(239,68,68,0.10); color: #ef4444 !important;
border-color: rgba(239,68,68,0.28);
}
.settings-menu-item {
background: rgba(255,255,255,0.10);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255,255,255,0.22);
border-top-color: rgba(255,255,255,0.45);
border-radius: 18px; padding: 14px 16px;
display: flex; align-items: center; justify-content: space-between;
width: 100%; cursor: pointer; transition: all 0.2s;
position: relative; overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.35) inset;
}
.settings-menu-item::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 45%;
background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
border-radius: 18px 18px 50% 50% / 18px 18px 8px 8px;
pointer-events: none;
}
.settings-menu-item:hover {
border-color: rgba(0,200,255,0.40);
border-top-color: rgba(0,220,255,0.65);
background: rgba(0,180,255,0.10);
box-shadow: 0 4px 20px rgba(0,0,0,0.30), var(--glass-glow-cyan);
transform: translateY(-1px);
}
.settings-menu-item:active { transform: scale(0.98); }
.settings-inner-content { display: none; }
.settings-inner-content.active { display: block; }
.settings-section { display: none; }
.settings-section.active { display: block; }
.lang-option {
background: var(--glass-bg);
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: 12px; padding: 12px 14px;
cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.2s;
}
.lang-option:hover { border-color: var(--glass-border-glow); background: var(--glass-bg-hover); }
.lang-option.selected {
border-color: var(--glass-border-glow);
background: rgba(0,212,255,0.08);
box-shadow: var(--glass-glow-cyan);
}
.settings-icon-btn {
background: rgba(0,212,255,0.07);
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(0,212,255,0.18);
border-radius: 14px; width: 40px; height: 40px;
display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: all 0.25s; font-size: 18px;
}
.settings-icon-btn:hover {
background: rgba(0,212,255,0.16);
box-shadow: 0 0 18px rgba(0,212,255,0.20);
transform: rotate(30deg);
}
.about-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.about-row:last-child { border-bottom: none; }
select.input-field {
appearance: none; -webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
select.input-field option { background: #111827; color: #e2e8f0; }
.master-panel {
background: linear-gradient(135deg, rgba(10,15,30,0.8) 0%, rgba(13,27,42,0.8) 100%);
backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
.master-badge {
background: linear-gradient(135deg, #fbbf24, #f59e0b);
color: #0a0f1e; font-size: 10px; font-weight: 800;
padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px;
box-shadow: 0 2px 10px rgba(251,191,36,0.35);
}
.status-active, .status-expired, .status-free, .status-pending {
backdrop-filter: blur(24px) saturate(200%);
-webkit-backdrop-filter: blur(24px) saturate(200%);
border-width: 1px; border-style: solid;
box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.20) inset;
}
.status-active {
background: rgba(16,185,129,0.14); color: #34d399;
border-color: rgba(52,211,153,0.35); border-top-color: rgba(52,211,153,0.55);
}
.status-expired {
background: rgba(239,68,68,0.14); color: #f87171;
border-color: rgba(248,113,113,0.35); border-top-color: rgba(248,113,113,0.55);
}
.status-free {
background: rgba(0,200,255,0.14); color: #67e8f9;
border-color: rgba(103,232,249,0.35); border-top-color: rgba(103,232,249,0.55);
}
.status-pending {
background: rgba(251,191,36,0.14); color: #fcd34d;
border-color: rgba(252,211,77,0.35); border-top-color: rgba(252,211,77,0.55);
}
.bkash-pink { color: #e2136e; }
.bkash-bg {
background: linear-gradient(145deg, rgba(226,19,110,0.75), rgba(180,10,80,0.70));
backdrop-filter: blur(32px) saturate(220%); -webkit-backdrop-filter: blur(32px) saturate(220%);
color: white;
border: 1px solid rgba(255,100,160,0.32);
border-top-color: rgba(255,160,200,0.60);
border-radius: 16px; padding: 14px; font-weight: 700; font-size: 14px;
cursor: pointer; width: 100%; transition: all 0.2s;
position: relative; overflow: hidden;
box-shadow:
0 6px 28px rgba(226,19,110,0.32),
0 1px 0 rgba(255,180,210,0.50) inset,
0 -1px 0 rgba(0,0,0,0.14) inset;
}
.bkash-bg::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 48%;
background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
border-radius: 16px 16px 50% 50%;
pointer-events: none;
}
.bkash-bg:hover {
box-shadow: 0 10px 40px rgba(226,19,110,0.48), 0 1px 0 rgba(255,180,210,0.60) inset;
transform: translateY(-2px);
}
.notice-banner {
background: rgba(255,255,255,0.09);
backdrop-filter: blur(40px) saturate(220%);
-webkit-backdrop-filter: blur(40px) saturate(220%);
border: 1px solid rgba(255,191,36,0.30);
border-top-color: rgba(255,220,80,0.55);
border-radius: 16px; padding: 12px 16px;
position: relative; overflow: hidden;
box-shadow:
0 4px 20px rgba(0,0,0,0.30),
0 1px 0 rgba(255,220,80,0.35) inset;
}
.notice-banner::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 45%;
background: linear-gradient(180deg, rgba(255,220,80,0.12) 0%, transparent 100%);
border-radius: 16px 16px 50% 50%;
pointer-events: none;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,0.4)} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }
.pulse-dot { animation: pulse-green 2s infinite; will-change: box-shadow; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
padding: 10px 12px; text-align: left; font-size: 11px; font-weight: 700;
color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px;
border-bottom: 1px solid rgba(0,212,255,0.12);
background: rgba(0,212,255,0.03);
}
.data-table td { padding: 10px 12px; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.data-table tr:hover td {
background: rgba(0,212,255,0.04);
backdrop-filter: blur(4px);
}
@keyframes btnPulseGlow {
0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 0 rgba(0,212,255,0); }
50%       { box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 20px 4px rgba(0,212,255,0.20); }
}
@keyframes btnFloat {
0%, 100% { transform: translateY(0px); }
50%       { transform: translateY(-5px); }
}
@keyframes btnShimmer {
0%   { background-position: -200% center; }
100% { background-position: 200% center; }
}
@keyframes btnBounceIn {
0%   { transform: scale(0.82); opacity: 0; }
60%  { transform: scale(1.07); }
100% { transform: scale(1); opacity: 1; }
}
.qa-btn {
animation: btnBounceIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
position: relative; overflow: hidden;
background: rgba(255,255,255,0.11) !important;
backdrop-filter: blur(40px) saturate(220%) brightness(1.10) !important;
-webkit-backdrop-filter: blur(40px) saturate(220%) brightness(1.10) !important;
border: 1px solid rgba(255,255,255,0.24) !important;
border-top-color: rgba(255,255,255,0.52) !important;
box-shadow:
0 8px 28px rgba(0,0,0,0.40),
0 1px 0 rgba(255,255,255,0.50) inset,
0 -1px 0 rgba(0,0,0,0.15) inset !important;
transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s !important;
}
.qa-btn::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 48%;
background: linear-gradient(180deg,
rgba(255,255,255,0.28) 0%,
rgba(255,255,255,0.10) 60%,
rgba(255,255,255,0.00) 100%);
border-radius: inherit;
pointer-events: none; z-index: 1;
}
.qa-btn::after {
content: '';
position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
transition: left 0.6s ease;
pointer-events: none; z-index: 2;
}
.qa-btn:hover::after { left: 130%; }
.qa-btn:hover {
animation: btnFloat 1.8s ease-in-out infinite;
border-color: rgba(0,200,255,0.45) !important;
border-top-color: rgba(0,220,255,0.70) !important;
background: rgba(0,180,255,0.14) !important;
box-shadow:
0 12px 36px rgba(0,0,0,0.45),
0 1px 0 rgba(255,255,255,0.60) inset,
0 -1px 0 rgba(0,0,0,0.15) inset,
var(--glass-glow-cyan) !important;
transform: translateY(-3px) !important;
}
.qa-btn:active         { transform: scale(0.93) !important; animation: none !important; }
.qa-btn .qa-icon       { transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1); display: inline-block; }
.qa-btn:hover .qa-icon { transform: scale(1.32) rotate(-7deg); }
.qa-btn-glow           { animation: btnBounceIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both, btnPulseGlow 2.5s ease-in-out 0.5s infinite; }
.drag-handle { cursor: grab; touch-action: none; color: #475569; font-size: 18px; padding: 0 4px; user-select: none; line-height: 1; }
.drag-handle:active { cursor: grabbing; }
.sortable-ghost {
opacity: 0.35;
background: rgba(0,212,255,0.06) !important;
border-color: rgba(0,212,255,0.35) !important;
border-radius: 14px;
backdrop-filter: blur(12px) !important;
}
.sortable-chosen {
box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--glass-glow-cyan);
transform: scale(1.03); z-index: 999;
}
#app-loading-overlay {
display: none; position: fixed; inset: 0; z-index: 99999;
background: rgba(6,8,15,0.80);
backdrop-filter: var(--glass-blur-heavy);
-webkit-backdrop-filter: var(--glass-blur-heavy);
align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
#app-loading-overlay.show { display: flex; }
.app-spinner {
width: 52px; height: 52px;
border: 3px solid rgba(0,212,255,0.12);
border-top-color: #00d4ff;
border-radius: 50%;
animation: spin-loader 0.75s linear infinite;
box-shadow: 0 0 20px rgba(0,212,255,0.20);
will-change: transform;
}
@keyframes spin-loader { to { transform: rotate(360deg); } }
.app-spinner-text {
color: rgba(100,116,139,0.9); font-size: 13px; font-weight: 600;
letter-spacing: 0.06em;
background: var(--glass-bg);
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
border: 1px solid var(--glass-border);
padding: 6px 16px; border-radius: 20px;
}
#hj-loading-screen {
position: fixed;
inset: 0;
z-index: 999999;
background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', system-ui, sans-serif;
overflow: hidden;
transition: opacity 0.6s ease, visibility 0.6s ease;
}
#hj-loading-screen.hj-hide {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
#hj-loading-screen::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(white 1px, transparent 1px);
background-size: 50px 50px;
opacity: 0.05;
z-index: 1;
}
.hj-unique-loader {
position: relative;
z-index: 2;
text-align: center;
}
.hj-data-core {
position: relative;
width: 120px;
height: 120px;
margin: 0 auto 50px;
}
.hj-core-hex {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: rgba(14, 165, 233, 0.05);
border: 2px solid rgba(14, 165, 233, 0.2);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
animation: hjCorePulse 2s infinite ease-in-out;
}
.hj-particle {
position: absolute;
width: 6px;
height: 6px;
background: #0ea5e9;
border-radius: 50%;
box-shadow: 0 0 10px #0ea5e9;
opacity: 0;
}
.hj-particle:nth-child(1) { top: -20px; left: -20px; animation: hjAssemble 2.5s infinite 0.1s; }
.hj-particle:nth-child(2) { top: -20px; left: 140px; animation: hjAssemble 2.5s infinite 0.3s; }
.hj-particle:nth-child(3) { top: 60px;  left: 160px; animation: hjAssemble 2.5s infinite 0.5s; }
.hj-particle:nth-child(4) { top: 140px; left: 140px; animation: hjAssemble 2.5s infinite 0.7s; }
.hj-particle:nth-child(5) { top: 140px; left: -20px; animation: hjAssemble 2.5s infinite 0.9s; }
.hj-particle:nth-child(6) { top: 60px;  left: -40px; animation: hjAssemble 2.5s infinite 1.1s; }
.hj-brand-frame {
margin-top: 20px;
position: relative;
}
.hj-tag {
font-size: 12px;
font-weight: 700;
color: rgba(255, 255, 255, 0.4);
text-transform: uppercase;
letter-spacing: 5px;
margin-bottom: 6px;
display: inline-block;
}
.hj-name-reveal {
font-size: 38px;
font-weight: 800;
letter-spacing: -1px;
position: relative;
display: inline-block;
}
.hj-name-part-1 { color: #f8fafc; }
.hj-name-part-2 { color: #0ea5e9; }
.hj-name-reveal::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background: linear-gradient(90deg, #f8fafc, #0ea5e9);
border-radius: 2px;
animation: hjLineReveal 2.5s infinite ease-out;
box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}
.hj-status {
font-size: 13px;
color: #64748b;
margin-top: 15px;
font-weight: 500;
animation: hjTextFlicker 2.5s infinite;
}
@keyframes hjAssemble {
0%   { transform: scale(1); opacity: 0; }
10%  { opacity: 1; }
50%  { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
60%  { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
100% { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
}
@keyframes hjCorePulse {
0%, 100% { background: rgba(14, 165, 233, 0.05); border-color: rgba(14, 165, 233, 0.2); }
50%       { background: rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.5); }
}
@keyframes hjLineReveal {
0%   { width: 0;    left: 0; }
30%  { width: 100%; left: 0; }
60%  { width: 0;    left: 100%; }
100% { width: 0;    left: 100%; }
}
@keyframes hjTextFlicker {
0%, 15%, 20%, 30%, 100% { opacity: 1; }
17% { opacity: 0.5; }
22% { opacity: 0.7; }
}
.confirm-overlay {
position: fixed; inset: 0;
background: rgba(0,0,0,0.65);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
z-index: 999999; display: flex; align-items: center; justify-content: center;
padding: 20px;
}
.confirm-box {
background: rgba(255,255,255,0.12);
backdrop-filter: blur(60px) saturate(240%) brightness(1.08);
-webkit-backdrop-filter: blur(60px) saturate(240%) brightness(1.08);
border: 1px solid rgba(255,255,255,0.28);
border-top-color: rgba(255,255,255,0.58);
border-radius: 28px; padding: 28px 24px; width: 100%; max-width: 340px;
text-align: center;
box-shadow:
0 30px 80px rgba(0,0,0,0.55),
0 1px 0 rgba(255,255,255,0.58) inset,
0 -1px 0 rgba(0,0,0,0.15) inset;
animation: confirmPop 0.25s cubic-bezier(0.34,1.56,0.64,1);
position: relative; overflow: hidden;
}
.confirm-box::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 50%;
background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
border-radius: 28px 28px 60% 60%;
pointer-events: none;
}
@keyframes confirmPop {
from { transform: scale(0.80); opacity: 0; }
to   { transform: scale(1);    opacity: 1; }
}
.confirm-icon { font-size: 44px; margin-bottom: 14px; filter: drop-shadow(0 0 12px rgba(0,212,255,0.3)); }
.confirm-msg  { font-size: 15px; color: #e2e8f0; font-weight: 600; line-height: 1.55; margin-bottom: 24px; }
.confirm-btns { display: flex; gap: 12px; }
.confirm-yes  {
flex: 1;
background: linear-gradient(135deg, rgba(239,68,68,0.80), rgba(220,38,38,0.80));
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
color: white; border: 1px solid rgba(239,68,68,0.35);
border-radius: 14px; padding: 14px; font-size: 14px; font-weight: 700; cursor: pointer;
box-shadow: 0 4px 16px rgba(239,68,68,0.25);
transition: all 0.2s;
}
.confirm-yes:hover { box-shadow: 0 6px 24px rgba(239,68,68,0.40); transform: translateY(-1px); }
.confirm-no   {
flex: 1;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
color: #94a3b8; border: 1px solid rgba(255,255,255,0.10);
border-radius: 14px; padding: 14px; font-size: 14px; font-weight: 700; cursor: pointer;
transition: all 0.2s;
}
.confirm-no:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }
.sticky, [class*="sticky"] {
backdrop-filter: var(--glass-blur) !important;
-webkit-backdrop-filter: var(--glass-blur) !important;
background: rgba(6,8,15,0.70) !important;
border-color: var(--glass-border) !important;
}
#admin-panel, #customer-panel {
background: transparent !important;
}
nav.fixed, footer.fixed, [class*="bottom-nav"], [class*="tab-bar"] {
contain: layout style;
background: rgba(6,8,15,0.75) !important;
backdrop-filter: var(--glass-blur) !important;
-webkit-backdrop-filter: var(--glass-blur) !important;
border-color: var(--glass-border) !important;
}
@media (max-width: 600px) {
:root {
--glass-blur: blur(8px) saturate(140%);
--glass-blur-heavy: blur(12px) saturate(150%);
}
#customer-panel > div { max-width: 100% !important; }
#admin-panel .p-5 { padding: 12px !important; }
#admin-panel .max-w-2xl { max-width: 100% !important; }
#admin-panel .gap-6 { gap: 14px !important; }
#admin-panel .card.p-6 { padding: 14px !important; }
#admin-panel .card.p-5 { padding: 12px !important; }
#master-panel .max-w-6xl { max-width: 100% !important; padding: 12px !important; }
#master-panel .grid { grid-template-columns: 1fr !important; gap: 14px !important; }
#welcome-screen .card { padding: 22px 16px !important; }
#welcome-screen h1 { font-size: 22px !important; }
#auth-forms-container .card { padding: 22px 16px !important; }
.form-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
.btn-primary { min-height: 48px !important; font-size: 14px !important; }
.bkash-bg { min-height: 52px !important; }
.input-field { min-height: 44px !important; font-size: 15px !important; }
select.input-field { min-height: 44px !important; }
#payment-requests-table { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
.data-table { font-size: 11px !important; }
.data-table th, .data-table td { padding: 8px !important; }
#admin-panel .px-5.py-3 { padding: 10px 12px !important; }
#topbar-admin-email { max-width: 110px !important; }
#admin-preview-btn { padding: 7px 10px !important; font-size: 11px !important; }
#admin-theme-btn, #cust-theme-btn { padding: 7px 10px !important; font-size: 11px !important; }
#customer-buttons-container { grid-template-columns: repeat(2, 1fr) !important; }
.qa-btn { min-width: unset !important; flex: 1 1 45% !important; padding: 12px 8px !important; font-size: 11px !important; }
.item-list-row { padding: 13px 12px !important; font-size: 12px !important; }
#master-panel h1 { font-size: 16px !important; }
.master-badge { font-size: 9px !important; padding: 2px 6px !important; }
#master-panel .flex.gap-3.px-4 { gap: 10px !important; padding: 7px 10px !important; }
}
@media (min-width: 601px) and (max-width: 1023px) {
#customer-panel > div { max-width: 560px !important; }
#admin-panel .max-w-2xl { max-width: 640px !important; }
#master-panel .grid { grid-template-columns: 1fr 1fr !important; gap: 18px !important; }
#master-panel .max-w-6xl { padding: 20px !important; }
.form-grid { grid-template-columns: repeat(2, 1fr) !important; }
.btn-primary { min-height: 46px !important; }
.input-field { min-height: 42px !important; }
#payment-requests-table { overflow-x: auto !important; }
#customer-buttons-container { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px) {
#customer-panel > div { max-width: 480px !important; }
#admin-panel .max-w-2xl { max-width: 720px !important; }
#master-panel .grid { grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; }
.form-grid { grid-template-columns: repeat(2, 1fr) !important; }
.data-table th, .data-table td { padding: 12px 14px !important; }
#customer-buttons-container { grid-template-columns: repeat(3, 1fr) !important; }
#topbar-admin-email { max-width: 220px !important; }
#welcome-screen .card, #auth-forms-container .card { max-width: 440px !important; }
}
@media (min-width: 1440px) {
#master-panel .max-w-6xl { max-width: 1280px !important; }
#admin-panel .max-w-2xl { max-width: 800px !important; }
.data-table th, .data-table td { font-size: 13px !important; padding: 13px 16px !important; }
}
body.light-mode #bg-photo-overlay {
background: linear-gradient(
to bottom,
rgba(220,235,255,0.50) 0%,
rgba(220,235,255,0.30) 40%,
rgba(220,235,255,0.45) 100%
) !important;
}
body.light-mode .card {
backdrop-filter: blur(20px) saturate(180%) !important;
-webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}
body.light-mode .auth-glass {
background: rgba(255,255,255,0.50) !important;
backdrop-filter: blur(40px) saturate(180%) !important;
-webkit-backdrop-filter: blur(40px) saturate(180%) !important;
border-color: rgba(255,255,255,0.75) !important;
}