/* ============================================================
   APEXFORTITUDE — custom.css
   Fully responsive · Dark/Light mode · Production-grade
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=DM+Sans:wght@300;400;500;600&family=Syne:wght@600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES — THEME SYSTEM
   ============================================================ */
:root,
[data-theme="light"] {
    --bg-base: #f0f2f7;
    --bg-surface: #ffffff;
    --bg-sidebar: #0f1117;
    --bg-sidebar-hover: rgba(255, 255, 255, .08);
    --bg-sidebar-active: rgba(99, 179, 255, .15);
    --bg-card: #ffffff;
    --bg-input: #f5f7fb;
    --bg-overlay: rgba(0, 0, 0, .45);

    --text-primary: #0d0f14;
    --text-secondary: #5a6480;
    --text-muted: #9aa3b8;
    --text-sidebar: rgba(255, 255, 255, .7);
    --text-sidebar-active: #ffffff;
    --text-on-accent: #ffffff;

    --border-color: #e4e8f0;
    --border-subtle: #eef0f6;

    --accent: #3b82f6;
    --accent-light: #eff6ff;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59, 130, 246, .25);

    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --info: #6366f1;
    --info-light: #eef2ff;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
    --shadow-accent: 0 8px 24px rgba(59, 130, 246, .28);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    --sidebar-width: 260px;
    --header-height: 68px;

    --font-sans: 'Sora', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition: all .22s cubic-bezier(.4, 0, .2, 1);
    --transition-fast: all .12s ease;
}

[data-theme="dark"] {
    --bg-base: #0b0d13;
    --bg-surface: #13161f;
    --bg-sidebar: #0d0f17;
    --bg-sidebar-hover: rgba(255, 255, 255, .06);
    --bg-sidebar-active: rgba(59, 130, 246, .18);
    --bg-card: #181c28;
    --bg-input: #1e2230;
    --bg-overlay: rgba(0, 0, 0, .70);

    --text-primary: #f0f2fa;
    --text-secondary: #8b93b0;
    --text-muted: #555e7a;
    --text-sidebar: rgba(255, 255, 255, .6);
    --text-sidebar-active: #ffffff;

    --border-color: #232736;
    --border-subtle: #1b1f2e;

    --accent: #60a5fa;
    --accent-light: rgba(96, 165, 250, .12);
    --accent-hover: #93c5fd;
    --accent-glow: rgba(96, 165, 250, .20);

    --success: #34d399;
    --success-light: rgba(52, 211, 153, .12);
    --warning: #fbbf24;
    --warning-light: rgba(251, 191, 36, .12);
    --danger: #f87171;
    --danger-light: rgba(248, 113, 113, .12);
    --info: #818cf8;
    --info-light: rgba(129, 140, 248, .12);

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .5);
    --shadow-accent: 0 8px 24px rgba(96, 165, 250, .20);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    transition: background .3s ease, color .3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.left-sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
}

.left-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .6;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.brand-logo a img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.brand-logo .brand-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.4px;
}

.brand-logo .brand-name span {
    color: var(--accent);
}

.close-btn {
    display: none;
    color: var(--text-sidebar);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.close-btn:hover {
    color: #fff;
}

.scroll-sidebar {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px 20px;
}

.nav-small-cap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 8px 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.nav-small-cap-icon {
    font-size: 14px;
    opacity: .5;
}

.sidebar-item {
    margin-bottom: 2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--text-sidebar);
    font-size: 13.5px;
    font-weight: 450;
    transition: var(--transition);
    position: relative;
}

.sidebar-link i {
    font-size: 17px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-link .hide-menu {
    flex: 1;
}

.sidebar-link:hover {
    background: var(--bg-sidebar-hover);
    color: #fff;
}

.sidebar-link.active,
.sidebar-item.selected>.sidebar-link {
    background: var(--bg-sidebar-active);
    color: #fff;
}

.sidebar-link.active i {
    color: var(--accent);
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

.sidebar-link.lock {
    opacity: .45;
    cursor: not-allowed;
}

.sidebar-link.lock:hover {
    background: transparent;
    color: var(--text-sidebar);
}

.sidebar-footer {
    padding: 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .04);
}

.sidebar-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .15);
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-role {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

/* ============================================================
   BODY WRAPPER
   ============================================================ */
.body-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left .3s ease;
}

/* ============================================================
   HEADER
   ============================================================ */
.app-header {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    height: var(--header-height);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    z-index: 50;
    display: flex;
    align-items: center;
    padding: 0 28px;
    transition: left .3s ease, background .3s ease, border-color .3s ease;
}

.app-header .navbar {
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ms-auto {
    margin-left: auto;
}

.header-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -.3px;
}

.header-breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

.nav-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 17px;
    transition: var(--transition);
    cursor: pointer;
}

.nav-icon-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 17px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

.notif-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--bg-surface);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: .7;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    overflow: hidden;
}

.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header-section {
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.dropdown-header-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: var(--text-primary);
    font-size: 13.5px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--bg-input);
    color: var(--accent);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
}

.dropdown-item:hover i {
    color: var(--accent);
}

.dropdown-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--border-subtle);
}

/* Notification items */
.notif-item {
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: var(--bg-input);
}

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.notif-icon.blue {
    background: var(--accent-light);
    color: var(--accent);
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-subject {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.notif-msg {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}

.notif-del {
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    align-self: flex-start;
    flex-shrink: 0;
}

.notif-del:hover {
    color: var(--danger);
    background: var(--danger-light);
}

.avatar-dropdown-menu {
    min-width: 220px;
}

.avatar-btn img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.avatar-btn img:hover {
    border-color: var(--accent);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
    flex: 1;
    margin-top: var(--header-height);
    padding: 28px;
    min-height: calc(100vh - var(--header-height));
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    padding: 16px 28px;
    font-size: 12.5px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer a {
    color: var(--accent);
    transition: var(--transition-fast);
}

.site-footer a:hover {
    opacity: .75;
}

/* ============================================================
   PULSE / GIFT BUTTON
   ============================================================ */
.pulse-circle {
    position: fixed;
    bottom: 28px;
    left: calc(var(--sidebar-width) + 28px);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: var(--transition);
}

.pulse-circle:hover {
    transform: scale(1.1);
}

.pulse-circle::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse-ring 1.8s ease infinite;
    opacity: .5;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.85);
        opacity: .6;
    }

    60% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(.85);
        opacity: 0;
    }
}

.pulse-circle::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

/* ============================================================
   SIDEBAR OVERLAY (mobile)
   ============================================================ */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 90;
    backdrop-filter: blur(3px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1199px) {
    .left-sidebar {
        left: -280px;
        box-shadow: none;
    }

    .show-sidebar .left-sidebar {
        left: 0;
        box-shadow: 30px 0 60px rgba(0, 0, 0, .4);
    }

    .show-sidebar .sidebar-overlay {
        display: block;
    }

    .body-wrapper {
        margin-left: 0;
    }

    .app-header {
        left: 0;
    }

    .close-btn {
        display: flex;
    }

    .pulse-circle {
        left: 28px;
    }
}

@media (max-width: 767px) {
    .main-content {
        padding: 16px;
    }

    .app-header {
        padding: 0 16px;
    }

    .site-footer {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 12px;
    }

    .dropdown-menu {
        min-width: 260px;
        right: -10px;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-xl-none {
    display: none;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.text-nowrap {
    white-space: nowrap;
}

.ms-3 {
    margin-left: 12px;
}

.me-3 {
    margin-right: 12px;
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 8px;
}

.rounded-circle {
    border-radius: 50%;
}

.ps-5 {
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .d-xl-none {
        display: flex;
    }

    .d-none {
        display: none;
    }
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    margin-right: 12px;
}

.hamburger:hover {
    background: var(--bg-input);
    color: var(--text-primary);
}

.sidebartoggler {
    cursor: pointer;
}

/* ============================================================
   HEADER SEARCH
   ============================================================ */
.header-search {
    position: relative;
    margin-right: 8px;
}

.header-search input {
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 8px 16px 8px 38px;
    font-size: 13px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    width: 220px;
    transition: var(--transition);
    outline: none;
}

.header-search input:focus {
    border-color: var(--accent);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px var(--accent-glow);
    width: 260px;
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-search .search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

@media (max-width: 900px) {
    .header-search {
        display: none;
    }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.dropdown-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 4px 0;
}

/* ============================================================
   BTN BASE
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: #fff;
}

.btn-danger-soft {
    background: var(--danger-light);
    color: var(--danger);
    border: 1.5px solid transparent;
}

.btn-danger-soft:hover {
    background: var(--danger);
    color: #fff;
}

/* ============================================================
   VERIFIED BADGE
   ============================================================ */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    background: var(--success-light);
    color: var(--success);
}

.badge-unverified {
    background: var(--warning-light);
    color: var(--warning);
}

/* ============================================================
   DASHBOARD — VERIFY BANNER
   ============================================================ */
.verify-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--warning-light);
    border: 1px solid rgba(245, 158, 11, .3);
    border-left: 3px solid var(--warning);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    animation: slideDown .4s ease;
    flex-wrap: wrap;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-banner-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--warning);
    font-size: 16px;
}

.verify-banner-text {
    flex: 1;
    min-width: 180px;
}

.verify-banner-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.verify-banner-text span {
    font-size: 12.5px;
    color: var(--text-secondary);
}

.verify-banner-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: var(--radius-md);
    background: var(--warning);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.verify-banner-btn:hover {
    opacity: .85;
    color: #fff;
}

/* ============================================================
   DASHBOARD — WELCOME ROW
   ============================================================ */
.welcome-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.welcome-greeting {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.5px;
}

.welcome-greeting span {
    color: var(--accent);
}

.welcome-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
}

.welcome-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.action-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.action-btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.action-btn-outline {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1.5px solid var(--border-color);
}

.action-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================================
   DASHBOARD — STAT CARDS
   ============================================================ */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .stat-cards {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 22px 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: .07;
    transition: var(--transition);
}

.stat-card:hover::after {
    opacity: .14;
    transform: scale(1.2);
}

.stat-card.card-blue::after {
    background: var(--accent);
}

.stat-card.card-green::after {
    background: var(--success);
}

.stat-card.card-amber::after {
    background: var(--warning);
}

.stat-card.card-red::after {
    background: var(--danger);
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.icon-blue {
    background: var(--accent-light);
    color: var(--accent);
}

.icon-green {
    background: var(--success-light);
    color: var(--success);
}

.icon-amber {
    background: var(--warning-light);
    color: var(--warning);
}

.icon-red {
    background: var(--danger-light);
    color: var(--danger);
}

.icon-info {
    background: var(--info-light);
    color: var(--info);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.stat-value {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.8px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-value .currency-sign {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 2px;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.stat-sub {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-sub i {
    font-size: 11px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}

.badge-claim {
    background: var(--success-light);
    color: var(--success);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.badge-claim:hover {
    background: var(--success);
    color: #fff;
}

/* ============================================================
   DASHBOARD — CRYPTO TICKER
   ============================================================ */
.ticker-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    margin-left: 10px;
    margin-right: 10px;
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 1.5s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.ticker-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
}

.ticker-body {
    padding: 10px 0;
}

/* ============================================================
   DASHBOARD — TWO-COLUMN LAYOUT
   ============================================================ */
.main-columns {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

@media (max-width: 1050px) {
    .main-columns {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   DASHBOARD — INVEST TIMER CARD
   ============================================================ */
.invest-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #8b5cf6, var(--success));
}

.invest-card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    align-self: flex-start;
}

.timer-wrap {
    position: relative;
    width: 200px;
    height: 200px;
}

.timer-wrap svg {
    display: block;
}

.background-circle {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 10;
}

.progress-circle {
    fill: none;
    stroke: url(#timerGradient);
    stroke-width: 10;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset .5s linear;
}

.timer-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

#time {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    font-family: var(--font-mono);
    letter-spacing: -.5px;
    text-align: center;
    line-height: 1.3;
}

.plan-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.invest-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.invest-status.active {
    background: var(--success-light);
    color: var(--success);
}

.invest-status.expired {
    background: var(--danger-light);
    color: var(--danger);
}

.invest-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.invest-status.active .invest-status-dot {
    animation: blink 1.5s ease infinite;
}

.reinvest-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 4px;
    box-shadow: var(--shadow-accent);
}

.reinvest-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================================
   DASHBOARD — QUICK PANEL
   ============================================================ */
.quick-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.panel-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-surface);
}

.quick-action:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.quick-action:hover .quick-action-icon {
    color: var(--accent);
}

.quick-action:hover .quick-action-label {
    color: var(--accent);
}

.quick-action-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.quick-action-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: var(--transition);
}

/* ============================================================
   DASHBOARD — SECTION HEADER / INFO STRIP / EARNING ROW
   ============================================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.3px;
}

.section-link {
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.section-link:hover {
    opacity: .7;
}

.info-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 16px;
}

.earning-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-input);
    border-radius: var(--radius-md);
    margin-top: 12px;
    border: 1px solid var(--border-subtle);
}

.earning-row-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.earning-row-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--success);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   DEPOSIT PAGE — RESPONSIVE
   ============================================================ */
.dep-shell {
    min-height: 100vh;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px 80px;
    font-family: 'DM Sans', sans-serif;
    transition: background .3s ease;
}

.dep-canvas {
    width: 100%;
    max-width: 520px;
    position: relative;
}

.dep-canvas::before {
    content: '';
    position: absolute;
    inset: -80px;
    background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(59, 130, 246, .12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dep-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid rgba(59, 130, 246, .25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dep-badge span.dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.8s ease-in-out infinite;
}

.dep-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 5vw, 38px);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 6px;
}

.dep-title em {
    color: var(--accent);
    font-style: italic;
}

.dep-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.dep-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .dep-card {
        padding: 24px 16px;
    }
}

.dep-field {
    margin-bottom: 20px;
}

.dep-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dep-field select,
.dep-field input,
.dep-field textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    height: 48px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.dep-field select {
    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 d='M1 1l5 5 5-5' stroke='%239aa3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.dep-field input:focus,
.dep-field select:focus,
.dep-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.dep-field textarea {
    height: auto;
    min-height: 90px;
    resize: vertical;
    line-height: 1.5;
}

.dep-input-wrap {
    position: relative;
}

.dep-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 700;
    pointer-events: none;
}

.dep-input-wrap input {
    padding-left: 34px;
}

.dep-divider {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

.dep-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--success-light);
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--success);
    margin-bottom: 24px;
}

.dep-info-row i {
    margin-top: 1px;
    flex-shrink: 0;
}

.dep-errors {
    background: var(--danger-light);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--danger);
    font-size: 13px;
    margin-bottom: 20px;
}

.dep-msg {
    background: var(--accent-light);
    border: 1px solid rgba(59, 130, 246, .2);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--accent);
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
}

.dep-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: var(--shadow-accent);
    letter-spacing: .01em;
}

.dep-btn:hover {
    background: var(--accent-hover);
}

.dep-btn:active {
    transform: scale(.98);
}

.dep-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 18px;
}

/* ============================================================
   PAYMENT CONFIRM PAGE — RESPONSIVE
   ============================================================ */
.pay-shell {
    min-height: 100vh;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px 80px;
    font-family: 'DM Sans', sans-serif;
    transition: background .3s ease;
}

.pay-canvas {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.pay-canvas::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(ellipse 55% 45% at 50% 30%, rgba(16, 185, 129, .08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-light);
    border: 1px solid rgba(16, 185, 129, .25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pay-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1.8s ease-in-out infinite;
}

.pay-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 5vw, 36px);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 6px;
}

.pay-title em {
    color: var(--success);
    font-style: italic;
}

.pay-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.pay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* step bar */
.pay-steps {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: nowrap;
}

.pay-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pay-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.pay-step-circle.done {
    background: var(--success);
    color: #fff;
}

.pay-step-circle.active {
    background: var(--accent);
    color: #fff;
}

.pay-step-circle.idle {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.pay-step-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pay-step-lbl.act {
    color: var(--accent);
}

.pay-step-lbl.don {
    color: var(--success);
}

.pay-step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 8px;
    margin-bottom: 18px;
    max-width: 48px;
}

.pay-step-line.done {
    background: var(--success);
}

/* amount strip */
.pay-amount-strip {
    background: var(--bg-input);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 420px) {
    .pay-amount-strip {
        padding: 18px 16px;
    }
}

.pay-amount-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pay-amount-value {
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pay-amount-value span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 2px;
}

.pay-currency-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.pay-currency-pill i {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.pay-body {
    padding: 24px 28px;
}

@media (max-width: 420px) {
    .pay-body {
        padding: 20px 16px;
    }
}

.pay-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.pay-qr-wrap {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: var(--shadow-md);
}

.pay-qr-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.pay-qr-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.pay-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
}

.pay-divider::before,
.pay-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.pay-addr-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pay-addr-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pay-addr-input {
    flex: 1;
    min-width: 0;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 12px 14px;
    outline: none;
    letter-spacing: .02em;
}

.pay-copy-btn {
    background: var(--accent-light);
    border: 1px solid rgba(59, 130, 246, .25);
    border-radius: 10px;
    color: var(--accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pay-copy-btn:hover {
    background: var(--accent);
    color: #fff;
}

.pay-copy-btn.copied {
    background: var(--success-light);
    border-color: rgba(16, 185, 129, .3);
    color: var(--success);
}

.pay-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.pay-notice.warn {
    background: var(--warning-light);
    border: 1px solid rgba(245, 158, 11, .2);
    color: var(--warning);
}

.pay-notice.good {
    background: var(--success-light);
    border: 1px solid rgba(16, 185, 129, .2);
    color: var(--success);
}

.pay-notice i {
    flex-shrink: 0;
    margin-top: 2px;
}

.pay-btn {
    width: 100%;
    background: var(--success);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(16, 185, 129, .25);
    margin-top: 20px;
    letter-spacing: .01em;
}

.pay-btn:hover {
    filter: brightness(1.1);
}

.pay-btn:active {
    transform: scale(.98);
}

.pay-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.pay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 18px;
}

/* ============================================================
   KYC DOCUMENT PAGE — RESPONSIVE + THEME-AWARE
   ============================================================ */
.kyc-wrapper {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-base);
    min-height: 100vh;
    padding: 40px 16px 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: background .3s ease;
}

.kyc-container {
    width: 100%;
    max-width: 560px;
}

.kyc-header {
    text-align: center;
    margin-bottom: 32px;
}

.kyc-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.kyc-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* KYC Steps */
.kyc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-muted);
    transition: all .3s ease;
}

.step-label {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 8px;
    margin-top: -18px;
    max-width: 60px;
    transition: background .3s ease;
}

.step-item.active .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.step-item.active .step-label {
    color: var(--accent);
}

.step-item.done .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-item.done .step-label {
    color: var(--success);
}

.step-connector.done {
    background: var(--success);
}

.kyc-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
    .kyc-card {
        padding: 20px 16px;
    }

    .step-connector {
        max-width: 30px;
    }
}

.kyc-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kyc-card-title .step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kyc-card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    margin-left: 34px;
}

/* doc type grid */
.doc-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .doc-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

.doc-type-btn {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--bg-input);
}

.doc-type-btn:hover,
.doc-type-btn.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.doc-type-btn i {
    font-size: 22px;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.doc-type-btn span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
}

/* capture box */
.capture-box {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-input);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s;
}

.capture-box:hover {
    border-color: var(--accent);
}

.capture-box video,
.capture-box img.preview {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.capture-placeholder {
    padding: 30px 20px;
    text-align: center;
}

.capture-placeholder i {
    font-size: 44px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.capture-placeholder p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.capture-placeholder small {
    font-size: 12px;
    color: var(--text-muted);
}

.capture-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-capture {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .2s;
}

.btn-camera {
    background: var(--accent);
    color: white;
}

.btn-camera:hover {
    background: var(--accent-hover);
}

.btn-upload {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn-upload:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.btn-retake {
    background: var(--danger-light);
    color: var(--danger);
    border: 1.5px solid rgba(239, 68, 68, .3);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* camera modal */
.camera-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.camera-modal-overlay.open {
    display: flex;
}

.camera-modal {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    position: relative;
}

.camera-modal-header {
    background: #1a1a1a;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.camera-modal-header span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
}

.camera-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

#cameraFeed {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.camera-guide-overlay {
    position: absolute;
    inset: 52px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.camera-guide-frame {
    width: 75%;
    aspect-ratio: 85/55;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .35);
}

.camera-guide-frame.face-oval {
    aspect-ratio: 1/1.3;
    width: 55%;
    border-radius: 50%;
}

.camera-footer {
    background: #1a1a1a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-shutter {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid #555;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    transition: transform .1s, background .1s;
}

.btn-shutter:active {
    transform: scale(.92);
    background: #e2e8f0;
}

.camera-hint {
    font-size: 12px;
    color: #888;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    margin-top: 10px;
    padding: 0 10px 10px;
}

/* preview */
.preview-success {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.preview-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success);
    color: white;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* info box */
.info-box {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--accent);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-box i {
    flex-shrink: 0;
    margin-top: 1px;
}

/* submit btn */
.btn-submit-kyc {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s, transform .1s;
    margin-top: 8px;
}

.btn-submit-kyc:hover {
    background: var(--accent-hover);
}

.btn-submit-kyc:active {
    transform: scale(.99);
}

.btn-submit-kyc:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* success screen */
.kyc-success-screen {
    text-align: center;
    padding: 48px 20px;
}

.kyc-success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--success-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.kyc-success-icon i {
    font-size: 44px;
    color: var(--success);
}

.kyc-success-screen h2 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.kyc-success-screen p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 320px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* errors */
.form-errors {
    background: var(--danger-light);
    border: 1px solid rgba(239, 68, 68, .3);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--danger);
    font-size: 13px;
    margin-bottom: 20px;
}

.hidden-file-input {
    display: none;
}

/* ============================================================
   LEGACY FORM SUPPORT (forms.html)
   ============================================================ */
.form-bg {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forms {
    margin-top: 50px;
    width: 90%;
    height: auto;
    padding-bottom: 20px;
    margin-bottom: 50px;
    background-color: var(--bg-card);
}

.form {
    margin-top: 50px;
    width: 90%;
    height: auto;
    padding-bottom: 20px;
    margin-bottom: 50px;
    background-color: var(--bg-card);
    box-shadow: 0 0 5px var(--accent);
}

.divider {
    border-bottom: 5px solid var(--accent);
    width: 30%;
    margin: 0 auto 10px;
}

.form-text,
.offer {
    font-size: x-large;
    font-weight: bold;
    color: var(--accent);
    text-align: center;
    padding-top: 10px;
}

@media screen and (min-width: 768px) {

    .forms,
    .form {
        width: 35%;
        margin-top: 150px;
        margin-bottom: 50px;
    }
}

.invest {
    box-shadow: 0 0 5px var(--accent);
    padding: 20px 30px;
    margin: 20px auto;
    width: 90%;
}

.invest h1 {
    font-size: xx-large;
    font-weight: bolder;
    padding-top: 10px;
}

.invest h4 {
    font-size: large;
    font-weight: bolder;
}

.invest p {
    padding-top: 10px;
}

.invest li {
    list-style: square;
    padding-top: 10px;
    text-align: start;
}

.invest ul {
    margin: 10px 30px;
    padding-top: 10px;
}

.normal li {
    list-style: disc;
    padding-top: 10px;
    text-align: start;
}

.normal ul {
    margin: 10px 30px;
    padding-top: 10px;
}

.custombtn {
    background-color: var(--accent);
    color: white;
}

.custombtn:hover {
    background-color: var(--accent-hover);
    color: white;
}

/* Form input fields */
#id_email,
#id_first_name,
#id_last_name,
#id_mobile_number,
#id_btc_wallet_address,
#id_eth_wallet_address,
#id_usdt_trc20_wallet_address,
#id_country,
#id_password1,
#id_password2,
#id_username,
#id_password,
#id_new_password1,
#id_new_password2,
#id_payment_option,
#id_amount,
#id_memo,
#select,
#amount,
#username {
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-input);
    color: var(--text-primary);
    border-radius: 5px;
    padding-left: 30px;
    height: 40px;
    transition: border-color .2s, background .3s;
    outline: none;
}

#id_email:focus,
#id_first_name:focus,
#id_last_name:focus,
#id_password:focus,
#id_password1:focus,
#id_password2:focus,
#id_username:focus,
#id_new_password1:focus,
#id_new_password2:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

#eyes1,
#eyes2 {
    position: absolute;
    right: 15px;
    bottom: 10px;
}

@media screen and (min-width: 1025px) {

    #eyes1,
    #eyes2 {
        right: 25px;
    }
}

/* ============================================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================================ */

/* Improve touch targets on mobile */
@media (max-width: 768px) {

    .sidebar-link,
    .quick-action,
    .dropdown-item,
    .btn,
    .action-btn,
    .nav-icon-btn,
    .theme-toggle {
        min-height: 44px;
    }

    .sidebar-link {
        padding: 12px;
    }

    .quick-action {
        padding: 12px 8px;
    }
}

/* Better table responsiveness for transaction pages */
@media (max-width: 768px) {
    .responsive-table {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}

/* Ensure modals and dropdowns don't overflow */
@media (max-width: 480px) {
    .dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
    }

    .dropdown.open .dropdown-menu {
        transform: translateY(0);
    }

    .avatar-dropdown-menu {
        bottom: auto;
        top: calc(100% + 10px);
    }
}

/* Ensure canvas elements scale properly */
canvas,
svg {
    max-width: 100%;
    height: auto;
}

/* Safe area insets for modern mobile devices */
@supports (padding: max(0px)) {
    .main-content {
        padding-left: max(28px, env(safe-area-inset-left));
        padding-right: max(28px, env(safe-area-inset-right));
    }

    @media (max-width: 767px) {
        .main-content {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }
}


/* ============================================================
   BOOTSTRAP 5 INTEGRATION PATCH
   Append this to the bottom of custom.css
   ============================================================ */

/* ── Reset Bootstrap's body/font overrides to use our vars ── */
body {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    color: var(--text-primary) !important;
    background-color: var(--bg-base) !important;
}

/* ── Neutralise Bootstrap's .navbar default bg/border ── */
.navbar {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    flex-wrap: nowrap;
}

/* ── Bootstrap .container-fluid padding already handled
      by our .main-content padding, so zero it out ── */
.main-content .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* ── Bootstrap row uses negative margins; keep our gap ── */
.row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

/* ── Override Bootstrap .dropdown-item to use our styles ── */
.apex-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: var(--text-primary);
    font-size: 13.5px;
    font-family: var(--font-sans);
    background: transparent;
    border: 0;
    width: 100%;
    padding-bottom:10px !important;
    clear: both;
    transition: var(--transition-fast);
}

.apex-dropdown .dropdown-item:hover,
.apex-dropdown .dropdown-item:focus {
    background: var(--bg-input) !important;
    color: var(--accent) !important;
}

.apex-dropdown .dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    flex-shrink: 0;
}

.apex-dropdown .dropdown-item:hover i,
.apex-dropdown .dropdown-item:focus i {
    color: var(--accent);
}

/* ── Keep our custom dropdown-menu style (not BS default) ── */
.apex-dropdown.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    min-width: 280px;
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    overflow: hidden;
    display: block !important;
    /* override BS show/hide with our open class */
}

.dropdown.open .apex-dropdown.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ── Bootstrap .border-bottom uses wrong color in dark mode ── */
[data-theme="dark"] .border-bottom {
    border-color: var(--border-subtle) !important;
}

/* ── Account Summary status badges ── */
.apex-status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.apex-status-badge.success {
    background: var(--success-light);
    color: var(--success);
}

.apex-status-badge.warning {
    background: var(--warning-light);
    color: var(--warning);
}

.apex-status-badge.danger {
    background: var(--danger-light);
    color: var(--danger);
}

/* ── Quick action grid: use Bootstrap cols now, remove old grid ── */
.quick-actions {
    display: contents;
    /* let Bootstrap row/col handle layout */
}

/* ── Fix h-100 on stat cards ── */
.stat-card.h-100 {
    display: flex;
    flex-direction: column;
}

/* ── gap-3 utility (Bootstrap 5 uses CSS gap too, this is safe) ── */
.gap-3 {
    gap: 1rem !important;
}

/* ── Responsive: collapse search on smaller screens ── */
@media (max-width: 991px) {
    .header-search {
        display: none !important;
    }
}

/* ============================================================
   APEXFORTITUDE — responsive_fix.css
   Paste this at the VERY BOTTOM of custom.css
   ============================================================ */

/* ── Ensure stat cards always stack on small screens ── */
@media (max-width: 575px) {
    .row.g-3>[class*="col-12"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Two-column quick-actions become 2-col on mobile too */
    .row.g-2>.col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}

/* ── Welcome row: stack vertically on mobile ── */
@media (max-width: 600px) {
    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .welcome-actions {
        width: 100%;
    }

    .welcome-actions .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .welcome-greeting {
        font-size: 20px;
    }
}

/* ── Stat cards: fix overflow and enforce single column ── */
@media (max-width: 575px) {
    .stat-card {
        width: 100%;
        box-sizing: border-box;
    }

    .stat-value {
        font-size: 22px !important;
    }

    .earning-row {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* ── Header: tighten up on mobile ── */
@media (max-width: 575px) {
    .app-header {
        padding: 0 12px;
    }

    .navbar-nav {
        gap: 2px;
    }

    /* Hide search icon button on very small screens */
    .header-search {
        display: none !important;
    }

    /* Shrink theme toggle and nav buttons */
    .theme-toggle,
    .nav-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    /* Avatar slightly smaller */
    .avatar-btn img {
        width: 30px;
        height: 30px;
    }

    /* Hamburger tighter */
    .hamburger {
        width: 34px;
        height: 34px;
        margin-right: 6px;
    }
}

/* ── Verify banner: stack on mobile ── */
@media (max-width: 575px) {
    .verify-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px;
    }

    .verify-banner-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* ── Investment card: reduce padding, keep timer centered ── */
@media (max-width: 575px) {
    .invest-card {
        padding: 18px 14px;
    }

    .timer-wrap {
        width: 170px;
        height: 170px;
    }

    .timer-wrap svg {
        width: 170px;
        height: 170px;
    }

    #time {
        font-size: 13px;
    }

    .info-strip {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* ── Quick panel / account summary on mobile ── */
@media (max-width: 575px) {
    .quick-panel {
        padding: 16px 14px;
    }

    .quick-action {
        padding: 12px 6px;
    }

    .quick-action-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .quick-action-label {
        font-size: 11px;
    }
}

/* ── Ticker card: prevent overflow ── */
@media (max-width: 575px) {
    .ticker-card {
        overflow: hidden;
    }

    .ticker-header {
        padding: 10px 14px;
        font-size: 11px;
    }
}

/* ── Dropdown menus: slide up from bottom on mobile ── */
@media (max-width: 575px) {

    #notifMenu,
    #profileMenu {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 1 !important;
        visibility: hidden;
    }

    .dropdown.open #notifMenu,
    .dropdown.open #profileMenu {
        transform: translateY(0) !important;
        visibility: visible;
    }

    /* Notif menu scroll area */
    #notifMenu>div[style*="max-height"] {
        max-height: 55vh !important;
    }
}

/* ── Pulse/gift button: hide behind sidebar on mobile ── */
@media (max-width: 1199px) {
    .pulse-circle {
        left: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* ── Sidebar footer on mobile: prevent overflow ── */
@media (max-width: 575px) {
    .sidebar-user-name {
        font-size: 12px;
    }

    .sidebar-user-role {
        font-size: 10px;
    }
}

/* ── Main content padding: tighter on phone ── */
@media (max-width: 400px) {
    .main-content {
        padding: 10px !important;
    }

    .app-header {
        padding: 0 10px !important;
    }
}

/* ── Prevent any horizontal scroll ── */
body,
.page-wrapper,
.body-wrapper,
.main-content {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ── Fix Bootstrap col overflow when inside .row with negative margins ── */
.main-content .row {
    margin-left: 0;
    margin-right: 0;
}

.main-content .row>* {
    padding-left: 9px;
    padding-right: 9px;
}