/* =====================================================
   ROOT / DESIGN TOKENS
===================================================== */

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #ede9fe;

    --background: #f6f7fb;
    --surface: #ffffff;
    --surface-soft: #fafafa;

    --text: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    --border: #e5e7eb;

    --success: #16a34a;
    --success-bg: #ecfdf3;

    --danger: #dc2626;
    --danger-bg: #fef2f2;

    --sidebar-width: 245px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}


/* =====================================================
   DARK THEME TOKENS
===================================================== */

html[data-theme="dark"] {
    --primary: #9b5cff;
    --primary-dark: #b27aff;
    --primary-light: #2a1b40;

    --background: #100d16;
    --surface: #18131f;
    --surface-soft: #211b2a;

    --text: #f4f1f8;
    --text-secondary: #d0c9d8;
    --text-muted: #a39aaa;

    --border: #30283a;

    --success: #3bc793;
    --success-bg: #142f27;

    --danger: #f06a80;
    --danger-bg: #321a22;
}


/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   GLOBAL INTERACTION / ACCESSIBILITY
===================================================== */

a,
button {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(124, 58, 237, 0.25);
    outline-offset: 2px;
}

::selection {
    background: var(--primary-light);
    color: var(--primary-dark);
}

[hidden] {
    display: none !important;
}


/* =====================================================
   GLOBAL WIDTH / OVERFLOW SAFETY
===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
}



/* =====================================================
   APP / PAGE FOUNDATION
===================================================== */

.app {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.main {
    position: relative;
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    margin-left: var(--sidebar-width);
    max-width: none;
    min-width: 0;
    overflow-x: hidden;
}

/* Keep top-level sections inside the main content area */
.main > section {
    width: auto;
    min-width: 0;
}

/* Prevent flex/grid children from forcing horizontal overflow */
.main > *,
.main section,
.main article,
.main div {
    min-width: 0;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);

    display: flex;
    flex-direction: column;

    padding: 28px 18px;

    background: var(--surface);
    border-right: 1px solid var(--border);

    z-index: 100;

    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}


/* =====================================================
   SIDEBAR LOGO
===================================================== */

.sidebar-logo,
.mobile-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--primary);
    color: #ffffff;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary);
}


/* =====================================================
   SIDEBAR NAVIGATION
===================================================== */

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-top: 55px;
}

.nav-item {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 12px 13px;

    border-radius: 12px;

    background: transparent;
    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 600;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.nav-item:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-icon {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.nav-icon svg {
    width: 19px;
    height: 19px;
}


/* =====================================================
   SIDEBAR BOTTOM ACTIONS
===================================================== */

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-top: auto;
    padding-top: 30px;
}

.sidebar-login,
.sidebar-register {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;
    padding: 11px 12px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.sidebar-login {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.sidebar-login:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
}

.sidebar-register {
    background: var(--primary);
    color: #ffffff;
}

.sidebar-register:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* =====================================================
   SIDEBAR SCROLLBAR
===================================================== */

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}


/* =====================================================
   TABLET SIDEBAR
===================================================== */

@media (max-width: 1100px) {
    :root {
        --sidebar-width: 220px;
    }
}


/* =====================================================
   MOBILE SIDEBAR
===================================================== */

@media (max-width: 768px) {
    .sidebar {
        display: none !important;
    }
}



/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;

    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 38px;

    background: rgba(246, 247, 251, 0.90);
    border-bottom: 1px solid rgba(229, 231, 235, 0.55);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    min-width: 0;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-right: 10px;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--surface);
    color: var(--text);

    cursor: pointer;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.mobile-menu-button:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
}

.mobile-menu-button:active {
    transform: scale(0.96);
}

.mobile-menu-button svg {
    width: 19px;
    height: 19px;
}

.mobile-logo {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 14px;

    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 700;

    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.header-login:hover {
    color: var(--text);
}

.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 10px 16px;

    border-radius: 10px;

    background: var(--primary);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.header-register:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.profile-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--surface);
    color: var(--text-secondary);

    cursor: pointer;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.profile-button:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
    color: var(--text);
}

.profile-button:active {
    transform: scale(0.96);
}

.profile-button svg {
    width: 19px;
    height: 19px;
}


/* =====================================================
   QUICK ACTIONS
===================================================== */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    margin: 22px 38px 0;
}

.quick-action {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 18px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.quick-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: #dcdfe5;
}

.quick-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;
}

.quick-icon svg {
    width: 19px;
    height: 19px;
}

.buy-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.trade-icon {
    background: var(--success-bg);
    color: var(--success);
}

.quick-action strong {
    display: block;
    min-width: 0;

    margin-bottom: 3px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.quick-action span {
    display: block;
    min-width: 0;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.quick-arrow {
    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-left: auto;

    color: var(--text-muted);

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.quick-action:hover .quick-arrow {
    color: var(--primary);
    transform: translateX(2px);
}

.quick-arrow svg {
    width: 16px;
    height: 16px;
}


/* =====================================================
   CRYPTO SECTION
===================================================== */

.crypto-section {
    width: auto;
    margin: 38px 38px 0;
    min-width: 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 18px;
    min-width: 0;
}

.section-label {
    display: block;

    margin-bottom: 6px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1.3;
}

.section-heading h2 {
    min-width: 0;

    color: var(--text);

    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    flex-shrink: 0;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.view-all:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

.view-all svg {
    width: 14px;
    height: 14px;
}

.crypto-grid {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


/* =====================================================
   CRYPTO CARD
===================================================== */

.crypto-card {
    position: relative;

    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    min-height: 215px;
    padding: 18px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 3px 14px rgba(17, 24, 39, 0.035);

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.crypto-card:hover {
    transform: translateY(-3px);
    border-color: #ddd6fe;

    box-shadow:
        0 12px 28px rgba(17, 24, 39, 0.07);
}


/* =====================================================
   CRYPTO CARD HEADER
===================================================== */

.crypto-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    min-width: 0;
    margin-bottom: 20px;
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 0;
}

.crypto-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: var(--surface-soft);
    border: 1px solid var(--border);

    overflow: hidden;
}

.crypto-icon img {
    width: 25px;
    height: 25px;

    display: block;

    object-fit: contain;
}

.crypto-icon i {
    font-size: 18px;
    color: var(--primary);
}

.crypto-name {
    min-width: 0;
}

.crypto-name strong {
    display: block;

    max-width: 100%;
    overflow: hidden;

    color: var(--text);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.crypto-name span {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.2;

    text-transform: uppercase;
}


/* =====================================================
   FAVORITE BUTTON
===================================================== */

.favorite-button {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
    padding: 0;

    border: 1px solid transparent;
    border-radius: 10px;

    background: transparent;
    color: var(--text-muted);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.favorite-button:hover,
.favorite-button.active {
    background: var(--primary-light);
    border-color: #ddd6fe;
    color: var(--primary);
}

.favorite-button:active {
    transform: scale(0.9);
}

.favorite-button svg {
    width: 16px;
    height: 16px;
}


/* =====================================================
   CRYPTO PRICE
===================================================== */

.crypto-price {
    min-width: 0;
    margin-bottom: 18px;
}

.crypto-price strong {
    display: block;

    overflow: hidden;

    color: var(--text);

    font-size: 22px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.8px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.crypto-price span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-top: 7px;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.crypto-price .positive {
    color: var(--success);
}

.crypto-price .negative {
    color: var(--danger);
}


/* =====================================================
   CRYPTO CARD FOOTER
===================================================== */

.crypto-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: auto;
    padding-top: 13px;

    border-top: 1px solid var(--border);
}

.crypto-card-label {
    min-width: 0;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
}

.crypto-card-value {
    max-width: 55%;
    min-width: 0;

    overflow: hidden;

    color: var(--text-secondary);

    font-size: 9px;
    font-weight: 750;
    line-height: 1.3;

    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =====================================================
   CRYPTO ACTION
===================================================== */

.crypto-action {
    width: 100%;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 14px;
    padding: 10px 14px;

    border-radius: 11px;

    background: var(--primary);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.crypto-action:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(124, 58, 237, 0.18);
}

.crypto-action:active {
    transform: translateY(0);
    box-shadow: none;
}

.crypto-action svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}


/* =====================================================
   CRYPTO CARD TABLET
===================================================== */

@media (max-width: 900px) {
    .crypto-card {
        padding: 16px;
    }

    .crypto-price strong {
        font-size: 20px;
    }
}


/* =====================================================
   CRYPTO CARD MOBILE
===================================================== */

@media (max-width: 768px) {
    .crypto-card {
        min-height: 0;
        padding: 15px;
        border-radius: 16px;

        box-shadow:
            0 2px 10px rgba(17, 24, 39, 0.035);
    }

    .crypto-card-header {
        margin-bottom: 15px;
    }

    .crypto-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .crypto-icon img {
        width: 22px;
        height: 22px;
    }

    .crypto-name strong {
        font-size: 12px;
    }

    .crypto-price {
        margin-bottom: 14px;
    }

    .crypto-price strong {
        font-size: 19px;
    }

    .crypto-action {
        min-height: 38px;
        margin-top: 12px;
    }
}


/* =====================================================
   QUICK ACTION DESKTOP SIZE
===================================================== */

@media (min-width: 769px) {
    .quick-action {
        min-height: 76px;
    }
}

/* =====================================================
   PLATFORM SECTION
===================================================== */

.platform-section {
    width: auto;
    margin: 38px 38px 0;
    min-width: 0;
}

.platform-card {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 28px 30px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.platform-card:hover {
    border-color: #dcdfe5;
    box-shadow: var(--shadow-md);
}

.platform-content {
    position: relative;
    z-index: 1;

    min-width: 0;
    max-width: 620px;
}

.platform-label {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    line-height: 1.3;

    text-transform: uppercase;
}

.platform-content h3 {
    margin: 0 0 8px;

    color: var(--text);

    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.6px;
}

.platform-content p {
    max-width: 560px;

    color: var(--text-secondary);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
}

.platform-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    flex-shrink: 0;

    margin-top: 18px;
    min-height: 40px;
    padding: 10px 15px;

    border-radius: 10px;

    background: var(--primary);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.platform-action:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);

    box-shadow:
        0 6px 16px rgba(124, 58, 237, 0.18);
}

.platform-action:active {
    transform: translateY(0);
}

.platform-action svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.platform-visual {
    position: relative;

    width: 180px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 20px;

    background: var(--primary-light);
    color: var(--primary);

    overflow: hidden;
}

.platform-visual::before,
.platform-visual::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 50%;
}

.platform-visual::before {
    width: 120px;
    height: 120px;
}

.platform-visual::after {
    width: 75px;
    height: 75px;
}

.platform-visual svg {
    position: relative;
    z-index: 1;

    width: 34px;
    height: 34px;

    stroke-width: 1.5;
}


/* =====================================================
   PLATFORM TABLET
===================================================== */

@media (max-width: 900px) {
    .platform-card {
        gap: 20px;
        padding: 24px;
    }

    .platform-content {
        max-width: 100%;
    }

    .platform-visual {
        width: 145px;
        height: 100px;
    }
}


/* =====================================================
   PLATFORM MOBILE
===================================================== */

@media (max-width: 768px) {
    .platform-section {
        margin: 28px var(--mobile-padding) 0;
    }

    .platform-card {
        min-height: 0;

        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 16px;

        padding: 20px;

        border-radius: 18px;
    }

    .platform-visual {
        order: -1;

        width: 100%;
        height: 105px;

        border-radius: 16px;
    }

    .platform-content h3 {
        font-size: 19px;
    }

    .platform-content p {
        font-size: 11px;
        line-height: 1.65;
    }

    .platform-action {
        width: 100%;
        margin-top: 16px;
    }
}


/* =====================================================
   PLATFORM SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .platform-card {
        padding: 17px;
        border-radius: 16px;
    }

    .platform-visual {
        height: 95px;
    }

    .platform-content h3 {
        font-size: 18px;
    }
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    width: auto;

    margin: 45px 38px 0;
    padding: 28px 0 35px;

    border-top: 1px solid var(--border);

    color: var(--text-secondary);
}

.footer-content {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
}

.footer-brand {
    min-width: 0;
    max-width: 330px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);

    font-size: 11px;
    font-weight: 500;
    line-height: 1.7;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;

    margin-left: auto;

    white-space: nowrap;
}

.footer-right span,
.footer-right a {
    color: var(--text-muted);

    font-size: 10px;
    line-height: 1.4;
}

.footer-right span {
    font-weight: 500;
}

.footer-right a {
    font-weight: 600;

    transition: color var(--transition-fast);
}

.footer-right a:hover {
    color: var(--primary);
}


/* Optional footer link groups */
.footer-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-links a {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.footer-bottom span,
.footer-bottom a {
    color: var(--text-muted);

    font-size: 10px;
}

.footer-bottom a {
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--primary);
}


/* =====================================================
   FOOTER TABLET
===================================================== */

@media (max-width: 900px) {
    .footer {
        margin-left: 25px;
        margin-right: 25px;
    }
}


/* =====================================================
   FOOTER MOBILE
===================================================== */

@media (max-width: 768px) {
    .footer {
        margin: 32px var(--mobile-padding) 0;
        padding-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-right {
        width: 100%;

        justify-content: space-between;

        margin-left: 0;
    }

    .footer-links {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px 20px;
    }

    .footer-bottom {
        width: 100%;

        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }
}


/* =====================================================
   FOOTER SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .footer {
        margin-top: 28px;
    }

    .footer-right {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* =====================================================
   HERO / DYNAMIC BANNER SYSTEM
===================================================== */

.hero {
    position: relative;

    width: auto;
    height: 330px;
    min-height: 330px;

    margin: 12px 38px 0;

    border-radius: var(--radius-xl);

    background: #171717;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.hero-slider {
    position: relative;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    opacity: 0;
    visibility: hidden;

    overflow: hidden;

    background: #171717;

    isolation: isolate;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}


/* =====================================================
   HERO LAYOUT FOUNDATION
===================================================== */

.hero-banner-layout {
    position: relative;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    box-sizing: border-box;

    overflow: hidden;
}

.hero-layout-left_right {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 30px;

    padding: 35px 40px;
}

.hero-layout-center {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 30px 40px;
}

.hero-layout-three_column {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: center;

    gap: 20px;

    padding: 25px 30px;
}

.hero-layout-left_icon_right_image {
    display: grid;

    grid-template-columns:
        120px
        minmax(0, 1fr);

    align-items: center;

    gap: 25px;

    padding: 30px 40px;
}

.hero-layout-custom {
    display: flex;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 100%;

    align-items: stretch;
    justify-content: stretch;

    gap: 25px;

    flex-wrap: nowrap;
}


/* =====================================================
   HERO LAYOUT CHILD SAFETY
===================================================== */

.hero-layout-left_right > .hero-banner-element,
.hero-layout-three_column > .hero-banner-element,
.hero-layout-left_icon_right_image > .hero-banner-element,
.hero-layout-custom > .hero-banner-element {
    min-width: 0;
    min-height: 0;
    max-width: 100%;
}


/* =====================================================
   HERO ELEMENT FOUNDATION
===================================================== */

.hero-banner-element {
    position: relative;

    min-width: 0;
    min-height: 0;

    max-width: 100%;
    max-height: 100%;

    box-sizing: border-box;

    order: var(--element-order, 0);

    animation-duration:
        var(--element-duration, 600ms);

    animation-delay:
        var(--element-delay, 0ms);
}


/* =====================================================
   HERO IMAGE ELEMENT
===================================================== */

.hero-element-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-sizing: border-box;
}

.hero-banner-image {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    margin: 0;
    padding: 0;

    flex: 0 1 auto;
}


/* =====================================================
   HERO POSITIONING
===================================================== */

.hero-position-left {
    justify-content: flex-start;
}

.hero-position-center {
    justify-content: center;
}

.hero-position-right {
    justify-content: flex-end;
}

.hero-position-top {
    align-items: flex-start;
}

.hero-position-bottom {
    align-items: flex-end;
}


/* =====================================================
   HERO TEXT
===================================================== */

.hero-element-text {
    position: relative;

    max-width: 100%;
    min-width: 0;

    color: #ffffff;

    word-break: break-word;
    overflow-wrap: anywhere;
}

.hero-banner-text {
    max-width: 100%;
}


/* =====================================================
   HERO ICON
===================================================== */

.hero-element-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;

    font-size: 48px;
    line-height: 1;
}


/* =====================================================
   HERO BUTTON
===================================================== */

.hero-element-button {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 0;

    flex-shrink: 0;
}

.hero-button {
    width: fit-content;

    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 17px;

    border-radius: 10px;

    background: #ffffff;
    color: var(--text);

    font-size: 13px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
    text-decoration: none;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.hero-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.15);
}

.hero-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* =====================================================
   FULL-BLEED SINGLE IMAGE BANNERS
===================================================== */

/*
   A single image banner should not inherit the padding
   belonging to text/content layouts.

   This makes the image fill the entire hero box.
*/

.hero-banner-layout:has(
    > .hero-single-element.hero-element-image
) {
    display: block;
    padding: 0;
}

.hero-banner-layout:has(
    > .hero-single-element.hero-element-image
) > .hero-single-element.hero-element-image {
    width: 100%;
    height: 100%;

    display: block;
}

.hero-banner-layout:has(
    > .hero-single-element.hero-element-image
) .hero-banner-image {
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: center;
}


/* =====================================================
   HERO ANIMATIONS
===================================================== */

.hero-animation-none {
    animation: none;
}

.hero-animation-fade {
    animation-name: heroElementFade;
}

.hero-animation-slide_left {
    animation-name: heroElementSlideLeft;
}

.hero-animation-slide_right {
    animation-name: heroElementSlideRight;
}

.hero-animation-slide_up {
    animation-name: heroElementSlideUp;
}

.hero-animation-slide_down {
    animation-name: heroElementSlideDown;
}

.hero-animation-zoom {
    animation-name: heroElementZoom;
}

.hero-animation-zoom_out {
    animation-name: heroElementZoomOut;
}

@keyframes heroElementFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroElementSlideLeft {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroElementSlideRight {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroElementSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroElementSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroElementZoom {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroElementZoomOut {
    from {
        opacity: 0;
        transform: scale(1.15);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =====================================================
   HERO SLIDER CONTROLS
===================================================== */

.slider-controls {
    position: absolute;

    right: 25px;
    bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    z-index: 10;
}

.slider-controls > button {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        border-color var(--transition-fast);
}

.slider-controls > button:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.20);
}

.slider-controls > button:active {
    transform: scale(0.92);
}

.slider-controls > button svg {
    width: 16px;
    height: 16px;
}

.slider-dots {
    height: 32px;

    display: flex;

    align-items: center;

    gap: 5px;
}

.slider-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.40);

    cursor: pointer;

    transition:
        width var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.70);
}

.slider-dot.active {
    width: 18px;

    border-radius: 10px;

    background: #ffffff;
}


/* =====================================================
   HERO LARGE DESKTOP
===================================================== */

@media (min-width: 1201px) {
    .hero {
        height: 340px;
        min-height: 340px;

        margin-left: 40px;
        margin-right: 40px;
    }

    .hero-layout-left_right {
        gap: 32px;
        padding-left: 42px;
        padding-right: 42px;
    }

    .hero-layout-left_icon_right_image {
        padding-left: 42px;
        padding-right: 42px;
    }
}


/* =====================================================
   HERO TABLET / SMALL DESKTOP
===================================================== */

@media (min-width: 769px) and (max-width: 1200px) {
    .hero {
        height: 310px;
        min-height: 310px;

        margin-left: 28px;
        margin-right: 28px;
    }

    .hero-layout-left_right {
        gap: 22px;
        padding: 30px;
    }

    .hero-layout-center {
        padding: 26px 30px;
    }

    .hero-layout-three_column {
        gap: 15px;
        padding: 24px;
    }

    .hero-layout-left_icon_right_image {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 20px;
        padding: 26px 30px;
    }

    .hero-layout-custom {
        gap: 18px;
    }
}


/* =====================================================
   HERO <= 900px
===================================================== */

@media (max-width: 900px) {
    .hero {
        height: 285px;
        min-height: 285px;
    }

    .hero-layout-left_right {
        gap: 18px;
        padding: 26px 28px;
    }

    .hero-layout-center {
        padding: 24px 28px;
    }

    .hero-layout-three_column {
        gap: 12px;
        padding: 22px 24px;
    }

    .hero-layout-left_icon_right_image {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 28px;
    }

    .hero-layout-custom {
        gap: 15px;
    }
}


/* =====================================================
   HERO MOBILE
===================================================== */

@media (max-width: 768px) {
    :root {
        --mobile-padding: 16px;
        --mobile-nav-height: 68px;
    }

    .hero {
        height: 235px;
        min-height: 235px;

        margin: 14px var(--mobile-padding) 0;

        border-radius: 19px;
    }

    .hero-layout-left_right {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;

        padding: 20px var(--mobile-padding);
    }

    .hero-layout-center {
        display: flex;

        flex-direction: column;

        gap: 10px;

        padding: 20px var(--mobile-padding);
    }

    .hero-layout-three_column {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 8px;

        padding: 18px var(--mobile-padding);
    }

    .hero-layout-left_icon_right_image {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;

        padding: 20px var(--mobile-padding);
    }

    .hero-layout-custom {
        display: flex;

        flex-direction: column;

        align-items: stretch;
        justify-content: center;

        gap: 10px;

        padding: 18px var(--mobile-padding);

        flex-wrap: nowrap;
    }

    .hero-banner-element {
        width: 100%;
        max-width: 100%;
    }

    .hero-element-icon {
        font-size: 34px;
    }

    .hero-banner-image {
        max-width: 100%;
        max-height: 100%;
    }

    .hero-button {
        min-height: 38px;
        padding: 10px 14px;

        font-size: 11px;
    }

    .slider-controls {
        right: 14px;
        bottom: 13px;
    }
}


/* =====================================================
   HERO SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    :root {
        --mobile-padding: 14px;
        --mobile-nav-height: 66px;
    }

    .hero {
        height: 215px;
        min-height: 215px;

        border-radius: 17px;
    }

    .hero-layout-left_right,
    .hero-layout-center,
    .hero-layout-three_column,
    .hero-layout-left_icon_right_image,
    .hero-layout-custom {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
    }

    .hero-banner-image {
        max-height: 85px;
    }

    .hero-element-text {
        font-size: 12px;
    }

    .hero-element-icon {
        font-size: 28px;
    }

    .hero-button {
        min-height: 34px;
        padding: 8px 12px;

        font-size: 10px;
    }

    .slider-controls {
        right: 11px;
        bottom: 10px;
    }

    .slider-controls > button {
        width: 29px;
        height: 29px;
    }
}


/* =====================================================
   HERO VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {
    .hero {
        height: 200px;
        min-height: 200px;
    }

    .hero-banner-image {
        max-height: 75px;
    }

    .hero-element-text {
        font-size: 11px;
    }

    .hero-element-icon {
        font-size: 25px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }

    .hero-banner-element {
        animation: none !important;
    }

    .slider-dot,
    .slider-controls > button {
        transition: none;
    }
}

/* =====================================================
   BUTTONS / INTERACTIONS
===================================================== */

.btn-primary,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 10px 17px;

    border: 1px solid transparent;
    border-radius: 11px;

    background: var(--primary);
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn-primary:hover,
.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(124, 58, 237, 0.18);
}

.btn-primary:active,
.primary-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary svg,
.primary-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* =====================================================
   SECONDARY BUTTON
===================================================== */

.btn-secondary,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 10px 17px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: var(--surface);
    color: var(--text);

    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.btn-secondary:hover,
.secondary-button:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.btn-secondary:active,
.secondary-button:active {
    transform: translateY(0);
}


/* =====================================================
   TEXT LINK
===================================================== */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.text-link:hover {
    color: var(--primary-dark);
    transform: translateX(1px);
}


/* =====================================================
   ICON BUTTON
===================================================== */

.icon-button {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--surface);
    color: var(--text-secondary);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.icon-button:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
    color: var(--text);
}

.icon-button:active {
    transform: scale(0.95);
}

.icon-button svg {
    width: 18px;
    height: 18px;
}


/* =====================================================
   DISABLED BUTTONS
===================================================== */

button:disabled,
.btn-primary:disabled,
.primary-button:disabled,
.btn-secondary:disabled,
.secondary-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}


/* =====================================================
   LOADING BUTTON
===================================================== */

.btn-primary.is-loading,
.primary-button.is-loading,
.btn-secondary.is-loading,
.secondary-button.is-loading {
    pointer-events: none;
}

.btn-primary.is-loading::after,
.primary-button.is-loading::after,
.btn-secondary.is-loading::after,
.secondary-button.is-loading::after {
    content: "";

    width: 14px;
    height: 14px;

    margin-left: 7px;

    border: 2px solid currentColor;
    border-right-color: transparent;

    border-radius: 50%;

    animation: buttonSpinner 0.7s linear infinite;
}

@keyframes buttonSpinner {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-primary.is-loading::after,
    .primary-button.is-loading::after,
    .btn-secondary.is-loading::after,
    .secondary-button.is-loading::after {
        animation: none;
    }
}
/* =====================================================
   AUTHENTICATION
===================================================== */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(124, 58, 237, 0.08),
            transparent 35%
        ),
        var(--background);

    overflow-x: hidden;
}

.auth-container {
    width: 100%;
    max-width: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 22px;
}

.auth-card {
    width: 100%;

    padding: 38px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}

.auth-register-card {
    max-width: 100%;
}


/* =====================================================
   AUTH HEADER
===================================================== */

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-bottom: 30px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    color: var(--text);
    text-decoration: none;
}

.auth-logo .logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--primary);
    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.auth-logo .logo-text {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.auth-logo .logo-text span {
    color: var(--primary);
}

.auth-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.auth-header h1 {
    margin: 0;

    color: var(--text);

    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.auth-header p {
    max-width: 390px;

    margin: 10px 0 0;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   AUTH ALERTS
===================================================== */

.auth-alert {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 22px;
    padding: 14px 15px;

    border: 1px solid transparent;
    border-radius: 13px;
}

.auth-alert-error {
    background: var(--danger-bg);
    border-color: rgba(220, 38, 38, 0.16);
    color: var(--danger);
}

.auth-alert-success {
    background: var(--success-bg);
    border-color: rgba(22, 163, 74, 0.16);
    color: var(--success);
}

.auth-alert-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-top: 1px;
}

.auth-alert-icon i {
    font-size: 15px;
}

.auth-alert-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.auth-alert-content strong {
    color: inherit;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.auth-alert-content span {
    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   AUTH FORM
===================================================== */

.auth-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.auth-form-group {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.auth-form-label {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.auth-label-row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 8px;
}

.auth-label-row .auth-form-label {
    margin-bottom: 0;
}

.auth-optional {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;
}


/* =====================================================
   AUTH INPUTS
===================================================== */

.auth-input-wrapper {
    position: relative;

    width: 100%;
}

.auth-input {
    width: 100%;
    height: 48px;

    padding: 0 44px;

    border: 1px solid var(--border);
    border-radius: 12px;

    outline: none;

    background: var(--surface);
    color: var(--text);

    font-size: 13px;
    line-height: 1.4;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-input:hover {
    border-color: #d1d5db;
}

.auth-input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.10);
}

.auth-input-icon {
    position: absolute;

    left: 15px;
    top: 50%;

    width: 18px;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 14px;

    pointer-events: none;

    z-index: 1;
}

.auth-input:focus ~ .auth-input-icon {
    color: var(--primary);
}

.auth-password-input {
    padding-right: 48px;
}

.auth-password-toggle {
    position: absolute;

    top: 50%;
    right: 11px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    transform: translateY(-50%);

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: var(--text-muted);

    cursor: pointer;

    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}

.auth-password-toggle:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.auth-password-toggle:active {
    transform: translateY(-50%) scale(0.94);
}

.auth-password-toggle i {
    font-size: 14px;
}


/* =====================================================
   AUTH FIELD ERRORS
===================================================== */

.auth-field-error {
    display: block;

    min-height: 0;

    margin-top: 6px;

    color: var(--danger);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.auth-field-error:not(:empty) {
    min-height: 15px;
}

.auth-input.auth-invalid {
    border-color: var(--danger);

    box-shadow:
        0 0 0 3px rgba(220, 38, 38, 0.08);
}


/* =====================================================
   FORGOT PASSWORD
===================================================== */

.auth-forgot-link {
    flex-shrink: 0;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color var(--transition-fast);
}

.auth-forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/* =====================================================
   PASSWORD STRENGTH
===================================================== */

.auth-password-strength {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-top: 8px;
}

.auth-password-strength-bar {
    width: 100%;
    height: 4px;

    overflow: hidden;

    border-radius: 999px;

    background: var(--surface-soft);
}

.auth-password-strength-bar span {
    display: block;

    width: 0;
    height: 100%;

    border-radius: inherit;

    background: var(--primary);

    transition:
        width var(--transition-normal),
        background var(--transition-normal);
}

#passwordStrengthText {
    min-height: 14px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}


/* =====================================================
   TERMS CHECKBOX
===================================================== */

.auth-terms-group {
    width: 100%;

    display: flex;
    flex-direction: column;

    margin-top: -2px;
}

.auth-checkbox-label {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;
}

.auth-checkbox-label input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.auth-checkbox-custom {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-top: 1px;

    border: 1px solid var(--border);
    border-radius: 5px;

    background: var(--surface);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.auth-checkbox-custom::after {
    content: "";

    width: 9px;
    height: 5px;

    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(-45deg) scale(0);

    transition:
        transform var(--transition-fast);
}

.auth-checkbox-label input:checked + .auth-checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.auth-checkbox-label input:checked + .auth-checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

.auth-checkbox-label input:focus-visible + .auth-checkbox-custom {
    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.12);
}

.auth-checkbox-text {
    color: var(--text-secondary);

    font-size: 11px;
    line-height: 1.55;
}

.auth-checkbox-text a {
    color: var(--primary);
    font-weight: 700;

    text-decoration: none;
}

.auth-checkbox-text a:hover {
    text-decoration: underline;
}


/* =====================================================
   AUTH SUBMIT BUTTON
===================================================== */

.auth-submit-button {
    width: 100%;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 2px;
    padding: 12px 18px;

    border: 1px solid transparent;
    border-radius: 12px;

    background: var(--primary);
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.auth-submit-button:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(124, 58, 237, 0.20);
}

.auth-submit-button:active {
    transform: translateY(0);
}

.auth-submit-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-submit-button i {
    font-size: 12px;
}

.auth-submit-text {
    display: inline-flex;
    align-items: center;
}


/* =====================================================
   AUTH DIVIDER
===================================================== */

.auth-divider {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 12px;

    margin: 24px 0 14px;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.4;
}

.auth-divider::before,
.auth-divider::after {
    content: "";

    flex: 1;
    height: 1px;

    background: var(--border);
}

.auth-divider span {
    flex-shrink: 0;
}


/* =====================================================
   SECONDARY AUTH BUTTON
===================================================== */

.auth-secondary-button {
    width: 100%;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--surface);
    color: var(--text);

    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.auth-secondary-button:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;

    transform: translateY(-1px);
}

.auth-secondary-button:active {
    transform: translateY(0);
}


/* =====================================================
   AUTH FOOTER TEXT
===================================================== */

.auth-footer-text {
    margin: 18px auto 0;

    max-width: 400px;

    color: var(--text-muted);

    text-align: center;

    font-size: 10px;
    line-height: 1.6;
}

.auth-footer-text a {
    color: var(--text-secondary);
    font-weight: 700;

    text-decoration: none;
}

.auth-footer-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}


/* =====================================================
   BACK TO OXTRADE
===================================================== */

.auth-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: var(--text-secondary);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.auth-back-link:hover {
    color: var(--primary);

    transform: translateX(-2px);
}

.auth-back-link i {
    font-size: 11px;
}


/* =====================================================
   AUTH RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .auth-page {
        align-items: flex-start;

        padding: 30px 16px;
    }

    .auth-container {
        max-width: 500px;

        gap: 18px;
    }

    .auth-card {
        padding: 30px 24px;

        border-radius: 22px;
    }

    .auth-header {
        margin-bottom: 26px;
    }

    .auth-logo {
        margin-bottom: 20px;
    }

    .auth-header h1 {
        font-size: 26px;
    }

    .auth-header p {
        font-size: 13px;
    }
}


@media (max-width: 480px) {

    .auth-page {
        padding: 18px 12px 24px;
    }

    .auth-container {
        gap: 16px;
    }

    .auth-card {
        padding: 26px 18px;

        border-radius: 19px;
    }

    .auth-logo {
        margin-bottom: 18px;
    }

    .auth-logo .logo-mark {
        width: 35px;
        height: 35px;

        border-radius: 10px;

        font-size: 15px;
    }

    .auth-logo .logo-text {
        font-size: 19px;
    }

    .auth-label {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .auth-header h1 {
        font-size: 23px;
        letter-spacing: -0.5px;
    }

    .auth-header p {
        margin-top: 8px;

        font-size: 12px;
    }

    .auth-form {
        gap: 18px;
    }

    .auth-input {
        height: 46px;

        font-size: 12px;
    }

    .auth-input-icon {
        left: 14px;
    }

    .auth-password-toggle {
        right: 9px;
    }

    .auth-submit-button {
        min-height: 46px;
    }

    .auth-secondary-button {
        min-height: 44px;
    }

    .auth-divider {
        margin-top: 20px;
    }

    .auth-footer-text {
        font-size: 9px;
    }

    .auth-back-link {
        font-size: 11px;
    }
}


@media (max-width: 360px) {

    .auth-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .auth-card {
        padding: 23px 15px;
    }

    .auth-header h1 {
        font-size: 21px;
    }

    .auth-header p {
        font-size: 11px;
    }

    .auth-form-label {
        font-size: 12px;
    }

    .auth-input {
        height: 44px;

        padding-left: 41px;
        padding-right: 41px;
    }

    .auth-checkbox-text {
        font-size: 10px;
    }

    .auth-divider {
        gap: 8px;
    }

    .auth-divider span {
        font-size: 10px;
    }
}

/* =====================================================
   DARK THEME
===================================================== */

html[data-theme="dark"] .header {
    background: rgba(16, 13, 22, 0.90);
    border-bottom-color: rgba(48, 40, 58, 0.75);
}

html[data-theme="dark"] .mobile-menu-button,
html[data-theme="dark"] .profile-button,
html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .secondary-button,
html[data-theme="dark"] .auth-input,
html[data-theme="dark"] .auth-select,
html[data-theme="dark"] .auth-textarea,
html[data-theme="dark"] .auth-secondary {
    background: var(--surface);
}

html[data-theme="dark"] .sidebar-login {
    background: var(--surface);
}

html[data-theme="dark"] .sidebar-login:hover,
html[data-theme="dark"] .mobile-menu-button:hover,
html[data-theme="dark"] .profile-button:hover,
html[data-theme="dark"] .icon-button:hover,
html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .secondary-button:hover,
html[data-theme="dark"] .auth-secondary:hover {
    border-color: var(--border);
    background: var(--surface-soft);
}

html[data-theme="dark"] .auth-input:focus,
html[data-theme="dark"] .auth-select:focus,
html[data-theme="dark"] .auth-textarea:focus {
    background: var(--surface);
}

html[data-theme="dark"] .password-toggle:hover {
    background: var(--surface-soft);
}

html[data-theme="dark"] .crypto-card:hover,
html[data-theme="dark"] .quick-action:hover,
html[data-theme="dark"] .platform-card:hover {
    border-color: var(--border);
}

html[data-theme="dark"] .favorite-button:hover,
html[data-theme="dark"] .favorite-button.active {
    border-color: var(--border);
}

html[data-theme="dark"] .footer,
html[data-theme="dark"] .footer-bottom {
    border-color: var(--border);
}


/* =====================================================
   THEME TOGGLE
===================================================== */

.theme-toggle {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--surface);
    color: var(--text-secondary);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--surface-soft);
    border-color: var(--border);
    color: var(--text);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   RESPONSIVE LAYOUT FOUNDATION
===================================================== */

@media (max-width: 1100px) {
    .main {
        width: calc(100% - var(--sidebar-width));
        margin-left: var(--sidebar-width);
    }

    .header {
        padding-left: 28px;
        padding-right: 28px;
    }

    .quick-actions,
    .crypto-section,
    .platform-section {
        margin-left: 28px;
        margin-right: 28px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}


/* =====================================================
   LARGE DESKTOP SPACING
===================================================== */

@media (min-width: 1201px) {
    .header {
        padding-left: 40px;
        padding-right: 40px;
    }

    .quick-actions,
    .crypto-section,
    .platform-section {
        margin-left: 40px;
        margin-right: 40px;
    }

    .quick-actions {
        gap: 16px;
    }

    .crypto-grid {
        gap: 16px;
    }
}


/* =====================================================
   MOBILE FOUNDATION
===================================================== */

@media (max-width: 768px) {
    :root {
        --mobile-padding: 16px;
        --mobile-nav-height: 68px;
    }

    body {
        padding-bottom:
            calc(var(--mobile-nav-height) + 12px);
    }

    .app {
        width: 100%;
        min-height: 100vh;
    }

    .main {
        width: 100%;
        min-height: 100vh;

        margin-left: 0;
        padding-bottom: 10px;
    }

    .header {
        height: 62px;

        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);

        background: rgba(246, 247, 251, 0.96);

        border-bottom-color:
            rgba(229, 231, 235, 0.65);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        z-index: 80;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-logo {
        display: flex;
    }

    .mobile-logo .logo-mark {
        width: 32px;
        height: 32px;
    }

    .mobile-logo .logo-text {
        font-size: 18px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-login,
    .header-register {
        display: none;
    }

    .profile-button {
        width: 36px;
        height: 36px;

        border-radius: 10px;
    }

    .profile-button svg {
        width: 18px;
        height: 18px;
    }

    .quick-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;

        margin: 14px var(--mobile-padding) 0;
    }

    .quick-action {
        gap: 10px;
        padding: 13px 12px;

        border-radius: 14px;
    }

    .quick-icon {
        width: 36px;
        height: 36px;

        border-radius: 10px;
    }

    .quick-icon svg {
        width: 17px;
        height: 17px;
    }

    .quick-action strong {
        margin-bottom: 2px;
        font-size: 11px;
    }

    .quick-action span {
        font-size: 9px;
    }

    .quick-arrow {
        display: none;
    }

    .crypto-section {
        margin: 28px var(--mobile-padding) 0;
    }

    .section-heading {
        gap: 12px;
        margin-bottom: 14px;
    }

    .section-heading h2 {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .section-label {
        font-size: 9px;
    }

    .view-all {
        font-size: 10px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* =====================================================
   SMALL MOBILE FOUNDATION
===================================================== */

@media (max-width: 480px) {
    :root {
        --mobile-padding: 14px;
        --mobile-nav-height: 66px;
    }

    .header {
        height: 58px;
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
    }

    .mobile-logo .logo-mark {
        width: 30px;
        height: 30px;
    }

    .mobile-logo .logo-text {
        font-size: 17px;
    }

    .profile-button {
        width: 34px;
        height: 34px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .quick-action {
        min-height: 58px;
    }

    .crypto-section {
        margin-top: 25px;
    }

    .section-heading h2 {
        font-size: 19px;
    }
}


/* =====================================================
   GENERAL COMPONENT WIDTH SAFETY
===================================================== */

.app,
.main,
.header,
.hero,
.hero-slider,
.hero-slide,
.hero-banner-layout,
.quick-actions,
.crypto-section,
.crypto-grid,
.platform-section,
.platform-card,
.footer {
    max-width: 100%;
}

.main > *,
.main section,
.main article,
.main div,
.quick-action,
.crypto-card,
.platform-card,
.footer-content,
.footer-brand {
    min-width: 0;
}


/* =====================================================
   DESKTOP VISIBILITY
===================================================== */

@media (min-width: 769px) {
    .sidebar {
        display: flex;
    }

    .bottom-nav {
        display: none !important;
    }
}


/* =====================================================
   MOBILE MAIN SAFETY
===================================================== */

@media (max-width: 768px) {
    .main {
        overflow-x: hidden;
    }

    .hero,
    .quick-actions,
    .crypto-section,
    .platform-section,
    .footer {
        margin-left: var(--mobile-padding);
        margin-right: var(--mobile-padding);
    }
}


/* =====================================================
   GLOBAL MOTION SAFETY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   SIDEBAR AUTHENTICATION LINKS
===================================================== */

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-top: auto;
    padding-top: 30px;
}

.sidebar-login,
.sidebar-register {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;
    padding: 11px 12px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.sidebar-login {
    border: 1px solid var(--border);

    background: var(--surface);
    color: var(--text);
}

.sidebar-login:hover {
    background: var(--surface-soft);
    border-color: #d1d5db;
}

.sidebar-register {
    border: 1px solid transparent;

    background: var(--primary);
    color: #ffffff;
}

.sidebar-register:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* =====================================================
   HEADER AUTHENTICATION LINKS
===================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 9px 14px;

    border: 1px solid transparent;
    border-radius: 10px;

    background: transparent;
    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.header-login:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 10px 16px;

    border: 1px solid transparent;
    border-radius: 10px;

    background: var(--primary);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.header-register:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* =====================================================
   MOBILE AUTH LINK VISIBILITY
===================================================== */

@media (max-width: 768px) {
    /*
       Authentication links are intentionally hidden
       from the compact mobile header. Login/register
       remain available through the mobile navigation
       or authentication entry points.
    */

    .header-login,
    .header-register {
        display: none;
    }
}


/* =====================================================
   DESKTOP AUTH LINK VISIBILITY
===================================================== */

@media (min-width: 769px) {
    .header-login,
    .header-register {
        display: inline-flex;
    }

    .sidebar-login,
    .sidebar-register {
        display: flex;
    }
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION
===================================================== */

.bottom-nav {
    display: none;
}


/* =====================================================
   BOTTOM NAV ITEM
===================================================== */

.bottom-nav-item {
    min-width: 0;
    flex: 1;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 5px 4px;

    border: 0;
    border-radius: 13px;

    background: transparent;
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.bottom-nav-item:hover {
    color: var(--text-secondary);
}

.bottom-nav-item:active {
    transform: scale(0.94);
}

.bottom-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

.bottom-nav-item svg {
    width: 19px;
    height: 19px;

    flex-shrink: 0;
}


/* =====================================================
   MOBILE BOTTOM NAVIGATION
===================================================== */

@media (max-width: 768px) {
    .bottom-nav {
        position: fixed;

        left: 12px;
        right: 12px;
        bottom: 10px;

        width: auto;
        height: var(--mobile-nav-height);

        display: flex !important;
        align-items: center;
        justify-content: space-around;

        padding: 7px 8px;

        background: rgba(255, 255, 255, 0.96);

        border: 1px solid rgba(229, 231, 235, 0.9);
        border-radius: 20px;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.12);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        z-index: 200;
    }

    .bottom-nav-item {
        display: flex;
    }
}


/* =====================================================
   SMALL MOBILE BOTTOM NAVIGATION
===================================================== */

@media (max-width: 480px) {
    .bottom-nav {
        left: 10px;
        right: 10px;
        bottom: 8px;

        height: var(--mobile-nav-height);

        padding: 6px 6px;

        border-radius: 18px;
    }

    .bottom-nav-item {
        gap: 3px;

        padding: 4px 3px;

        font-size: 8px;

        border-radius: 11px;
    }

    .bottom-nav-item svg {
        width: 18px;
        height: 18px;
    }
}


/* =====================================================
   DARK THEME BOTTOM NAVIGATION
===================================================== */

html[data-theme="dark"] .bottom-nav {
    background: rgba(24, 19, 31, 0.96);

    border-color: rgba(48, 40, 58, 0.9);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .bottom-nav-item {
    color: var(--text-muted);
}

html[data-theme="dark"] .bottom-nav-item:hover {
    color: var(--text-secondary);
}

html[data-theme="dark"] .bottom-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
}


