body {
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: #e5e7eb;
    background-color: #020617;
}

/* ==========================
   Global tipografi ve renk
   ========================== */
h1, h2, h3, h4, h5, h6 {
    color: #f9fafb !important;
    font-weight: 600;
    letter-spacing: .01em;
}

p,
span,
li,
label,
.card-body,
.card-header,
.navbar,
.nav-link,
.btn,
.form-control,
.form-select,
.app-footer {
    color: #e5e7eb !important;
}

a {
    color: #38bdf8;
    text-decoration: none;
    transition: color .15s ease, opacity .15s ease;
}

a:hover {
    color: #7dd3fc;
    opacity: .95;
}

.app-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
        #020617;
    backdrop-filter: blur(18px);
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-main {
    flex: 1;
    padding-top: 100px !important; /* Header height offset */
    padding-bottom: 4rem;
}

.app-container {
    max-width: 1200px;
}

.page-header {
    margin-bottom: 1.75rem;
}

.page-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.page-subtitle {
    font-size: .9rem;
    color: #9ca3af !important;
}

/* ==============
   NAVBAR
   ============== */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.7);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98)) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.navbar-brand {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
}

.brand-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(59, 130, 246, 0.9), rgba(56, 189, 248, 0.8));
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5), 0 10px 20px rgba(15, 23, 42, 0.85);
}

.brand-icon {
    font-size: 1.1rem;
    color: #f9fafb;
}

.profile-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    background: radial-gradient(circle at 0% 0%, #0ea5e9, #1d4ed8);
    color: #e5e7eb;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.6), 0 0 16px rgba(56,189,248,0.4);
}

.navbar-dark .navbar-nav .nav-link {
    font-size: .88rem;
    opacity: .8;
    position: relative;
    padding-inline: .9rem;
    transition: opacity .15s ease, color .15s ease, transform .15s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease-out;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    opacity: 1;
    transform: translateY(-1px);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-link-pill {
    border-radius: 999px;
    padding-inline: 1rem !important;
    border: 1px solid rgba(250, 204, 21, 0.5);
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.15), transparent 60%);
}

.navbar-toggler {
    border-radius: .75rem;
    border: 1px solid rgba(148, 163, 184, 0.6) !important;
}

/* ==================
   KARTLAR & PANEL
   ================== */
.card {
    border-radius: 1.2rem;
    border: 1px solid rgba(30, 64, 175, 0.45);
    background-color: #020617;
    color: #e5e7eb;
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.74);
}

.card-shadow {
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.86);
}

.card-hero {
    position: relative;
    overflow: hidden;
}

.card-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.25), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(244, 114, 182, 0.17), transparent 55%);
    opacity: .7;
    pointer-events: none;
}

.card-hero > * {
    position: relative;
    z-index: 1;
}

.card-header {
    border-bottom-color: rgba(30, 64, 175, 0.45);
    background-color: #020617;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .72rem;
    color: #9ca3af;
}

/* ===========
   FORMLAR
   =========== */
.form-control,
.form-select {
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, .32);
    background-color: rgba(15, 23, 42, 0.86);
    color: #e5e7eb;
}

.form-control:focus,
.form-select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 0.13rem rgba(56, 189, 248, .28);
    background-color: rgba(15, 23, 42, 0.97);
    color: #f9fafb;
}

.form-label {
    font-size: .84rem;
    color: #e5e7eb !important;
}

.form-control::placeholder {
    color: #cbd5f5 !important;
}

/* ===========
   BUTONLAR
   =========== */
.btn-primary {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
    box-shadow: 0 14px 32px rgba(79, 70, 229, 0.55);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7dd3fc, #818cf8);
    transform: translateY(-1px);
    box-shadow: 0 18px 48px rgba(79, 70, 229, 0.7);
}

.btn-outline-light {
    border-radius: 999px;
    border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline-light:hover {
    background-color: rgba(248, 250, 252, 0.06);
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-danger,
.btn-outline-dark {
    border-radius: 999px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btn-run {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .09em;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.45);
}

.btn-run:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px rgba(34, 197, 94, 0.7);
}

.btn-light-soft {
    border-radius: 999px;
    background-color: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e5e7eb !important;
}

.btn-light-soft:hover {
    background-color: rgba(148, 163, 184, 0.16);
}

/* ===============
   STAT KUTULARI
   =============== */
.stat-box {
    border-radius: 1.1rem;
    background-color: #020617;
    border: 1px solid rgba(37, 99, 235, 0.45);
    color: #f9fafb;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.9);
}

.stat-box.bg-light {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 1)) !important;
    color: #f9fafb !important;
}

.stat-box .small,
.stat-box .small.text-muted {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
    color: #d1d5db !important;
}

.stat-box .h4,
.stat-box .h4.mb-0 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f9fafb;
}

/* ==========
   TABLOLAR
   ========== */
.table {
    color: #f9fafb;
    font-size: .85rem;
    --bs-table-bg: transparent;
}

.table thead th {
    border-bottom-color: rgba(148, 163, 184, 0.5);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    color: #f9fafb !important;
}

.table tbody tr {
    border-color: rgba(30, 64, 175, 0.24);
    background-color: rgba(15, 23, 42, 0.9);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: rgba(30, 64, 175, 0.16);
}

.table tbody tr:hover > * {
    background-color: rgba(56, 189, 248, 0.14);
    transition: background-color .12s ease-out;
}

.table tbody td,
.table tbody th,
.table tfoot th,
.table tfoot td {
    color: #f9fafb !important;
}

/* =======================
   ALERT, BADGE, LABEL vb
   ======================= */
.alert {
    border-radius: 0.9rem;
    border-width: 1px;
    background-color: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.45);
    color: #e5e7eb;
}

.alert-success {
    border-color: rgba(34, 197, 94, 0.6);
    background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.25), rgba(15, 23, 42, 0.9));
}

.alert-danger {
    border-color: rgba(239, 68, 68, 0.8);
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.25), rgba(15, 23, 42, 0.9));
}

.alert-warning {
    border-color: rgba(234, 179, 8, 0.7);
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.25), rgba(15, 23, 42, 0.9));
}

.badge {
    border-radius: 999px;
    padding-inline: .7rem;
    padding-block: .3rem;
    font-weight: 500;
    letter-spacing: .05em;
}

.badge.bg-warning {
    color: #1e293b !important;
}

/* Avatar & profil menüsü */
.avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.55);
}

.avatar-circle.avatar-lg {
    width: 52px;
    height: 52px;
}

.avatar-initial {
    font-size: .8rem;
    font-weight: 600;
    color: #e5e7eb;
}

.dropdown-menu.shadow-soft {
    border-radius: 1rem;
    border-color: rgba(15, 23, 42, 0.9);
    background-color: rgba(15, 23, 42, 0.98);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    z-index: 2000;
}

/* Profil dropdown içi & linkler */
.profile-toggle {
    border-radius: 999px;
    padding-inline: .6rem !important;
    padding-block: .25rem !important;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.profile-toggle:focus,
.profile-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}

.profile-dropdown .small.fw-semibold {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu.shadow-soft .dropdown-item {
    color: #e5e7eb !important;
    font-size: .85rem;
    border-radius: .6rem;
}

.dropdown-menu.shadow-soft .dropdown-item:hover,
.dropdown-menu.shadow-soft .dropdown-item:focus {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 1));
    color: #f9fafb !important;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.8);
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.32), rgba(56, 189, 248, 0.18));
    color: #e5e7eb !important;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .12rem .55rem;
}

.navbar-nav .nav-link .ri-notification-3-line {
    font-size: 1.1rem;
}

.notif-badge {
    top: 2px;
    left: 14px;
    transform: none;
    min-width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    padding: 0;
    box-shadow: 0 0 0 1px rgba(15,23,42,0.9), 0 0 10px rgba(248,113,113,0.7);
}

.level-badge i {
    font-size: .8rem;
}

.profile-menu {
    min-width: 260px;
    max-width: 320px;
    padding-top: .35rem;
    padding-bottom: .35rem;
}

.profile-menu {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95));
    box-shadow: 0 25px 45px rgba(2, 6, 23, 0.55);
    border-radius: 1.2rem;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.profile-menu .dropdown-item {
    transition: background .15s ease, color .15s ease;
}

.profile-menu .dropdown-item:hover {
    background: rgba(56, 189, 248, 0.1);
    color: #f9fafb;
}

.profile-dropdown .avatar-circle {
    border: 1px solid rgba(59, 130, 246, 0.6);
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.45), rgba(15, 23, 42, 0.9));
}

/* Admin rejection modal */
.dark-modal {
    background: linear-gradient(145deg, rgba(10, 14, 30, 0.95), rgba(2, 6, 23, 0.96));
    border: 1px solid rgba(56, 189, 248, 0.45);
    color: #e5e7eb;
}

.dark-modal .modal-header,
.dark-modal .modal-footer {
    border-color: rgba(148, 163, 184, 0.25);
}

.dark-modal .modal-body {
    font-size: .9rem;
}

.dark-modal .modal-footer {
    background: rgba(15, 23, 42, 0.85);
}

/* Genel metin tonları (koyu temada okunabilir) */
.text-muted,
.small.text-muted,
.card .text-muted {
    color: #e5e7eb !important;
    opacity: 0.9;
}


code {
    background-color: rgba(15, 23, 42, 0.9);
    color: #fbbf24;
    border-radius: .45rem;
    padding: .12rem .4rem;
    border: 1px solid rgba(55, 65, 81, 0.85);
}

/* ========
   FOOTER
   ======== */
.app-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 1)) !important;
}

.footer-meta {
    opacity: .8;
}

/* ==========
   ANİMASYON
   ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeInUp .45s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-zoom-hover {
    transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s ease-out;
}

.card-zoom-hover:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(30, 64, 175, 0.9);
}

.dashboard-hero {
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
}

.btn-group .btn-sm {
    font-size: .7rem;
    border-radius: .4rem;
    padding: .35rem .75rem;
}

.withdraw-action {
    border: none;
    border-radius: .65rem;
    padding: .35rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: transform .2s ease, box-shadow .2s ease;
}
.withdraw-action-group {
    gap: .3rem;
}
.withdraw-action-group .withdraw-action {
    flex: 1 1 0;
}
.withdraw-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.4);
}
.withdraw-action-approve {
    background: linear-gradient(120deg, #22c55e, #16a34a);
    color: #fff;
}
.withdraw-action-reject {
    background: linear-gradient(120deg, #f87171, #dc2626);
    color: #fff;
}

.dashboard-stats .stat-box {
    border-color: rgba(37, 99, 235, 0.45);
    background: rgba(15, 23, 42, 0.9);
}

.dashboard-stats .stat-box .h4 {
    font-size: 1.5rem;
}

/* Deposit wizard */
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #e5e7eb;
    background: radial-gradient(circle at top, rgba(30,64,175,0.6), rgba(15,23,42,1));
}

.step-line {
    width: 2px;
    flex: 1;
    margin: .5rem auto;
    background: linear-gradient(to bottom, rgba(148,163,184,0.6), rgba(30,64,175,0.0));
}

.network-pill {
    border-radius: .9rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background-color: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    padding: .55rem 1.2rem;
    font-size: .85rem;
    font-weight: 500;
}

.network-pill.active {
    border-color: #38bdf8;
    background: radial-gradient(circle at top, rgba(56,189,248,0.22), rgba(15,23,42,1));
}

.deposit-network-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: .35rem;
}

.deposit-network-option {
    min-width: 160px;
    flex: 1 1 180px;
    border-radius: 1rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.deposit-network-option small {
    color: #9ca3af;
}

.deposit-network-option.active {
    border-color: #38bdf8;
    box-shadow: 0 12px 26px rgba(56, 189, 248, 0.25);
    transform: translateY(-1px);
}

.deposit-qr-box {
    border-radius: 1.2rem;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.55);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.deposit-address-chip {
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: .4rem .9rem;
    font-size: .8rem;
}

/* Earnings reports */
.reports-hero-card {
    background: linear-gradient(155deg, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 1.4rem;
}

.reports-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.reports-summary-card {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(2, 6, 23, 0.75);
    padding: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reports-summary-card .h4 {
    font-size: 1.8rem;
}

.reports-highlight-line {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.reports-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem 1rem;
    border-radius: .85rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(15, 23, 42, 0.85);
    color: #cbd5f5;
    font-weight: 600;
}

.reports-highlight-badge strong {
    font-weight: 700;
    color: #f8fafc;
}

.reports-highlight-badge--primary {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.8));
}

.reports-highlight-badge--secondary {
    border-color: rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

.reports-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.filter-pill {
    padding: .4rem .9rem;
    border-radius: .85rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    font-size: .75rem;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.filter-pill.active {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-1px);
}

.reports-chart {
    display: flex;
    align-items: flex-end;
    gap: .45rem;
    padding: .75rem .55rem .35rem;
    min-height: 170px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 1.25rem;
    overflow: hidden;
}

.reports-chart-bar {
    flex: 1;
    min-width: 12px;
    border-radius: .9rem .9rem 0 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.45));
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform .2s ease;
}

.reports-chart-bar:hover {
    transform: translateY(-3px);
}

.reports-chart-value {
    position: absolute;
    bottom: 100%;
    background: rgba(2, 6, 23, 0.92);
    padding: .25rem .6rem;
    border-radius: .6rem;
    font-size: .65rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.reports-chart-bar:hover .reports-chart-value {
    opacity: 1;
    transform: translateY(0);
}

.reports-chart-label {
    font-size: .65rem;
    color: #94a3b8;
    margin-bottom: 0;
}

.reports-table-card {
    border-radius: 1.2rem;
    border: 1px solid rgba(37, 99, 235, 0.45);
}

.reports-table thead th {
    border-bottom-color: rgba(148, 163, 184, 0.35);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #94a3b8 !important;
    border-top: none;
}

.reports-table tbody tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.reports-table tbody tr:last-child td {
    border-bottom: none;
}

.reports-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.08);
}

/* Home marketing page */
.home-page {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.home-hero {
    min-height: 70vh;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    background: radial-gradient(circle at 30% -10%, rgba(56, 189, 248, 0.25), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15), transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.95));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #a5f3fc;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-top: .7rem;
}

.hero-description {
    margin: 1rem 0 1.5rem;
    color: #94a3b8;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-secondary {
    font-size: .85rem;
    color: #f8fafc;
    opacity: .75;
    margin-bottom: 1rem;
}

.login-links {
    display: flex;
    gap: .5rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-decor-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.25), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.25), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.2), transparent 40%);
    pointer-events: none;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: -2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-highlights div {
    background: rgba(2, 6, 23, 0.85);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(94, 234, 212, 0.6);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}

.hero-highlights span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #a5f3fc;
}

.hero-highlights strong {
    display: block;
    margin-top: .25rem;
    font-size: 1rem;
}

.visual-card {
    width: 320px;
    height: 320px;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.25), rgba(15, 23, 42, 0.7));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-chart {
    width: 80%;
    height: 80%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 40px rgba(56, 189, 248, 0.6);
}

.visual-coin {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 20% 20%, #34d399, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.section {
    padding: 0 1rem;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.section-heading h2 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.step-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: left;
}

.step-index {
    font-size: 1.5rem;
}

.referral-box {
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    border: 1px dashed rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.05);
    color: #cbd5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-card {
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.stats-section {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.2rem;
    padding: 2rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.stats-grid h3 {
    font-size: 2.3rem;
    margin-bottom: .3rem;
}

.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-content p {
    color: #cbd5f5;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-visual {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(15, 23, 42, 0.95));
    border-radius: 1.2rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.about-quote {
    font-size: 1.1rem;
    color: #e0f2fe;
}

.ethics-section {
    text-align: center;
}

.ethics-list {
    list-style: none;
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    gap: .8rem;
}

.ethics-list li {
    padding: .8rem 1rem;
    border-radius: .8rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature-strip-card {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 1rem;
    padding: 1.6rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.feature-strip-card h3 {
    margin-bottom: .5rem;
}

.feature-strip-card p {
    color: #cbd5f5;
}

/* Register page enhancements */
.signup-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.signup-hero {
    background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.8));
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59,130,246,0.4);
}

.signup-hero::after {
    content: '';
    position: absolute;
    inset: 10% auto auto 60%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 65%);
    filter: blur(20px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 3vw, 3.4rem);
    margin-bottom: 1rem;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .8rem;
    margin-top: 1.5rem;
}

.hero-stat-grid div {
    padding: 1rem;
    border-radius: .9rem;
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(148,163,184,0.3);
}

.hero-stat-grid span {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero-form {
    position: relative;
    z-index: 1;
}

.hero-form .form-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: .85rem;
    color: #a5f3fc;
}

.signup-card {
    background: rgba(2, 6, 23, 0.95);
    border-radius: 1.2rem;
    border: 1px solid rgba(59,130,246,0.4);
}

.trust-row {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .85rem;
}

.trust-row span {
    color: #cbd5f5;
}

.signup-steps .section-heading h2 {
    margin-bottom: .5rem;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.step-grid article {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 12px 30px rgba(2,6,23,0.3);
}

.step-index {
    font-size: 1.5rem;
    color: #38bdf8;
}

.signup-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.benefits-card {
    border-radius: 1rem;
    border: 1px solid rgba(59,130,246,0.4);
    background: rgba(15, 23, 42, 0.88);
    padding: 1.4rem;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.4);
}

.cta-section {
    padding-bottom: 3rem;
}

.cta-card {
    border-radius: 1.3rem;
    padding: 2.5rem;
    background: radial-gradient(circle at top, rgba(16, 185, 129, 0.15), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(16, 185, 129, 0.35);
    text-align: center;
}

.cta-card h2 {
    margin-bottom: .5rem;
}

.cta-actions {
    margin: 1.2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: .5rem;
    align-items: center;
}

.cta-social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.cta-mail {
    color: #38bdf8;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-visual {
        order: -1;
    }
}

/* Asset select modal */
.app-modal {
    background-color: rgba(15, 23, 42, 0.95);
    border-radius: 1.2rem;
    border: 1px solid rgba(30, 64, 175, 0.7);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.95),
        0 0 0 1px rgba(30, 64, 175, 0.8);
    color: #e5e7eb;
}

.app-modal .modal-header {
    border-bottom-color: rgba(30, 64, 175, 0.45);
}

.app-modal .btn-close {
    filter: invert(1) grayscale(100%);
}

.asset-option {
    border-radius: .9rem;
    border: 1px solid rgba(55, 65, 81, 0.8);
    background-color: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    padding: .65rem .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .55rem;
    cursor: pointer;
}

.asset-option .left {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.asset-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(56,189,248,0.22), rgba(15,23,42,1));
    border: 1px solid rgba(59, 130, 246, 0.7);
}

.asset-option small {
    color: #9ca3af;
}

.asset-option .check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

.asset-option.active {
    border-color: #38bdf8;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.22), rgba(15,23,42,1));
}

.asset-option.active .check {
    background-color: #22c55e;
    border-color: #22c55e;
    color: #0f172a;
}

.asset-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ============
   RESPONSIVE
   ============ */
@media (max-width: 991.98px) {
    .glass-nav {
        border-radius: 0 0 1.25rem 1.25rem;
    }
}


/* Modern Auth Page */
.auth-modern-wrapper {
    min-height: 100vh;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Background animated gradient */
.auth-modern-wrapper::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05), transparent 50%);
    animation: bg-pulse 15s ease infinite alternate;
    z-index: 0;
}

@keyframes bg-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.auth-modern-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    min-height: 650px;
}

/* Visual Side (Left) */
.auth-visual-side {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
}

.auth-visual-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.auth-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #38bdf8;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 400px;
}

.auth-visual-deco {
    margin-top: 4rem;
    position: relative;
    height: 200px;
}

.auth-glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
    filter: blur(30px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 6s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.2); }
}

.auth-glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.auth-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #34d399;
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

/* Form Side (Right) */
.auth-form-side {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(2, 6, 23, 0.4);
}

.auth-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.auth-form-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-control-modern {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.75rem;
    color: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control-modern:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    outline: none;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    color: #fff;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.auth-link {
    color: #38bdf8;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .auth-visual-side {
        display: none;
    }
    .auth-modern-container {
        max-width: 500px;
        min-height: auto;
    }
}

/* =========================================
   PROFESSIONAL LANDING PAGE REDESIGN
   ========================================= */

/* Ultra Modern Hero Section */
.landing-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0) 0%, #020617 100%);
}

.landing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 60%);
    filter: blur(60px);
    animation: float-slow 10s infinite alternate;
}

.landing-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.1), transparent 60%);
    filter: blur(50px);
    animation: float-slow 12s infinite alternate-reverse;
}

.landing-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.landing-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}

.landing-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.landing-title .gradient-accent {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.landing-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual (Right Side) */
.hero-visual-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.glass-card-float {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.card-main {
    width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
}

.card-stat {
    width: 200px;
    top: 20%;
    right: 10%;
    animation: float-y 6s ease-in-out infinite;
}

.card-chart {
    width: 240px;
    bottom: 15%;
    left: 10%;
    animation: float-y 8s ease-in-out infinite reverse;
}

/* Crypto Ticker Strip - Aesthetic Redesign */
.crypto-ticker-wrap {
    position: relative;
    background: rgba(2, 6, 23, 0.4); /* Softer dark bg */
    backdrop-filter: blur(15px); /* Glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    height: 56px;
    display: flex;
    align-items: center;
    /* Soft fade edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: ticker-scroll 800s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Inter", sans-serif; /* Remove monospace */
    font-weight: 500;
    font-size: 0.85rem;
    color: #cbd5e1;
    
    /* Pill design */
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.ticker-item .ticker-up {
    color: #10b981 !important; /* Green for earnings */
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ticker-up { color: #10b981; }
.ticker-down { color: #ef4444; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); } /* Adjust based on content length */
}

/* Features Grid */
.pro-features {
    padding: 8rem 0;
    position: relative;
}

.feature-card-pro {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-pro:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(37,99,235,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.pro-stats-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.8) 100%);
}

.stat-big-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Modern Steps Section 2025 */
.steps-section-modern {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05), transparent 60%);
    position: relative;
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

/* Dotted connecting line */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    border-top: 2px dashed rgba(59, 130, 246, 0.3);
    transform: translateY(-50%);
    z-index: 0;
    display: none; /* Hidden on mobile, shown on desktop */
}

@media (min-width: 992px) {
    .steps-timeline::before {
        display: block;
    }
}

.step-card-modern {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    height: 100%;
    overflow: hidden;
}

.step-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(59, 130, 246, 0.1) inset;
}

/* Glowing ambient background for cards */
.step-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card-modern:hover::before {
    opacity: 1;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 8px rgba(15, 23, 42, 0.5); /* Faux gap */
    z-index: 2;
}

.step-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-number-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.step-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Arrow animation for connecting steps */
.step-arrow {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    color: rgba(59, 130, 246, 0.3);
    font-size: 1.5rem;
    display: none;
}

@media (min-width: 992px) {
    .col-lg-4:not(:last-child) .step-card-modern::after {
        content: '\ea6c'; /* Remi icon arrow-right */
        font-family: 'remixicon';
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.1);
        z-index: 0;
    }
}

/* Animations */
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float-slow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@media (max-width: 992px) {
    .landing-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .landing-cta-group {
        justify-content: center;
    }
    .hero-visual-wrapper {
        display: none; /* Hide complex visual on mobile for simplicity */
    }
}

/* =========================================
   DASHBOARD 2025 REDESIGN
   ========================================= */

/* Bento Grid Layout Utilities */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-col-12 { grid-column: span 12; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }
.bento-col-4 { grid-column: span 4; }
.bento-col-3 { grid-column: span 3; }

@media (max-width: 992px) {
    .bento-col-8, .bento-col-4, .bento-col-3, .bento-col-6 {
        grid-column: span 12;
    }
}

/* Dashboard Cards */
.dash-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
    height: auto; /* Changed from 100% to auto for better stacking flow */
    min-height: 100%; /* Ensure it stretches if in a grid row */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dash-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Gradient Text */
.text-gradient-gold {
    background: linear-gradient(to right, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Action Buttons */
.btn-action-lg {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-action-lg:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-action-lg:disabled {
    background: #1e293b;
    color: #64748b !important;
    border-color: #334155;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Stat Value */
.stat-value-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Status Badge */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.inactive {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Table Styles */
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.table-modern th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    padding: 1rem;
    border: none;
}

.table-modern td {
    background: rgba(30, 41, 59, 0.4);
    padding: 1rem;
    color: #cbd5e1;
    border: none;
}

.table-modern tr td:first-child {
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.table-modern tr td:last-child {
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.table-modern tr:hover td {
    background: rgba(30, 41, 59, 0.6);
}


/* =========================================
   MODERN HEADER 2025
   ========================================= */
.navbar-modern {
    background: rgba(2, 6, 23, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    background: rgba(2, 6, 23, 0.9) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-link-modern {
    color: #94a3b8 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-modern:hover, 
.nav-link-modern.active {
    color: #f8fafc !important;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-modern.active {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa !important;
}

.nav-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link-modern:hover .nav-icon-box,
.nav-link-modern.active .nav-icon-box {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Dropdown Menu Modern */
.dropdown-menu-modern {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    min-width: 240px;
    margin-top: 1rem;
    animation: slideUpFade 0.2s ease-out;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item-modern {
    color: #cbd5e1;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.dropdown-item-modern:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    transform: translateX(4px);
}

.dropdown-item-modern i {
    font-size: 1.1rem;
    color: #64748b;
    transition: color 0.2s;
}

.dropdown-item-modern:hover i {
    color: #60a5fa;
}

.dropdown-divider-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

/* Profile Toggle */
.profile-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem 0.5rem 1rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.profile-toggle:hover, .profile-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.profile-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.profile-toggle:hover .profile-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Profile info section */
.profile-info {
    min-width: 0;
    flex: 1;
}

/* Profile badge styles - inline badges */
.profile-badge-admin,
.profile-badge-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.profile-badge-admin {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.profile-badge-level {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.profile-badge-admin i {
    font-size: 0.75rem;
}

.profile-toggle:hover .profile-badge-admin,
.profile-toggle:hover .profile-badge-level {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
}

.profile-toggle:hover .profile-badge-admin {
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
}
}

/* =========================================
   MODERN FOOTER 2025
   ========================================= */
.footer-modern {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f8fafc;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    background: #38bdf8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Deposit & Withdraw Page Specifics */
.form-card-modern {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
}

.input-group-modern-v2 {
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
}

.input-group-modern-v2:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.input-modern-v2 {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.input-modern-v2:focus {
    outline: none;
}

.input-addon {
    color: #94a3b8;
    font-weight: 600;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0.5rem;
}

.network-select-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.network-select-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.network-select-btn.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Header notification badge + icon */
/* Header notification - Modern & Professional Design */
.header-notif-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.header-notif-toggle i {
    color: #cbd5e1;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.header-notif-toggle:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-notif-toggle:hover i {
    color: #60a5fa;
    transform: scale(1.08);
}

.header-notif-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 0.4rem;
    border-radius: 11px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2.5px rgba(15, 23, 42, 0.95), 0 4px 14px rgba(239, 68, 68, 0.5);
    line-height: 1;
    animation: pulse-notif-badge 2s ease-in-out infinite;
    z-index: 10;
    letter-spacing: -0.02em;
}

/* Active Allocations Cards */
.allocation-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.allocation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.allocation-card:hover::before {
    left: 100%;
}

.allocation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(148, 163, 184, 0.4) !important;
}

.allocation-icon {
    transition: all 0.3s ease;
}

.allocation-card:hover .allocation-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Ensure text readability in Active Allocations */
.allocation-card h5,
.allocation-card .h5 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.allocation-card .text-muted,
.allocation-card .small {
    color: #cbd5e1 !important;
    font-weight: 500;
}

.allocation-card .badge {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-notif-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 2.5px rgba(15, 23, 42, 0.95), 0 4px 14px rgba(239, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 2.5px rgba(15, 23, 42, 0.95), 0 6px 18px rgba(239, 68, 68, 0.7);
    }
}

/* Fix for Fixed Header Overlap */
.app-main {
    flex: 1 0 auto; /* Ensure main content grows and doesn't shrink below content height */
    width: 100%;
    padding-top: 100px !important; /* Adjust based on header height */
    padding-bottom: 4rem;
}

@media (max-width: 992px) {
    .app-main {
        padding-top: 80px !important;
    }
}

/* Referrals Page Improvements */
.ref-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Withdraw Page Improvements */
.withdraw-balance-card {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.withdraw-balance-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
    pointer-events: none;
}

/* Dashboard Quick Stats Cards */
.quick-stat-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.quick-stat-card:hover::before {
    left: 100%;
}

.quick-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(148, 163, 184, 0.4) !important;
}

.quick-stat-card:hover .quick-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quick-stat-icon {
    transition: all 0.3s ease;
}

/* Level System Styles */
.text-purple {
    color: #a855f7 !important;
}
