*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
--dark: #0a1628;
--dark2: #0d2137;
--dark3: #1a3a5c;
--gold: #ffd700;
--gold-dark: #ffb800;
--green: #25D366;
--green-dark: #128C7E;
--red: #e63946;
--blue: #3584e4;
--purple: #a855f7;
--orange: #ff9500;
--text: #ffffff;
--text-light: #b0c4de;
--card-bg: rgba(13, 33, 55, 0.6);
--card-border: rgba(255, 215, 0, 0.1);
--sidebar-width: 280px;
--header-height: 70px;
}

html { font-size: 15px; }
body {
font-family: 'Poppins', sans-serif;
background: var(--dark);
color: var(--text);
overflow-x: hidden;
}

/* ═══════════════════════════════════
 AUTH PAGES
 ══════════════════════════════════ */
.auth-wrapper {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
position: relative;
overflow: hidden;
padding: 20px;
}
.auth-bg-particles { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.auth-particle {
position: absolute; border-radius: 50%; opacity: 0;
animation: authFloat 8s ease-in-out infinite;
}
@keyframes authFloat {
0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
20% { opacity: .7; } 50% { opacity: .3; }
80% { opacity: .1; }
100% { opacity: 0; transform: translateY(-100px) scale(1); }
}
.auth-glow {
position: absolute; width: 500px; height: 500px;
border-radius: 50%; filter: blur(120px); opacity: .12; z-index: 0;
}
.auth-glow-1 { background: var(--gold); top: -100px; right: -100px; }
.auth-glow-2 { background: var(--green); bottom: -150px; left: -150px; }
.auth-container { position: relative; z-index: 2; width: 100%; max-width: 460px; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo-text {
font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.auth-logo-text span { font-weight: 700; -webkit-text-fill-color: var(--text); }
.auth-logo-sub { font-size: .82rem; color: var(--text-light); margin-top: 6px; }
.auth-card {
background: var(--card-bg); backdrop-filter: blur(20px);
border: 1px solid var(--card-border); border-radius: 24px;
padding: 40px 36px; box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.auth-tabs {
display: flex; gap: 4px; background: rgba(255,255,255,.05);
border-radius: 14px; padding: 4px; margin-bottom: 30px;
}
.auth-tab {
flex: 1; padding: 12px; text-align: center; border-radius: 12px;
font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .3s;
color: var(--text-light); border: none; background: transparent;
font-family: 'Poppins', sans-serif;
}
.auth-tab.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.auth-tab:hover:not(.active) { color: var(--gold); }
.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-light); margin-bottom: 7px; }
.form-input-wrapper { position: relative; }
.form-input-wrapper .input-icon {
position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
font-size: 1.1rem; opacity: .5;
}
.form-input {
width: 100%; padding: 14px 18px 14px 44px;
background: rgba(10, 22, 40, .8); border: 1px solid rgba(255,255,255,.1);
border-radius: 12px; color: var(--text); font-family: 'Poppins', sans-serif;
font-size: .92rem; transition: all .3s; outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,.1); }
.form-input::placeholder { color: rgba(255,255,255,.25); }
.form-input option, .form-input-plain option { background: var(--dark); color: var(--text); }
.form-input-plain {
width: 100%; padding: 14px 18px;
background: rgba(10, 22, 40, .8); border: 1px solid rgba(255,255,255,.1);
border-radius: 12px; color: var(--text); font-family: 'Poppins', sans-serif;
font-size: .92rem; transition: all .3s; outline: none;
}
.form-input-plain:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,.1); }
.form-input-plain::placeholder { color: rgba(255,255,255,.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-checkbox {
display: flex; align-items: center; gap: 10px;
font-size: .85rem; color: var(--text-light); cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
appearance: none; width: 20px; height: 20px;
border: 2px solid rgba(255,255,255,.2); border-radius: 6px;
cursor: pointer; transition: all .3s; position: relative;
}
.form-checkbox input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.form-checkbox input[type="checkbox"]:checked::after {
content: '✓'; position: absolute; inset: 0;
display: flex; align-items: center; justify-content: center;
color: var(--dark); font-weight: 700; font-size: .75rem;
}
.form-footer {
display: flex; justify-content: space-between; align-items: center;
margin-bottom: 20px; font-size: .82rem;
}
.form-link { color: var(--gold); text-decoration: none; transition: opacity .3s; }
.form-link:hover { opacity: .7; }
.btn-auth {
width: 100%; padding: 15px; border: none; border-radius: 14px;
font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
cursor: pointer; transition: all .3s;
}
.btn-auth.gold {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--dark); box-shadow: 0 8px 30px rgba(255,215,0,.3);
}
.btn-auth.gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,215,0,.4); }
.btn-auth.green {
background: linear-gradient(135deg, var(--green), var(--green-dark));
color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,.3);
}
.btn-auth.green:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,.4); }
.auth-divider {
display: flex; align-items: center; gap: 16px;
margin: 24px 0; color: var(--text-light); font-size: .8rem;
}
.auth-divider::before, .auth-divider::after {
content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}
.social-login { display: flex; gap: 12px; }
.social-btn {
flex: 1; padding: 12px; border-radius: 12px;
border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03);
color: var(--text-light); font-size: 1.3rem; cursor: pointer;
transition: all .3s; display: flex; align-items: center; justify-content: center;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,.05); }
.password-toggle {
position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
background: none; border: none; color: var(--text-light);
cursor: pointer; font-size: 1.1rem; opacity: .5; transition: opacity .3s;
}
.password-toggle:hover { opacity: 1; }


/* ═══════════════════════════════════
 DASHBOARD LAYOUT
 ══════════════════════════════════ */
.dashboard { display: none; }
.dashboard.active { display: flex; }

/* ─ Sidebar ── */
.sidebar {
width: var(--sidebar-width); height: 100vh;
position: fixed; top: 0; left: 0;
background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
border-right: 1px solid rgba(255,215,0,.08);
z-index: 100; display: flex; flex-direction: column;
transition: transform .3s ease; overflow-y: auto; overflow-x: hidden;
}
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,215,0,.2); border-radius: 3px; }
.sidebar-header {
padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.05);
display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.sidebar-logo {
font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sidebar-logo span { -webkit-text-fill-color: var(--text); font-weight: 700; }
.sidebar-badge {
font-size: .6rem; padding: 3px 10px;
background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3);
border-radius: 50px; color: var(--green); font-weight: 600;
}
.sidebar-nav { padding: 16px 12px; flex: 1; }
.nav-section-title {
font-size: .68rem; font-weight: 700; text-transform: uppercase;
letter-spacing: 1.5px; color: rgba(255,255,255,.25); padding: 16px 12px 8px;
}
.nav-item {
display: flex; align-items: center; gap: 12px;
padding: 12px 16px; border-radius: 12px;
color: var(--text-light); text-decoration: none;
font-size: .88rem; font-weight: 500; cursor: pointer;
transition: all .3s; margin-bottom: 2px;
border: none; background: none; width: 100%;
text-align: left; font-family: 'Poppins', sans-serif;
}
.nav-item:hover { background: rgba(255,215,0,.06); color: var(--text); }
.nav-item.active {
background: linear-gradient(135deg, rgba(255,215,0,.12), rgba(255,184,0,.06));
color: var(--gold); border: 1px solid rgba(255,215,0,.15);
}
.nav-icon {
width: 38px; height: 38px; min-width: 38px;
border-radius: 10px; display: flex; align-items: center;
justify-content: center; font-size: 1.15rem;
}
.nav-icon.icon-gold { background: rgba(255,215,0,.12); }
.nav-icon.icon-green { background: rgba(37,211,102,.12); }
.nav-icon.icon-blue { background: rgba(53,132,228,.12); }
.nav-icon.icon-red { background: rgba(230,57,70,.12); }
.nav-icon.icon-purple { background: rgba(168,85,247,.12); }
.nav-icon.icon-orange { background: rgba(255,149,0,.12); }
.nav-badge {
margin-left: auto; padding: 2px 10px;
border-radius: 50px; font-size: .7rem; font-weight: 700;
}
.nav-badge.green { background: rgba(37,211,102,.15); color: var(--green); }
.nav-badge.red { background: rgba(230,57,70,.15); color: var(--red); }
.nav-badge.gold { background: rgba(255,215,0,.15); color: var(--gold); }
.sidebar-footer {
padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.05); flex-shrink: 0;
}
.sidebar-user { display: flex; align-items: center; gap: 12px; }
.sidebar-avatar {
width: 42px; height: 42px; border-radius: 12px;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
display: flex; align-items: center; justify-content: center;
font-weight: 800; color: var(--dark); font-size: .95rem;
}
.sidebar-user-info { flex: 1; }
.sidebar-user-name { font-size: .88rem; font-weight: 600; }
.sidebar-user-role { font-size: .72rem; color: var(--text-light); }
.sidebar-logout {
background: none; border: none; color: var(--text-light);
cursor: pointer; font-size: 1.2rem; padding: 8px;
border-radius: 8px; transition: all .3s;
}
.sidebar-logout:hover { color: var(--red); background: rgba(230,57,70,.1); }

/* ── Main Content ── */
.main-content {
margin-left: var(--sidebar-width); min-height: 100vh;
display: flex; flex-direction: column; width: 0; flex: 1;
}

/* ── Header ── */
.top-header {
height: var(--header-height);
background: rgba(10,22,40,.8); backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255,255,255,.05);
display: flex; align-items: center; justify-content: space-between;
padding: 0 30px; position: sticky; top: 0; z-index: 50;
}
.header-left { display: flex; align-items: center; gap: 16px; }
.hamburger-menu {
display: none; background: none; border: none;
color: var(--text); font-size: 1.4rem; cursor: pointer; padding: 8px;
}
.header-title { font-size: 1.15rem; font-weight: 700; white-space: nowrap; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-search { position: relative; }
.header-search input {
width: 240px; padding: 10px 16px 10px 40px;
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
border-radius: 12px; color: var(--text);
font-family: 'Poppins', sans-serif; font-size: .85rem;
outline: none; transition: all .3s;
}
.header-search input:focus { border-color: var(--gold); width: 300px; }
.header-search input::placeholder { color: rgba(255,255,255,.3); }
.header-search-icon {
position: absolute; left: 14px; top: 50%;
transform: translateY(-50%); font-size: .9rem; opacity: .4;
}
.header-btn {
width: 42px; height: 42px; border-radius: 12px;
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
color: var(--text-light); display: flex; align-items: center;
justify-content: center; cursor: pointer; transition: all .3s;
position: relative; font-size: 1.1rem;
}
.header-btn:hover { border-color: var(--gold); color: var(--gold); }
.header-btn .notif-dot {
position: absolute; top: 8px; right: 8px;
width: 8px; height: 8px; border-radius: 50%;
background: var(--red); border: 2px solid var(--dark);
}

/* ── Page Content ── */
.page-content { padding: 30px; flex: 1; }
.page-section { display: none; }
.page-section.active { display: block; animation: fadeUp .4s ease; }

/* ── Stats Cards ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card {
background: var(--card-bg); border: 1px solid var(--card-border);
border-radius: 18px; padding: 24px; position: relative;
overflow: hidden; transition: all .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.2); }
.stat-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0;
height: 3px; border-radius: 3px 3px 0 0;
}
.stat-card.gold::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.stat-card.green::before { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.stat-card.blue::before { background: linear-gradient(90deg, var(--blue), #1a5fb4); }
.stat-card.red::before { background: linear-gradient(90deg, var(--red), #c62828); }
.stat-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.stat-icon {
width: 48px; height: 48px; border-radius: 14px;
display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.stat-icon.gold { background: rgba(255,215,0,.12); }
.stat-icon.green { background: rgba(37,211,102,.12); }
.stat-icon.blue { background: rgba(53,132,228,.12); }
.stat-icon.red { background: rgba(230,57,70,.12); }
.stat-trend { font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.stat-trend.up { background: rgba(37,211,102,.12); color: var(--green); }
.stat-trend.down { background: rgba(230,57,70,.12); color: var(--red); }
.stat-value { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.stat-label { font-size: .82rem; color: var(--text-light); }

/* ── Cards ── */
.card {
background: var(--card-bg); border: 1px solid var(--card-border);
border-radius: 18px; padding: 24px; margin-bottom: 24px;
}
.card-header {
display: flex; justify-content: space-between; align-items: center;
margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.card-title { font-size: 1.1rem; font-weight: 700; }
.card-action {
font-size: .82rem; color: var(--gold); text-decoration: none;
cursor: pointer; transition: opacity .3s; background: none;
border: none; font-family: 'Poppins', sans-serif;
}
.card-action:hover { opacity: .7; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }

/* ── Table ── */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.data-table th {
text-align: left; padding: 12px 16px; font-size: .78rem;
font-weight: 600; text-transform: uppercase; letter-spacing: .8px;
color: var(--text-light); border-bottom: 1px solid rgba(255,255,255,.06);
white-space: nowrap;
}
.data-table td {
padding: 14px 16px; font-size: .88rem;
border-bottom: 1px solid rgba(255,255,255,.04); white-space: nowrap;
}
.data-table tr:hover td { background: rgba(255,215,0,.03); }
.status-badge { padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; white-space: nowrap; }
.status-badge.success { background: rgba(37,211,102,.12); color: var(--green); }
.status-badge.pending { background: rgba(255,215,0,.12); color: var(--gold); }
.status-badge.failed { background: rgba(230,57,70,.12); color: var(--red); }

/* ── Chart ── */
.chart-container { height: 280px; display: flex; align-items: flex-end; gap: 8px; padding: 20px 0; }
.chart-bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.chart-bar {
width: 100%; max-width: 40px; border-radius: 8px 8px 0 0; transition: height .6s ease;
}
.chart-bar.gold { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.chart-bar.green { background: linear-gradient(180deg, var(--green), var(--green-dark)); }
.chart-bar.blue { background: linear-gradient(180deg, var(--blue), #1a5fb4); }
.chart-bar-label { font-size: .7rem; color: var(--text-light); text-align: center; }

/* ── Operator Stats ── */
.operator-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.operator-card {
background: rgba(10,22,40,.5); border: 1px solid rgba(255,255,255,.06);
border-radius: 16px; padding: 24px; text-align: center; transition: all .3s;
}
.operator-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.2); }
.operator-logo {
width: 60px; height: 60px; border-radius: 50%;
margin: 0 auto 14px; display: flex; align-items: center;
justify-content: center; font-size: 1.5rem; color: white; font-weight: 800;
}
.operator-logo.airtel { background: linear-gradient(135deg, #ff0000, #cc0000); }
.operator-logo.moov { background: linear-gradient(135deg, #0066cc, #004499); }
.operator-logo.mpesa { background: linear-gradient(135deg, #4caf50, #388e3c); }
.operator-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.operator-amount { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.operator-transactions { font-size: .78rem; color: var(--text-light); margin-top: 4px; }
.operator-bar {
width: 100%; height: 6px; background: rgba(255,255,255,.06);
border-radius: 6px; margin-top: 14px; overflow: hidden;
}
.operator-bar-fill { height: 100%; border-radius: 6px; transition: width 1s ease; }
.operator-bar-fill.airtel { background: #ff0000; }
.operator-bar-fill.moov { background: #0066cc; }
.operator-bar-fill.mpesa { background: #4caf50; }

/* ── Upload Zone ── */
.upload-zone {
border: 2px dashed rgba(255,215,0,.2); border-radius: 18px;
padding: 50px 30px; text-align: center; cursor: pointer;
transition: all .3s; margin-bottom: 24px;
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--gold); background: rgba(255,215,0,.03); }
.upload-icon { font-size: 3rem; margin-bottom: 16px; }
.upload-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.upload-desc { font-size: .85rem; color: var(--text-light); }
.upload-formats { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.format-tag {
padding: 4px 12px; border-radius: 6px; font-size: .72rem;
font-weight: 600; background: rgba(255,215,0,.08); color: var(--gold);
}

/* ── Security Toggles ── */
.security-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.security-option {
background: rgba(10,22,40,.5); border: 1px solid rgba(255,255,255,.08);
border-radius: 14px; padding: 20px; display: flex;
align-items: center; gap: 16px; transition: all .3s;
}
.security-option:hover { border-color: rgba(255,215,0,.2); }
.security-option-icon {
width: 50px; height: 50px; border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem; flex-shrink: 0;
}
.security-option-info { flex: 1; }
.security-option-title { font-size: .92rem; font-weight: 600; margin-bottom: 4px; }
.security-option-desc { font-size: .78rem; color: var(--text-light); }
.toggle-switch { position: relative; width: 48px; height: 26px; cursor: pointer; flex-shrink: 0; }
.toggle-switch input { display: none; }
.toggle-slider {
position: absolute; inset: 0;
background: rgba(255,255,255,.1); border-radius: 26px; transition: all .3s;
}
.toggle-slider::before {
content: ''; position: absolute; width: 20px; height: 20px;
border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: all .3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ── Withdrawal ── */
.withdrawal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.withdrawal-card {
background: rgba(10,22,40,.5); border: 2px solid rgba(255,255,255,.06);
border-radius: 18px; padding: 28px 24px; text-align: center;
cursor: pointer; transition: all .3s; position: relative;
}
.withdrawal-card:hover { border-color: rgba(255,215,0,.2); }
.withdrawal-card.selected { border-color: var(--gold); background: rgba(255,215,0,.06); }
.withdrawal-card.selected::after {
content: '✓'; position: absolute; top: 12px; right: 12px;
width: 26px; height: 26px; border-radius: 50%;
background: var(--gold); color: var(--dark);
display: flex; align-items: center; justify-content: center;
font-weight: 800; font-size: .8rem;
}
.withdrawal-icon { font-size: 2.2rem; margin-bottom: 14px; }
.withdrawal-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.withdrawal-desc { font-size: .78rem; color: var(--text-light); line-height: 1.5; }
.withdrawal-form-card {
background: rgba(10,22,40,.5); border: 1px solid rgba(255,255,255,.08);
border-radius: 18px; padding: 30px;
}
.withdrawal-amount-display { text-align: center; margin-bottom: 24px; }
.withdrawal-amount-value {
font-family: 'Montserrat', sans-serif; font-size: 3rem;
font-weight: 900; color: var(--gold);
}
.withdrawal-amount-label { font-size: .85rem; color: var(--text-light); }
.payment-methods { display: flex; gap: 12px; margin-bottom: 24px; }
.payment-method {
flex: 1; padding: 16px; border-radius: 14px;
border: 2px solid rgba(255,255,255,.08); text-align: center;
cursor: pointer; transition: all .3s;
}
.payment-method:hover { border-color: rgba(255,215,0,.2); }
.payment-method.selected { border-color: var(--gold); background: rgba(255,215,0,.06); }
.payment-method-icon { font-size: 1.5rem; margin-bottom: 6px; }
.payment-method-name { font-size: .82rem; font-weight: 600; }

/* ── Support ── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.support-card {
background: var(--card-bg); border: 1px solid var(--card-border);
border-radius: 18px; padding: 30px 24px; text-align: center;
cursor: pointer; transition: all .3s;
}
.support-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,.2); }
.support-icon { font-size: 2.5rem; margin-bottom: 16px; }
.support-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.support-desc { font-size: .82rem; color: var(--text-light); line-height: 1.6; }
.support-ticket {
background: rgba(10,22,40,.5); border: 1px solid rgba(255,255,255,.06);
border-radius: 14px; padding: 20px; margin-bottom: 12px;
display: flex; justify-content: space-between; align-items: center;
transition: all .3s; gap: 12px;
}
.support-ticket:hover { border-color: rgba(255,215,0,.15); }
.ticket-info { flex: 1; min-width: 0; }
.ticket-id { font-size: .78rem; color: var(--text-light); margin-bottom: 4px; }
.ticket-subject { font-weight: 600; font-size: .92rem; }
.ticket-date { font-size: .78rem; color: var(--text-light); }

/* ── Settings ── */
.settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.setting-group {
background: rgba(10,22,40,.5); border: 1px solid rgba(255,255,255,.06);
border-radius: 14px; padding: 24px;
}
.setting-group-title {
font-size: .95rem; font-weight: 700; margin-bottom: 20px;
display: flex; align-items: center; gap: 8px;
}
.setting-row {
display: flex; justify-content: space-between; align-items: center;
padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04); gap: 12px;
}
.setting-row:last-child { border-bottom: none; }
.setting-label { font-size: .88rem; }
.setting-desc { font-size: .75rem; color: var(--text-light); }

/* ── Catalog Creation ── */
.catalog-steps {
display: flex; justify-content: center; gap: 40px;
margin-bottom: 36px; padding: 0 20px;
}
.catalog-step { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: all .3s; }
.catalog-step-num {
width: 48px; height: 48px; border-radius: 50%;
background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.1);
display: flex; align-items: center; justify-content: center;
font-weight: 800; font-size: 1.1rem; transition: all .3s;
}
.catalog-step.active .catalog-step-num { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.catalog-step.completed .catalog-step-num { background: var(--green); color: #fff; border-color: var(--green); }
.catalog-step-label { font-size: .78rem; font-weight: 600; color: var(--text-light); text-align: center; }
.catalog-step.active .catalog-step-label { color: var(--gold); }
.catalog-step.completed .catalog-step-label { color: var(--green); }
.step-content { display: none; }
.step-content.active { display: block; animation: fadeUp .4s ease; }
.music-list-item {
display: flex; align-items: center; gap: 16px;
padding: 16px; background: rgba(10,22,40,.5);
border: 1px solid rgba(255,255,255,.06);
border-radius: 12px; margin-bottom: 10px; transition: all .3s;
}
.music-list-item:hover { border-color: rgba(255,215,0,.15); }
.music-thumb {
width: 56px; height: 56px; border-radius: 12px;
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem; flex-shrink: 0;
}
.music-thumb.bg1 { background: linear-gradient(135deg, #1a3a5c, #0d2137); }
.music-thumb.bg2 { background: linear-gradient(135deg, #e63946, #c62828); }
.music-thumb.bg3 { background: linear-gradient(135deg, #3584e4, #1a5fb4); }
.music-thumb.bg4 { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.music-info { flex: 1; min-width: 0; }
.music-name { font-weight: 600; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-meta { font-size: .78rem; color: var(--text-light); }
.music-price { font-weight: 700; color: var(--gold); font-size: .92rem; white-space: nowrap; }
.music-remove {
background: rgba(230,57,70,.1); border: none; color: var(--red);
width: 32px; height: 32px; border-radius: 8px;
cursor: pointer; font-size: .9rem; display: flex;
align-items: center; justify-content: center; transition: all .3s; flex-shrink: 0;
}
.music-remove:hover { background: rgba(230,57,70,.25); }
.add-music-btn {
display: flex; align-items: center; justify-content: center;
gap: 10px; padding: 18px; border: 2px dashed rgba(255,215,0,.2);
border-radius: 12px; background: transparent; color: var(--gold);
font-weight: 600; font-size: .92rem; cursor: pointer;
transition: all .3s; width: 100%; font-family: 'Poppins', sans-serif;
}
.add-music-btn:hover { border-color: var(--gold); background: rgba(255,215,0,.05); }
.step-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 30px; }
.step-nav-btn {
padding: 14px 32px; border-radius: 14px; font-weight: 700;
font-size: .92rem; cursor: pointer; transition: all .3s;
border: none; font-family: 'Poppins', sans-serif;
}
.step-nav-btn.prev {
background: rgba(255,255,255,.05); color: var(--text-light);
border: 1px solid rgba(255,255,255,.1);
}
.step-nav-btn.prev:hover { border-color: var(--gold); color: var(--gold); }
.step-nav-btn.next {
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--dark); box-shadow: 0 8px 30px rgba(255,215,0,.3);
}
.step-nav-btn.next:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,215,0,.4); }
.summary-item {
display: flex; justify-content: space-between;
padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .9rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-label { color: var(--text-light); }
.summary-value { font-weight: 600; }

/* ── Notification Panel ── */
.notif-panel {
position: fixed; top: 0; right: -400px; width: 380px; height: 100vh;
background: var(--dark2); border-left: 1px solid rgba(255,255,255,.08);
z-index: 200; transition: right .4s; display: flex; flex-direction: column;
}
.notif-panel.open { right: 0; }
.notif-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,.5);
z-index: 199; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.notif-overlay.open { opacity: 1; pointer-events: all; }
.notif-header {
padding: 24px; border-bottom: 1px solid rgba(255,255,255,.05);
display: flex; justify-content: space-between; align-items: center;
}
.notif-title { font-size: 1.1rem; font-weight: 700; }
.notif-close {
background: none; border: none; color: var(--text-light);
font-size: 1.3rem; cursor: pointer;
}
.notif-list { flex: 1; overflow-y: auto; padding: 16px; }
.notif-item {
padding: 16px; border-radius: 12px; margin-bottom: 8px;
background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.04);
cursor: pointer; transition: all .3s;
}
.notif-item:hover { background: rgba(255,215,0,.05); }
.notif-item.unread { border-left: 3px solid var(--gold); }
.notif-item-title { font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.notif-item-text { font-size: .8rem; color: var(--text-light); margin-bottom: 6px; }
.notif-item-time { font-size: .72rem; color: rgba(255,255,255,.3); }

/* ── Sidebar Overlay ── */
.sidebar-overlay {
display: none; position: fixed; inset: 0;
background: rgba(0,0,0,.6); z-index: 99;
}

/* ═══════════════════════════════════════
 RESPONSIVE - TABLETTE (1024px)
 ═══════════════════════════════════════ */
@media (max-width: 1024px) {
html { font-size: 14px; }
.sidebar { transform: translateX(-100%); }
.sidebar.open { transform: translateX(0); }
.sidebar-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity .3s; }
.sidebar-overlay.open { opacity: 1; pointer-events: all; }
.main-content { margin-left: 0; }
.hamburger-menu { display: flex; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.grid-2, .grid-2-1 { grid-template-columns: 1fr; }
.security-options { grid-template-columns: 1fr; }
.withdrawal-grid { grid-template-columns: repeat(3, 1fr); }
.operator-stats { grid-template-columns: repeat(3, 1fr); }
.support-grid { grid-template-columns: repeat(2, 1fr); }
.settings-grid { grid-template-columns: 1fr; }
.catalog-steps { gap: 20px; }
.page-content { padding: 24px 20px; }
.header-search input { width: 180px; }
.header-search input:focus { width: 220px; }
}

/* ═══════════════════════════════════════
 RESPONSIVE - MOBILE (768px)
 ═══════════════════════════════════════ */
@media (max-width: 768px) {
html { font-size: 14px; }
.page-content { padding: 20px 16px; }
.top-header { padding: 0 16px; }
.header-search { display: none; }
.stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { padding: 18px; }
.stat-value { font-size: 1.5rem; }
.stat-header { margin-bottom: 12px; }
.stat-icon { width: 40px; height: 40px; font-size: 1.1rem; }
.withdrawal-grid { grid-template-columns: 1fr; }
.operator-stats { grid-template-columns: 1fr; }
.support-grid { grid-template-columns: 1fr; }
.payment-methods { flex-direction: column; }
.form-row { grid-template-columns: 1fr; }
.auth-card { padding: 28px 24px; }
.notif-panel { width: 100%; right: -100%; }
.chart-container { height: 200px; }
.catalog-steps { gap: 12px; flex-wrap: wrap; justify-content: center; }
.catalog-step-label { font-size: .7rem; }
.step-nav { flex-direction: column; }
.step-nav-btn { width: 100%; text-align: center; }
.catalog-step-num { width: 40px; height: 40px; font-size: .95rem; }
.withdrawal-amount-value { font-size: 2.2rem; }
.card { padding: 20px; }
.card-title { font-size: 1rem; }
.summary-item { font-size: .82rem; }
.support-ticket { flex-direction: column; align-items: flex-start; }
.support-ticket .status-badge { margin-top: 8px; }
}

/* ═══════════════════════════════════════
 RESPONSIVE - PETIT MOBILE (480px)
 ═══════════════════════════════════════ */
@media (max-width: 480px) {
html { font-size: 13px; }
.stats-grid { grid-template-columns: 1fr; }
.stat-value { font-size: 1.3rem; }
.sidebar { width: 260px; }
.top-header { padding: 0 12px; }
.header-title { font-size: .95rem; }
.header-btn { width: 38px; height: 38px; }
.page-content { padding: 16px 12px; }
.auth-wrapper { padding: 16px; }
.auth-card { padding: 24px 20px; border-radius: 20px; }
.auth-logo-text { font-size: 2rem; }
.auth-tabs { margin-bottom: 24px; }
.upload-zone { padding: 30px 20px; }
.upload-icon { font-size: 2.5rem; }
.upload-title { font-size: .95rem; }
.catalog-steps { gap: 8px; }
.catalog-step-label { font-size: .65rem; }
.withdrawal-form-card { padding: 20px; }
.card-header { flex-direction: column; align-items: flex-start; }
.step-nav-btn { padding: 12px 24px; font-size: .85rem; }
}

/* ═══════════════════════════════════════
 RESPONSIVE - 4K (2560px)
 ═══════════════════════════════════════ */
@media (min-width: 2560px) {
html { font-size: 20px; }
:root { --sidebar-width: 320px; }
.page-content { max-width: 2400px; margin: 0 auto; padding: 40px; }
.stats-grid { gap: 28px; }
.stat-card { padding: 32px; border-radius: 22px; }
.stat-value { font-size: 2.5rem; }
.stat-icon { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 16px; }
.card { padding: 32px; border-radius: 22px; }
.card-title { font-size: 1.3rem; }
.operator-card { padding: 32px; }
.operator-logo { width: 72px; height: 72px; font-size: 1.8rem; }
.operator-amount { font-size: 1.8rem; }
.chart-container { height: 350px; }
.catalog-steps { gap: 60px; }
.catalog-step-num { width: 56px; height: 56px; font-size: 1.3rem; }
.upload-zone { padding: 60px 40px; }
.withdrawal-form-card { padding: 40px; }
.withdrawal-amount-value { font-size: 3.5rem; }
.support-card { padding: 40px 32px; }
.support-icon { font-size: 3rem; }
.setting-group { padding: 32px; }
.music-list-item { padding: 20px; }
.music-thumb { width: 64px; height: 64px; font-size: 1.8rem; }
.data-table th { padding: 14px 20px; font-size: .85rem; }
.data-table td { padding: 16px 20px; font-size: .95rem; }
.header-search input { width: 300px; }
.header-search input:focus { width: 380px; }
}

/* ═══════════════════════════════════════
 RESPONSIVE - 8K (3840px)
 ═══════════════════════════════════════ */
@media (min-width: 3840px) {
html { font-size: 28px; }
:root { --sidebar-width: 380px; }
.page-content { max-width: 3400px; margin: 0 auto; padding: 50px; }
.stats-grid { gap: 36px; }
.stat-card { padding: 40px; border-radius: 28px; }
.stat-value { font-size: 3rem; }
.stat-icon { width: 68px; height: 68px; font-size: 1.8rem; border-radius: 18px; }
.card { padding: 40px; border-radius: 28px; }
.card-title { font-size: 1.5rem; }
.operator-card { padding: 40px; }
.operator-logo { width: 84px; height: 84px; font-size: 2.2rem; }
.operator-amount { font-size: 2.2rem; }
.chart-container { height: 420px; }
.catalog-steps { gap: 80px; }
.catalog-step-num { width: 64px; height: 64px; font-size: 1.5rem; }
.upload-zone { padding: 80px 50px; }
.withdrawal-form-card { padding: 50px; }
.withdrawal-amount-value { font-size: 4rem; }
.support-card { padding: 50px 40px; }
.support-icon { font-size: 3.5rem; }
.setting-group { padding: 40px; }
.music-list-item { padding: 24px; }
.music-thumb { width: 72px; height: 72px; font-size: 2rem; }
.data-table th { padding: 16px 24px; font-size: .9rem; }
.data-table td { padding: 18px 24px; font-size: 1rem; }
.header-search input { width: 400px; }
.header-search input:focus { width: 500px; }
.auth-card { padding: 48px 44px; max-width: 560px; }
.auth-logo-text { font-size: 3.2rem; }
.notif-panel { width: 480px; }
}













/* ===== CTA WHATSAPP ===== */
.cta-section {
padding: 80px 20px;
position: relative;
overflow: hidden;
}

.cta-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37,211,102,0.15) 0%, rgba(10,22,40,0.9) 50%, rgba(255,215,0,0.1) 100%);
}

.cta-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.cta-title {
font-family: 'Montserrat', sans-serif;
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 16px;
}

.cta-desc {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.cta-phone-box {
display: inline-flex;
align-items: center;
gap: 16px;
background: linear-gradient(135deg, #25D366, #128C7E);
padding: 20px 40px;
border-radius: 60px;
box-shadow: 0 20px 60px rgba(37,211,102,0.3);
transition: transform 0.3s ease;
text-decoration: none;
color: white;
}

.cta-phone-box:hover { transform: scale(1.05); }

.cta-phone-box svg { width: 30px; height: 30px; }

.cta-phone-text {
font-size: 0.85rem;
opacity: 0.9;
}

.cta-phone-num {
font-size: 1.5rem;
font-weight: 800;
}
