* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #071018;
    color: #e8f7ff;
    line-height: 1.4;
}

button, input, select, textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
}

.hidden {
    display: none !important;
}

/* ==================== CUSTOM MODAL ==================== */
.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.modal-box {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 28px 22px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.modal-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e8f7ff;
}

.modal-box p {
    font-size: 14px;
    color: #a8d4e6;
    margin-bottom: 18px;
    line-height: 1.5;
}

.modal-extra {
    background: #0d1f2d;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
    text-align: left;
    font-size: 13px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-buttons button {
    flex: 1;
    padding: 13px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.modal-btn-primary {
    background: linear-gradient(90deg, #00E5FF, #00B8D4);
    color: white;
}

.modal-btn-secondary {
    background: #e8e2f0;
    color: #4a4255;
}

.modal-btn-danger {
    background: #c0392b;
    color: white;
}

/* ==================== AUTH ==================== */
.auth-page {
    min-height: 100vh;
    padding: 45px 18px 40px;
    background: linear-gradient(145deg, #0d1f2d, #ebe5f5);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.logo-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: white;
    box-shadow: 0 12px 28px rgba(90, 40, 150, 0.15);
    overflow: hidden;
}

.auth-logo h1 {
    font-size: 25px;
    font-weight: 700;
}

.auth-logo p {
    margin-top: 8px;
    color: #6b6275;
    font-size: 14px;
}

.auth-tabs {
    display: flex;
    background: #e5dff1;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 18px;
}

.tab {
    flex: 1;
    padding: 12px;
    border-radius: 26px;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #a8d4e6;
}

.tab.active {
    background: linear-gradient(90deg, #6229ad, #00B8D4);
    color: white;
}

.auth-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 22px;
    border-radius: 26px;
    box-shadow: 0 12px 35px rgba(80, 40, 130, 0.08);
}

label {
    display: block;
    margin: 13px 0 6px;
    font-size: 13px;
    font-weight: 500;
    color: #4a4255;
}

input, select, textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 15px;
    border: 1.5px solid #d9d0e5;
    background: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #8b4fd1;
}

.password-box {
    position: relative;
}

.password-box input {
    padding-right: 46px;
}

.password-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a7088;
    font-size: 16px;
}

.main-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border-radius: 26px;
    background: linear-gradient(90deg, #00E5FF, #00B8D4);
    color: white;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(100, 40, 180, 0.25);
}

.secondary-btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-radius: 26px;
    background: #e8e2f0;
    font-size: 14px;
    font-weight: 600;
}

/* Country + Phone */
.country-select-wrap {
    position: relative;
}

.country-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b2db7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.phone-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dial-code {
    background: #efe8f8;
    color: #00E5FF;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 12px;
    border-radius: 15px;
    min-width: 70px;
    text-align: center;
    border: 1.5px solid #d9d0e5;
}

.phone-input-row input {
    flex: 1;
}

/* ==================== USER APP ==================== */
.app {
    min-height: 100vh;
    padding-bottom: 85px;
}

.modern-header {
    height: 64px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #6730b4, #FFD700);
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    border-radius: 0 0 20px 20px;
}

.header-left {
    width: 42px;
}

.robot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-header h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.notification-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 17px;
    position: relative;
}

.notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e53935;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Notifications Panel */
.notifications-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: white;
    z-index: 300;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.25s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.notif-header {
    padding: 18px 16px;
    background: linear-gradient(90deg, #6730b4, #FFD700);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notif-header h3 {
    font-size: 17px;
}

.notif-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.notif-actions button {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.notif-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.notif-item {
    background: #0d1f2d;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
}

.notif-item.unread {
    background: #efe8f8;
    border-left-color: #00E5FF;
}

.notif-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.notif-item p {
    font-size: 13px;
    color: #a8d4e6;
}

.notif-item small {
    font-size: 11px;
    color: #8a8098;
    display: block;
    margin-top: 6px;
}

.page {
    padding: 16px;
}

.section-title {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-machine {
    height: 200px;
    border-radius: 24px;
    background: linear-gradient(145deg, #1a1330, #2a1f4a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.robot-big {
    display: flex;
    justify-content: center;
}

.machine-placeholder p {
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 14px;
    color: white;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.whatsapp-btn {
    flex: 1;
    padding: 14px;
    border-radius: 22px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #16a85b, #22c86a);
}

/* BALANCE CARDS */
.balance-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    margin-bottom: 12px;
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.balance-card span {
    font-size: 12px;
    color: #5d5568;
}

.balance-card h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 0.3px;
    color: #FFD700;
}

.balance-card small {
    font-size: 11px;
    color: #6e6778;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.gold-icon { background: linear-gradient(135deg, #ffd54f, #ffb300); }
.blue-icon { background: linear-gradient(135deg, #64b5f6, #1e88e5); }
.green-icon { background: linear-gradient(135deg, #81c784, #43a047); }

.purple-card { border-left: 5px solid #FFD700; }
.green-card  { border-left: 5px solid #43a047; }
.blue-card   { border-left: 5px solid #1e88e5; }

/* MACHINES */.machine-card {
    background: white;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(70, 40, 100, 0.06);
}

.machine-card h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.machine-price {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 16px;
    background: linear-gradient(90deg, #ffb300, #ffd24f);
    font-weight: 700;
    font-size: 13px;
}

.machine-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0;
}

.machine-detail {
    background: #f4f0f9;
    padding: 10px;
    border-radius: 12px;
}

.machine-detail small {
    font-size: 11px;
    color: #6b6375;
}

.machine-detail strong {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}

.countdown-box {
    background: #efe8f8;
    border-radius: 12px;
    padding: 10px;
    margin: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #00E5FF;
    font-weight: 600;
}

.countdown-box.ready {
    background: #e8f5e9;
    color: #1a7a3c;
}

/* RECHARGE */
.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.amount-grid button {
    padding: 14px 8px;
    border-radius: 16px;
    background: white;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-options button {
    padding: 16px 8px;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.mtn { background: linear-gradient(90deg, #e0a800, #ffcc00); }
.airtel { background: linear-gradient(90deg, #c60000, #e60000); }

.payment-card {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(120deg, #6430ad, #a04fd4);
    color: white;
}

.payment-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.payment-card p {
    margin-top: 6px;
    font-size: 13px;
}

.copy-number-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

/* TEAM & PROFILE */
.referral-box {
    background: white;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.ref-code {
    font-size: 22px;
    font-weight: 800;
    color: #6b2db7;
    letter-spacing: 2px;
    margin: 10px 0;
}

.copy-btn {
    background: #6b2db7;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.team-box {
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.profile-info div {
    background: white;
    padding: 14px;
    border-radius: 14px;
}

.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.profile-option {
    min-height: 100px;
    padding: 16px;
    border-radius: 18px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.profile-option i {
    color: #6930b5;
    font-size: 20px;
}

.logout-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    border-radius: 20px;
    background: #c0392b;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.back-btn {
    background: transparent;
    color: #6b2db7;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-card, .history-card {
    background: white;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.status-pending { color: #8a6200; }
.status-approved { color: #1a7a3c; }
.status-rejected { color: #c0392b; }

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-top: 1px solid #e8e2f0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.nav-item {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #7a7088;
    font-size: 11px;
    padding: 6px 10px;
}

.nav-item i {
    font-size: 20px;
}

.active-nav {
    color: #6b2db7;
}

/* ==================== ADMIN ==================== */
.admin-app {
    display: flex;
    min-height: 100vh;
    background: #f0eef5;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1330, #2a1f4a);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00B8D4, #6229ad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.admin-brand h2 {
    font-size: 20px;
    font-weight: 800;
}

.admin-brand small {
    font-size: 12px;
    opacity: 0.7;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-avatar {
    width: 42px;
    height: 42px;
    background: rgba(139, 79, 209, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.admin-navigation {
    flex: 1;
    padding: 16px 12px;
}

.admin-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 14px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: left;
    transition: all 0.2s;
}

.admin-menu-item i {
    width: 22px;
    text-align: center;
    font-size: 17px;
}

.admin-menu-item.active,
.admin-menu-item:hover {
    background: rgba(139, 79, 209, 0.3);
    color: white;
}

.admin-sidebar-footer {
    padding: 16px 12px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(192, 57, 43, 0.2);
    color: #ff8a80;
    font-size: 15px;
    font-weight: 600;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

.admin-header {
    height: 64px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    border-bottom: 1px solid #e8e2f0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-mobile-menu-btn {
    display: none;
    background: transparent;
    font-size: 22px;
    color: #6b2db7;
}

.admin-header h2 {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 20px;
}

.admin-stat-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.admin-stat-card span {
    font-size: 12px;
    color: #777;
}

.admin-stat-card h3 {
    font-size: 22px;
    margin-top: 6px;
    color: #6b2db7;
}

.admin-content-card {
    background: white;
    margin: 20px;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.admin-content-card h3 {
    margin-bottom: 16px;
    font-size: 17px;
}

/* Mobile Admin */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 85%;
        max-width: 300px;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-mobile-menu-btn {
        display: block;
    }

    .admin-menu-item {
        padding: 18px 16px;
        font-size: 16px;
    }

    .notifications-panel {
        max-width: 100%;
    }
}


/* ===== VANGUARD PREMIUM THEME OVERRIDES ===== */
body {
    background: linear-gradient(180deg, #050d14 0%, #071018 40%, #0a1520 100%);
    color: #e8f7ff;
    min-height: 100vh;
}

.modern-header {
    background: linear-gradient(90deg, #06202b, #0a3040) !important;
    border-bottom: 1px solid rgba(0, 229, 255, 0.25);
}

.modern-header h2 {
    color: #00E5FF !important;
    font-weight: 700;
}

.balance-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    color: #e8f7ff;
}

.balance-card span {
    color: #7ec8e3 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-card h2 {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #FFD700 !important;
    line-height: 1.2;
}

.balance-card small {
    color: #7ec8e3 !important;
}

.purple-card { border-left: 5px solid #FFD700 !important; }
.green-card { border-left: 5px solid #00E5FF !important; }
.blue-card { border-left: 5px solid #00B8D4 !important; }

.main-btn {
    background: linear-gradient(90deg, #00E5FF, #00B8D4) !important;
    color: #031018 !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

.main-btn:active {
    transform: scale(0.98);
}

.secondary-btn {
    background: rgba(0, 229, 255, 0.12) !important;
    color: #00E5FF !important;
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.machine-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0, 229, 255, 0.18);
    color: #e8f7ff;
}

.machine-card h2 {
    color: #00E5FF !important;
}

.machine-price {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #FFD700 !important;
}

.machine-detail strong {
    font-size: 16px;
    color: #FFD700;
}

/* Professional Modals */
.modal-box {
    background: linear-gradient(160deg, #0d2130, #0a1824) !important;
    border: 1px solid rgba(0, 229, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 229, 255, 0.12);
    color: #e8f7ff;
}

.modal-box h3 {
    color: #00E5FF !important;
    font-size: 20px !important;
    font-weight: 700;
}

.modal-box p {
    color: #b8dcec !important;
    font-size: 15px !important;
    white-space: pre-line;
}

.modal-extra {
    background: rgba(0, 229, 255, 0.08) !important;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 14px;
    color: #e8f7ff;
}

.modal-btn-primary {
    background: linear-gradient(90deg, #00E5FF, #00B8D4) !important;
    color: #031018 !important;
    font-weight: 700;
}

.modal-btn-secondary {
    background: rgba(255,255,255,0.08) !important;
    color: #a8d4e6 !important;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Auth page */
.auth-page, #authPage {
    background: linear-gradient(180deg, #050d14, #0a1520) !important;
}

.auth-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #e8f7ff;
}

.auth-card input, .auth-card select {
    background: #071018 !important;
    border: 1px solid rgba(0, 229, 255, 0.25) !important;
    color: #e8f7ff !important;
}

.tab.active {
    background: linear-gradient(90deg, #00E5FF, #00B8D4) !important;
    color: #031018 !important;
}

/* Guide card on home */
.info-guide-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28);
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 18px;
    padding: 18px 16px;
    margin: 16px 0 24px;
}

.info-guide-card h3 {
    color: #00E5FF;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}

.guide-step {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.guide-num {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E5FF, #00B8D4);
    color: #031018;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-step strong {
    color: #FFD700;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.guide-step p {
    color: #a8d4e6;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

/* Money amounts elsewhere */
.history-card strong,
.admin-card strong,
#teamCommission,
.machine-detail strong {
    font-weight: 700;
}

.bottom-nav {
    background: #0a1a28 !important;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.bottom-nav button.active {
    color: #00E5FF !important;
}

.whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E) !important;
    color: white !important;
    font-weight: 700;
}

.section-title {
    color: #00E5FF !important;
}

.referral-box {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.countdown-box {
    color: #00E5FF;
    font-weight: 600;
}

.empty-card {
    background: rgba(0, 229, 255, 0.06);
    border: 1px dashed rgba(0, 229, 255, 0.25);
    color: #7ec8e3;
}



/* ===== MONEY TEXT SIZE ONLY (values unchanged) ===== */
.balance-card h2,
.balance-card h2 span,
.machine-price,
.machine-detail strong,
#teamCommission,
.history-card strong,
.admin-stat-card h3 {
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.2px;
}

.machine-detail strong {
    font-size: 20px !important;
}

.machine-price {
    font-size: 32px !important;
    margin: 8px 0 12px !important;
}

/* WhatsApp icon vibration - icon only, not whole button */
.whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    overflow: visible;
}
.whatsapp-btn i.fa-whatsapp {
    display: inline-block;
    font-size: 22px;
    transform-origin: center center;
    animation: waShake 2.4s ease-in-out infinite;
}
@keyframes waShake {
    0%, 70%, 100% { transform: translateX(0) rotate(0deg); }
    72% { transform: translateX(-3px) rotate(-8deg); }
    76% { transform: translateX(3px) rotate(8deg); }
    80% { transform: translateX(-3px) rotate(-6deg); }
    84% { transform: translateX(3px) rotate(6deg); }
    88% { transform: translateX(-2px) rotate(-3deg); }
    92% { transform: translateX(2px) rotate(3deg); }
    96% { transform: translateX(0) rotate(0deg); }
}

/* Machine visual on cards */
.machine-visual {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 14px;
    background: radial-gradient(ellipse at center, rgba(0,229,255,0.12) 0%, transparent 70%);
}
.machine-visual svg {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 0 12px rgba(0,229,255,0.35));
}

/* Logo */
.vanguard-logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}
.auth-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}
.auth-logo-wrap .vanguard-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
}

.modern-header {
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.modern-header .vanguard-logo {
    width: 36px;
    height: 36px;
}
.modern-header h2 {
    flex: 1;
    font-size: 15px !important;
}



/* ===== Small WhatsApp icon only ===== */
.wa-icon-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    border-radius: 50% !important;
    background: #25D366 !important;
    border: none !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    margin: 12px auto !important;
    cursor: pointer;
}
.wa-icon-btn i.fa-whatsapp {
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1;
    animation: waNotify 2.5s ease-in-out infinite;
    transform-origin: center center;
    display: inline-block;
}
@keyframes waNotify {
    0%, 20%, 100% { transform: translateX(0) rotate(0deg); }
    3% { transform: translateX(-3px) rotate(-10deg); }
    6% { transform: translateX(3px) rotate(10deg); }
    9% { transform: translateX(-3px) rotate(-8deg); }
    12% { transform: translateX(3px) rotate(8deg); }
    15% { transform: translateX(-2px) rotate(-4deg); }
    18% { transform: translateX(0) rotate(0deg); }
}
/* Hide any leftover large green WA button styles affecting layout */
.contact-buttons {
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
}

/* New logo sizing */
.vanguard-logo {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
}
.auth-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.auth-logo-wrap .vanguard-logo {
    width: 80px;
    height: 80px;
}
.modern-header .vanguard-logo {
    width: 38px;
    height: 38px;
}

/* ===== Welcome popup ===== */
.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.welcome-popup.hidden { display: none !important; }
.welcome-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(3px);
}
.welcome-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: #0d1520;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(124, 77, 255, 0.35);
    animation: welcomeIn 0.3s ease;
}
@keyframes welcomeIn {
    from { transform: translateY(20px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.welcome-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.welcome-header {
    background: linear-gradient(135deg, #6a1b9a 0%, #7C4DFF 45%, #00B8D4 100%);
    padding: 28px 20px 22px;
    text-align: center;
    color: #fff;
}
.welcome-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.welcome-logo .vanguard-logo {
    width: 64px;
    height: 64px;
}
.welcome-header h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff !important;
    line-height: 1.3;
}
.welcome-sub {
    margin: 0;
    font-size: 13px;
    opacity: 0.95;
    color: #e8f7ff !important;
}
.welcome-rows {
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.welcome-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #141f2e;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(0,229,255,0.12);
}
.welcome-row strong {
    display: block;
    font-size: 12px;
    color: #9ec9dc;
    font-weight: 600;
}
.welcome-row span:last-child {
    font-size: 16px;
    font-weight: 800;
    color: #FFD700;
}
.welcome-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.welcome-ico.recharge { background: linear-gradient(135deg, #00E5FF, #0091EA); }
.welcome-ico.withdraw { background: linear-gradient(135deg, #FF7043, #E64A19); }
.welcome-ico.bonus { background: linear-gradient(135deg, #FFD700, #FF8F00); color: #1a1200; }
.welcome-social {
    display: flex;
    gap: 10px;
    padding: 8px 16px 12px;
}
.welcome-tg, .welcome-wa {
    flex: 1;
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.welcome-tg { background: #229ED9; }
.welcome-wa { background: #25D366; }
.welcome-start {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 18px;
    border: none;
    border-radius: 14px;
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #7C4DFF, #00B8D4);
    box-shadow: 0 8px 22px rgba(124, 77, 255, 0.35);
}


/* 3-step deposit flow */
.deposit-steps-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.dep-step {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 4px;
    border-radius: 10px;
    background: rgba(0,229,255,0.08);
    color: #7ec8e3;
    border: 1px solid rgba(0,229,255,0.12);
}
.dep-step.active {
    background: linear-gradient(90deg, #7C4DFF, #00B8D4);
    color: #fff;
    border-color: transparent;
}
.dep-panel-title {
    color: #00E5FF;
    font-size: 17px;
    margin-bottom: 8px;
}
.dep-hint {
    color: #a8d4e6;
    font-size: 13px;
    margin-bottom: 12px;
}
.dep-howto {
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 14px;
    padding: 14px;
    margin: 14px 0;
    font-size: 13px;
    color: #b8dcec;
}
.dep-howto h4 {
    color: #FFD700;
    margin-bottom: 8px;
}
.dep-howto ol {
    padding-left: 18px;
    line-height: 1.55;
}
.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.amount-grid button {
    padding: 14px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,229,255,0.25);
    background: #0d2130;
    color: #FFD700;
    font-weight: 800;
    font-size: 14px;
}
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.payment-options button {
    padding: 16px 10px;
    border-radius: 14px;
    font-weight: 700;
    color: #fff;
}
.payment-options .mtn { background: linear-gradient(135deg, #ffcc00, #ff9900); color: #1a1200; }
.payment-options .airtel { background: linear-gradient(135deg, #e60000, #b00000); }
.payment-card {
    background: #0d2130;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 14px;
    padding: 14px;
    color: #e8f7ff;
}
.copy-number-btn {
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    border: none;
    background: rgba(0,229,255,0.2);
    color: #00E5FF;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}



/* ===== Clean organized cards (Team / History / Notifications) ===== */
.info-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28);
    border: 1px solid rgba(0, 229, 255, 0.16);
    border-radius: 16px;
    padding: 16px 16px 14px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.team-card .info-card-name,
.info-card-name {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 8px;
    line-height: 1.3;
    word-break: break-word;
}

.info-card-phone {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e8f7ff;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.info-card-meta {
    display: block;
    font-size: 12px;
    color: #8eb6c9;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.info-amount {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 12px;
    color: #8eb6c9;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 90px;
}

.info-value {
    font-size: 13px;
    color: #e8f7ff;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.info-net {
    color: #00E5FF !important;
    font-weight: 800;
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pill.status-approved,
.status-approved {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
}

.status-pill.status-pending,
.status-pending {
    background: rgba(241, 196, 15, 0.18);
    color: #f1c40f;
}

.status-pill.status-rejected,
.status-rejected {
    background: rgba(231, 76, 60, 0.18);
    color: #e74c3c;
}

/* Notifications panel items */
.notif-item.info-card {
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.notif-item.info-card.unread {
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15);
}
.notif-title {
    font-size: 15px;
    font-weight: 800;
    color: #00E5FF;
    margin-bottom: 6px;
    line-height: 1.3;
}
.notif-message {
    font-size: 13px;
    color: #cfe7f2;
    line-height: 1.45;
    margin-bottom: 8px;
    white-space: pre-wrap;
}
.notif-date {
    font-size: 11px;
    color: #7ea9bd;
}

/* Legacy history-card cleanup if any remain */
.history-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(145deg, #0d2130, #0a1a28);
    border: 1px solid rgba(0, 229, 255, 0.16);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}
.history-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #FFD700;
}
.history-card span,
.history-card small,
.history-card em {
    display: block;
    line-height: 1.4;
}

/* Team stats spacing */
#teamPage .balance-card,
#teamPage .info-card {
    margin-bottom: 12px;
}

#referralList,
#historyList,
#notificationsList {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* General mobile text safety */
.page {
    padding-left: 14px;
    padding-right: 14px;
}
.page h2.section-title {
    margin-bottom: 14px;
    line-height: 1.3;
}



/* =========================================================
   FULL VISIBILITY FIX — dark theme, readable on mobile
   ========================================================= */
body, #app, .page {
    background: #071018 !important;
    color: #e8f7ff !important;
}

/* Kill leftover white cards that make text invisible */
.team-box,
.team-grid .team-box,
.referral-box,
.balance-card,
.machine-card,
.history-card,
.info-card,
.auth-card,
.payment-card,
.empty-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0, 229, 255, 0.2) !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

.team-box {
    border-radius: 16px !important;
    padding: 16px 14px !important;
    text-align: center !important;
    min-height: 90px;
}

.team-box span {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #8eb6c9 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.team-box h2 {
    display: block !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #FFD700 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.referral-box {
    border-radius: 18px !important;
    padding: 20px 16px !important;
    text-align: center !important;
}

.referral-box h3 {
    color: #a8d4e6 !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.ref-code {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #b388ff !important;
    letter-spacing: 2px !important;
    margin: 8px 0 14px !important;
}

.copy-btn {
    background: linear-gradient(90deg, #7C4DFF, #9B5CFF) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 22px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
}

.ref-info {
    margin-top: 12px !important;
    color: #a8d4e6 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.ref-info b {
    color: #FFD700 !important;
}

.section-title {
    color: #00E5FF !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 14px !important;
}

.balance-card span {
    color: #8eb6c9 !important;
}

.balance-card h2,
.balance-card h2 span {
    color: #FFD700 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

.machine-card h2 {
    color: #00E5FF !important;
}

.machine-price {
    color: #031018 !important;
    background: linear-gradient(90deg, #FFD700, #FFC107) !important;
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.machine-detail small {
    color: #8eb6c9 !important;
    display: block !important;
}

.machine-detail strong {
    color: #FFD700 !important;
    font-size: 18px !important;
}

.empty-card {
    text-align: center !important;
    color: #8eb6c9 !important;
    padding: 18px !important;
    border-style: dashed !important;
}

/* Inputs readable on dark */
input, select, textarea {
    background: #0a1520 !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0, 229, 255, 0.25) !important;
}

label {
    color: #a8d4e6 !important;
}

/* Bottom nav readable */
.bottom-nav {
    background: #0a1a28 !important;
    border-top: 1px solid rgba(0, 229, 255, 0.2) !important;
}
.bottom-nav button {
    color: #7ea9bd !important;
}
.bottom-nav button.active {
    color: #b388ff !important;
}

/* Header */
.modern-header {
    background: linear-gradient(90deg, #06202b, #0a3040) !important;
}
.modern-header h2 {
    color: #00E5FF !important;
}

/* Profile options */
.profile-option {
    background: #0d2130 !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0, 229, 255, 0.15) !important;
}

/* Notifications panel */
.notifications-panel, #notificationsPanel {
    background: #0d1520 !important;
    color: #e8f7ff !important;
}


/* Machine cards — premium visible layout */
.machine-card {
    padding: 18px 16px 16px !important;
    margin-bottom: 16px !important;
    border-radius: 20px !important;
}
.machine-details {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 12px 0 16px !important;
}
.machine-detail {
    background: rgba(255,255,255,0.06) !important;
    border-radius: 12px !important;
    padding: 12px !important;
}
.machine-detail small {
    font-size: 11px !important;
    margin-bottom: 4px !important;
}
.machine-visual {
    margin-bottom: 8px !important;
}

/* Guide card readable */
.info-guide-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0, 229, 255, 0.22) !important;
}
.info-guide-card h3,
.guide-step strong {
    color: #FFD700 !important;
}
.guide-step p {
    color: #a8d4e6 !important;
}


/* =========================================================
   AUTH + NOTIFICATIONS + PROFILE — full visibility pass
   ========================================================= */

/* Login / Register */
.auth-page, #authPage {
    background: linear-gradient(180deg, #050d14 0%, #0a1520 100%) !important;
    color: #e8f7ff !important;
    min-height: 100vh !important;
}
.auth-logo-wrap h1,
.auth-logo h1 {
    color: #00E5FF !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}
.auth-logo p, .auth-logo-wrap + p, #authPage > .auth-logo p {
    color: #a8d4e6 !important;
}
.auth-tabs {
    background: #122333 !important;
    border: 1px solid rgba(0,229,255,0.15) !important;
}
.tab {
    color: #8eb6c9 !important;
}
.tab.active {
    background: linear-gradient(90deg, #7C4DFF, #00B8D4) !important;
    color: #fff !important;
}
.auth-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0,229,255,0.2) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35) !important;
    color: #e8f7ff !important;
}
.auth-card label {
    color: #a8d4e6 !important;
}
.auth-card input,
.auth-card select,
.auth-card textarea,
#authPage input,
#authPage select {
    background: #071018 !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0,229,255,0.28) !important;
}
.auth-card input::placeholder {
    color: #6f94a8 !important;
}
.phone-row, .password-wrap {
    background: transparent !important;
}
.dial-code {
    color: #00E5FF !important;
    font-weight: 700 !important;
}

/* Notifications panel */
.notifications-panel, #notificationsPanel {
    background: #0a1520 !important;
    color: #e8f7ff !important;
    border-left: 1px solid rgba(0,229,255,0.2) !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.45) !important;
}
.notif-header {
    background: linear-gradient(90deg, #5b2c91, #00B8D4) !important;
    color: #fff !important;
}
.notif-header h3 {
    color: #fff !important;
    font-weight: 800 !important;
}
.notif-actions button {
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
}
.notif-list {
    background: #0a1520 !important;
}
.notif-item,
.notif-item.info-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0,229,255,0.18) !important;
    border-left: 4px solid #FFD700 !important;
    color: #e8f7ff !important;
}
.notif-item.unread,
.notif-item.info-card.unread {
    background: linear-gradient(145deg, #132a3d, #0f2233) !important;
    border-left-color: #00E5FF !important;
}
.notif-title, .notif-item h4 {
    color: #00E5FF !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    margin-bottom: 6px !important;
}
.notif-message, .notif-item p {
    color: #cfe7f2 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}
.notif-date, .notif-item small {
    color: #7ea9bd !important;
    font-size: 11px !important;
}

/* Profile */
.profile-info,
.profile-info div {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    color: #e8f7ff !important;
    border-radius: 14px;
}
.profile-info small {
    color: #8eb6c9 !important;
    display: block !important;
    margin-bottom: 4px !important;
}
.profile-info strong {
    color: #FFD700 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}
.profile-option {
    background: #0d2130 !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0,229,255,0.15) !important;
}
.profile-option span {
    color: #e8f7ff !important;
}
.logout-btn {
    background: rgba(231, 76, 60, 0.15) !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(231, 76, 60, 0.35) !important;
}

/* Modal readability */
.modal-box {
    background: linear-gradient(160deg, #0d2130, #0a1824) !important;
    color: #e8f7ff !important;
}
.modal-box h3 { color: #00E5FF !important; }
.modal-box p { color: #b8dcec !important; }


/* =========================================================
   ADMIN DASHBOARD — full visibility fix
   ========================================================= */
.admin-app, #adminPage, .admin-main {
    background: #0b1220 !important;
    color: #e8f7ff !important;
}
.admin-header {
    background: #101a2b !important;
    border-bottom: 1px solid rgba(0,229,255,0.15) !important;
    color: #e8f7ff !important;
}
.admin-header h2 {
    color: #00E5FF !important;
    font-weight: 800 !important;
}
.admin-content-card {
    background: #101a2b !important;
    border: 1px solid rgba(0,229,255,0.15) !important;
    border-radius: 16px !important;
    color: #e8f7ff !important;
    padding: 16px !important;
}
.admin-content-card h3 {
    color: #00E5FF !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}
.admin-stat-card {
    background: linear-gradient(145deg, #0d2130, #0a1a28) !important;
    border: 1px solid rgba(0,229,255,0.18) !important;
    color: #e8f7ff !important;
    border-radius: 14px !important;
}
.admin-stat-card span {
    color: #8eb6c9 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}
.admin-stat-card h3 {
    color: #FFD700 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

/* User cards in admin */
.admin-user-card, .admin-card {
    background: linear-gradient(145deg, #122033, #0d1a28) !important;
    border: 1px solid rgba(0,229,255,0.2) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
    color: #e8f7ff !important;
}
.auc-name {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #00E5FF !important;
    margin-bottom: 10px !important;
}
.auc-line {
    display: flex !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    font-size: 13px !important;
}
.auc-line span {
    color: #8eb6c9 !important;
    font-weight: 600 !important;
}
.auc-line b {
    color: #FFD700 !important;
    font-weight: 800 !important;
    text-align: right !important;
}
.auc-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
}
.btn-suspend, .btn-activate, .btn-reset,
.admin-user-card button, .admin-card button {
    padding: 10px 14px !important;
    border-radius: 10px !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    cursor: pointer !important;
}
.btn-suspend { background: #c0392b !important; }
.btn-activate { background: #1a7a3c !important; }
.btn-reset { background: #6c3fc5 !important; }

/* Admin lists / deposits / withdrawals text */
#adminUsersList, #adminDepositsList, #adminWithdrawalsList,
#adminMachinesList, #adminGiftCodesList, #adminReferralsList,
#adminAnnouncementsList, #adminSettingsContent {
    color: #e8f7ff !important;
}
#adminUsersList p, #adminDepositsList p, #adminWithdrawalsList p,
.admin-card p, .admin-card strong {
    color: #e8f7ff !important;
}
.admin-card strong {
    color: #00E5FF !important;
    font-size: 16px !important;
    display: block !important;
    margin-bottom: 6px !important;
}

/* Sidebar */
.admin-sidebar {
    background: #0a1422 !important;
    color: #e8f7ff !important;
}
.admin-menu-item {
    color: #a8d4e6 !important;
}
.admin-menu-item.active, .admin-menu-item:hover {
    background: rgba(0,229,255,0.12) !important;
    color: #00E5FF !important;
}
.admin-brand h2 {
    color: #00E5FF !important;
}

/* Inputs in admin settings */
.admin-content-card input,
.admin-content-card select,
.admin-content-card textarea {
    background: #071018 !important;
    color: #e8f7ff !important;
    border: 1px solid rgba(0,229,255,0.25) !important;
}
