/* =========================================
   VINANCE REDESIGN 2.0: MASTER DESIGN SYSTEM
   Style: Institutional-Grade Crypto Exchange (Binance-Style)
   Colors: Navy / Cyan / Gold
   ========================================= */
/* Google Fonts: IBM Plex Sans (Binance Lookalike) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
    /* --- Color Palette Tokens --- */
    --navy: #0b0e11;
    --navy-dark: #050a14;
    --navy-light: #0d1b2a;

    --cyan: #00D4FF;
    --cyan-hover: #00b8dd;
    --cyan-light: rgba(0, 212, 255, 0.1);

    --gold: #FFD700;
    --gold-hover: #e6c200;

    --emerald: #10B981;
    --red: #EF4444;
    --purple: #7C3AED;

    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;

    --white: #ffffff;

    /* --- Gradients --- */
    --gradient-hero: linear-gradient(135deg, var(--navy) 0%, #0F3A4A 100%);
    --gradient-primary: linear-gradient(90deg, #00D4FF 0%, #00E8FF 100%);
    --gradient-gold: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    --gradient-premium: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);

    /* --- Surface & Borders --- */
    --surface-card: rgba(13, 27, 42, 0.7);
    /* Dark Navy Glass */
    --border-color: rgba(0, 212, 255, 0.2);
    --border-hover: rgba(0, 212, 255, 0.5);

    /* --- Typography --- */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* --- Metrics --- */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;

    --header-height: 64px;

    /* --- Effects --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
    --glass-blur: blur(12px);
}

/* =========================================
   GLOBAL RESET & BASE
   ========================================= */

body {
    background-color: var(--navy) !important;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--cyan-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   COMPONENT LIBRARY
   ========================================= */

/* --- Buttons --- */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--navy-dark);
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
    color: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan-light);
    color: var(--white);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--navy-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 16px;
    height: 48px;
}

/* --- Cards --- */
.glass-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyan);
    /* Left Accent */
}

.glass-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
    background: rgba(13, 27, 42, 0.9);
}

/* --- Inputs --- */
.form-control,
.form--control {
    background-color: var(--navy-light) !important;
    border: 1px solid var(--gray-600) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    height: 44px;
    padding: 0 16px;
}

.form-control:focus,
.form--control:focus {
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2) !important;
    background-color: var(--navy-dark) !important;
}

.form--label {
    color: var(--white) !important;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.875rem;
}

.form-control::placeholder,
.form--control::placeholder {
    color: var(--gray-400) !important;
    opacity: 1;
}

/* --- Badges & Pills --- */
.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-cyan {
    background: rgba(0, 212, 255, 0.15);
    color: var(--cyan);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.badge-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */

.section-padding {
    padding: 80px 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-cyan {
    color: var(--cyan) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-emerald {
    color: var(--emerald) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-purple {
    color: var(--purple) !important;
}

/* Table Styling Override */
.table {
    color: var(--white);
    border-collapse: collapse;
}

.table th {
    background-color: var(--navy-dark);
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid var(--cyan);
    padding: 12px 16px;
}

.table td {
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    vertical-align: middle;
    font-size: 14px;
}

.table tr:hover td {
    background-color: rgba(0, 212, 255, 0.05);
}

/* Animation Classes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* Footer specific overrides (Fixed) */
footer .footer-menu .footer-menu__item .footer-menu__link {
    color: var(--gray-400) !important;
    font-size: 13px;
}

footer .footer-menu .footer-menu__item .footer-menu__link:hover {
    color: var(--cyan) !important;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

/* =========================================
   HEADER & NAVIGATION (PREMIUM REDESIGN)
   ========================================= */

.header {
    background: rgba(11, 14, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    /* Increased height for better spacing */
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    /* Vertical Center Axis */
    justify-content: space-between;
    height: 100%;
}

.navbar-brand img {
    height: 32px;
    /* Slightly larger logo */
    width: auto;
    transition: transform 0.2s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-menu {
    gap: 32px;
    margin-left: 48px;
    /* More breathing room */
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--gray-400) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    /* Slightly larger text */
    padding: 0 !important;
    position: relative;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover,
.nav-link.active,
.has-mega-menu:hover .nav-link {
    color: var(--white) !important;
}

/* Premium Dropdown (Glassmorphism) */
.has-mega-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    /* Fixed width dropdown */
    background: rgba(17, 24, 39, 0.95);
    /* #111827 with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Unified Header & Dropdowns */

    .custom-dropdown {
        position: relative;
    }

    .custom-dropdown:hover .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu-custom {
        position: absolute;
        top: 100%;
        left: 0;
        width: 260px;
        background: #151a21;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
        z-index: 1000;
    }

    .dropdown-item-custom {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s;
    }

    .dropdown-item-custom:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-icon-box {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .bg-cyan-10 {
        background: rgba(0, 212, 255, 0.1);
    }

    .bg-purple-10 {
        background: rgba(147, 51, 234, 0.1);
    }

    .bg-emerald-10 {
        background: rgba(16, 185, 129, 0.1);
    }

    .bg-gold-10 {
        background: rgba(255, 215, 0, 0.1);
    }

    .dropdown-title {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .dropdown-desc {
        color: #9ca3af;
        font-size: 12px;
        margin-top: 2px;
    }

    /* Glow Shadow for Sign Up */
    .shadow-glow {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
        transition: box-shadow 0.3s ease;
    }

    .shadow-glow:hover {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
    }

    border-radius: 12px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 999;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.5);
    margin-top: 8px;
}

.has-mega-menu:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.mega-menu-list__link {
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.mega-menu-list__link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Icon Colors (Tailwind-style bg opacity) */
.icon-gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

.icon-cyan {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
}

.icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.mega-menu-list__title {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 24px;
}

/* Unified Header & Dropdowns */

.custom-dropdown {
    position: relative;
}

.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    background: #151a21;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.dropdown-item-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    color: #ffffff !important;
}

.dropdown-item-custom:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-cyan-10 {
    background: rgba(0, 212, 255, 0.1);
}

.bg-purple-10 {
    background: rgba(147, 51, 234, 0.1);
}

.bg-emerald-10 {
    background: rgba(16, 185, 129, 0.1);
}

.bg-gold-10 {
    background: rgba(255, 215, 0, 0.1);
}

.dropdown-title {
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
}

.dropdown-desc {
    color: #9ca3af !important;
    font-size: 12px;
    margin-top: 2px;
}

/* Glow Shadow for Sign Up */
.shadow-glow {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: box-shadow 0.3s ease;
}

.shadow-glow:hover {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
}

/* Flashing New Badge */
@keyframes flash-green {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }
}

.badge-new-flash {
    background-color: var(--emerald) !important;
    color: #fff !important;
    animation: flash-green 1.5s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Flashing New Badge */
@keyframes flash-green {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }
}

.badge-new-flash {
    background-color: var(--emerald) !important;
    color: #fff !important;
    animation: flash-green 1.5s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mega-menu-list__desc {
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.4;
}

/* Header Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.action-btn {
    color: var(--gray-400);
    font-size: 20px;
    transition: all 0.2s;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-ghost {
    background: transparent;
    color: var(--white);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   BINANCE THEME OVERRIDES
   ========================================= */

/* Header Theme */
.header-container,
#header {
    background-color: #181A20 !important;
    /* Binance Dark */
    color: #FFFFFF;
    border-bottom: 1px solid #2B2F36 !important;
}

/* Fix Black Text to White & Dropdown Styling */
.dropdown-menu,
.dropdown-menu-custom,
.nav-dropdown,
.profile-dropdown,
.overview-dropdown {
    background-color: #1E2329 !important;
    color: #EAECEF !important;
    border: 1px solid #2B2F36 !important;
}

.dropdown-item,
.dropdown-link,
.dropdown-item-custom,
.mega-menu-list__link,
.dropdown-toggle-custom {
    color: #EAECEF !important;
}

.dropdown-item:hover,
.dropdown-link:hover,
.dropdown-item-custom:hover,
.mega-menu-list__link:hover {
    background-color: #2B2F36 !important;
    color: #F0B90B !important;
    /* Binance Yellow on hover */
}

.dropdown-title {
    color: #EAECEF !important;
}

.dropdown-desc,
.mega-menu-list__desc {
    color: #848E9C !important;
}

/* Brand Text Removal */
.brand-name {
    display: none !important;
}

/* Header Spacing */
.header-left .header-nav-primary {
    margin-left: 15px;
    /* Brings links close to logo */
    gap: 20px;
}

/* Trim Order Book and Markets Cards */
.order-book-card,
.markets-card {
    max-height: 800px;
    display: flex;
    flex-direction: column;
}

.order-book-list,
.markets-list {
    overflow-y: auto;
    flex-grow: 1;
}

/* Global Binance Scrollbar */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background: #474D57;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}


.btn-neon-primary {
    background: var(--cyan);
    color: var(--black);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.2s;
}

.btn-neon-primary:hover {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-1px);
    color: var(--black);
}

/* Account Menu */
.account-menu .dropdown-toggle::after {
    display: none;
}

.account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

/* Mobile Sidebar Drawer */
@media (max-width: 991px) {
    .header {
        padding: 0 16px;
    }

    .navbar-collapse {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--navy-dark);
        padding: 24px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .nav-menu {
        margin-left: 0;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .nav-link {
        height: auto;
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--border-color);
    }

    .mega-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .has-mega-menu.active .mega-menu {
        display: block;
    }
}

/* =========================================
   FOOTER
   ========================================= */

.footer-area {
    background-color: #020202;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-item__title {
    color: var(--cyan);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-menu__link {
    color: var(--gray-500) !important;
    font-size: 13px;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.footer-menu__link:hover {
    color: var(--cyan) !important;
    padding-left: 4px !important;
}

/* =========================================
   LATEST NEWS SECTION
   ========================================= */

.ongoing-campaign {
    padding: 60px 0;
    margin: 0 0 40px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ongoing-campaign__title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.testimonials-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.testimonials-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   PREMIUM MARKET TABLE
   ========================================= */

.refined-table-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.coin-pair-list-table thead th {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    padding: 16px;
    font-size: 11px;
}

.coin-pair-list-table tbody td {
    padding: 20px 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.coin-pair-list-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.coin-pair-list-table tbody tr:last-child td {
    border-bottom: none;
}

.market-type {
    color: var(--gray-400);
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Notification Button Visibility Fix */
/* Notification Button Visibility Fix */
.notification-card-vibrant .btn {
    color: #000000 !important;
    font-weight: 700;
}

/* Ensure all light buttons have readable text */
.btn-light {
    color: #000000 !important;
}

/* Product Card Standardization & Modernization */
.product-card {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.product-card:hover {
    background: rgba(17, 24, 39, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-card.card-spot {
    border-left: 4px solid var(--cyan) !important;
}

.product-card.card-future {
    border-left: 4px solid var(--purple) !important;
}

.product-card.card-bot {
    border-left: 4px solid var(--gold) !important;
}

.product-card.card-copy {
    border-left: 4px solid var(--primary) !important;
}

.product-card.card-earn {
    border-left: 4px solid var(--emerald) !important;
}

.product-card.card-invest {
    border-left: 4px solid var(--danger) !important;
}

.btn-view-all {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    color: var(--white) !important;
}

/* Typography Utilities */
.fs-xs {
    font-size: 11px;
}

.ls-1 {
    letter-spacing: 1px;
}

.text-opacity-05 {
    opacity: 0.5;
}

.border-opacity-05 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Bouncing Notification */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite ease-in-out;
}

.notification-pill {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    margin-bottom: 24px;
}

/* Glass Outline Button */
.btn-glass-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transition: all 0.3s;
}

.btn-glass-outline:hover {
    background: rgba(0, 255, 212, 0.1);
    border-color: var(--cyan);
    color: var(--cyan) !important;
}

/* Header Avatar */
.header-avatar {
    cursor: pointer;
    transition: transform 0.2s;
}

.header-avatar:hover {
    transform: scale(1.05);
}

/* Footer Description Clamp */
.footer-text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    /* Ensure lines are readable */
    max-width: 240px;
    /* Force wrapping to 5 lines */
    color: var(--gray-500) !important;
    font-size: 13px;
    font-weight: 400;
}

/* Mobile Dashboard Fixes */
@media (max-width: 991.98px) {
    .dashboard-body {
        /* Padding top handled inline in dashboard.blade.php for emergency fix */
        padding-bottom: calc(90px + env(safe-area-inset-bottom)) !important;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    /* Ensure bottom nav is above everything else */
    .m-bottom-nav {
        z-index: 9999 !important;
        padding-bottom: env(safe-area-inset-bottom);
    }

    /* Ensure Header respects safe area */
    .topbar-v7 {
        padding-top: env(safe-area-inset-top);
    }
}

/* Mobile Typography Overrides */
@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 1.75rem !important;
    }

    h2,
    .h2 {
        font-size: 1.5rem !important;
    }

    h3,
    .h3 {
        font-size: 1.3rem !important;
    }

    /* Withdraw/Deposit Page Titles */
    h4,
    .h4 {
        font-size: 1.15rem !important;
    }

    h5,
    .h5 {
        font-size: 1rem !important;
    }

    /* Card Titles */
    h6,
    .h6 {
        font-size: 0.9rem !important;
    }
}

/* =========================================
   MARKET OVERVIEW (MODERNIZED)
   ========================================= */

/* 1. Hero Background Mesh Gradient */
.market-overview {
    background: radial-gradient(circle at 50% -20%, #1a2c4e 0%, #0a1428 60%, #050a14 100%) !important;
    position: relative;
    overflow: hidden;
}

.market-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Gradient Text Header */
.market-overview .section-heading__title {
    background: linear-gradient(90deg, #fff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 700;
}

.market-overview .market-overview-subtitle {
    color: var(--gray-400);
}

/* 3. Modern Glass Cards */
.market-overview-card {
    background: rgba(20, 30, 48, 0.4) !important;
    /* Slightly more transparent for glass effect */
    border: 1px solid rgba(0, 212, 255, 0.15) !important;
    border-radius: 16px !important;
    /* Larger smooth radius */
    padding: 24px;
    backdrop-filter: blur(20px) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Gradient Border Effect on Hover */
.market-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.market-overview-card:hover::before {
    transform: scaleX(1);
}

.market-overview-card:hover {
    border-color: rgba(0, 212, 255, 0.4) !important;
    box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-8px);
    background: rgba(20, 30, 48, 0.7) !important;
}

.market-overview-card__header h6 {
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.market-overview-card__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.market-overview-card__item:last-child {

    border-bottom: none;
}

/* =========================================
   INVESTMENT HERO IMAGE OPTIMIZATION
   ========================================= */
.invest-hero-image {
    /* Soften edges to blend with background */
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    mask-image: radial-gradient(circle at center, black 60%, transparent 95%);

    /* Add glow to simulate emission */
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.2));

    /* Ensure it sits nicely */
    border-radius: 24px;
    opacity: 0.95;
    transition: all 0.5s ease;
}

.invest-hero-image:hover {
    filter: drop-shadow(0 0 60px rgba(0, 255, 136, 0.4));
    transform: scale(1.02);
}

/* =========================================
   NEON GLOW BUTTONS
   ========================================= */
.btn-cyan-glow {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cyan-glow:hover {
    background: var(--cyan);
    color: var(--navy-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    border-color: var(--cyan);
}

/* =========================================
   STAKING & GOLD THEME
   ========================================= */

/* 1. Staking Hero Image (Reusing Investment Logic + Gold Tint) */
.staking-hero-image {
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.2));
    /* Gold Glow */
    border-radius: 24px;
    opacity: 0.95;
    transition: all 0.5s ease;
}

.staking-hero-image:hover {
    filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
    transform: scale(1.02);
}

/* 2. Gold Neon Buttons */
.btn-gold-glow {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--gold);
    /* #FFD700 defined in variables or fallback */
    color: #FFD700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold-glow:hover {
    background: #FFD700;
    color: var(--navy-dark);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    border-color: #FFD700;
}

/* 3. FAQ Accordion Custom */
.accordion-button-custom {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.accordion-button-custom:not(.collapsed) {
    background: rgba(255, 215, 0, 0.08) !important;
    /* Gold tint active */
    border-color: rgba(255, 215, 0, 0.3) !important;
    color: #FFD700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.accordion-button-custom::after {
    filter: invert(1) brightness(2);
    /* White arrow */
}

.accordion-button-custom:not(.collapsed)::after {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(5deg);
    /* Gold arrow */
}

.custom-accordion .accordion-body {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    margin-top: -10px;
    /* Connect to header */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
}

/* =========================================
   COPY TRADING HERO
   ========================================= */
.copy-hero-image {
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.2));
    /* Cyan Glow */
    border-radius: 24px;
    opacity: 0.95;
    transition: all 0.5s ease;
}

.copy-hero-image:hover {
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
    transform: scale(1.02);
}

/* =========================================
   INTERNAL TERMINAL / TRADER HUB (System V2)
   ========================================= */

/* Workspace Base */
.terminal-workspace,
.bot-hub-workspace {
    background: radial-gradient(circle at top center, #0a1018 0%, #000000 100%);
    min-height: 100vh;
    padding-bottom: 5rem;
    color: #fff;
    font-family: 'Inter', sans-serif !important;
}

/* Mobile Optimization (Tablet and Mobile) */
@media (max-width: 991px) {

    /* Reduce Headline Sizes */
    .display-3,
    .display-4,
    .display-5 {
        font-size: 2rem !important;
        /* Reduced further from 2.25rem */
    }

    .display-1,
    .display-2 {
        font-size: 2.5rem !important;
    }

    /* Global Typography Scaling for Mobile (< 768px specifically) */
    @media (max-width: 767px) {

        /* Aggressive Reduction & Modern Styling */
        h1,
        .display-1,
        .display-2,
        .display-3 {
            font-size: 1.5rem !important;
            /* ~24px */
            letter-spacing: -0.03em !important;
            /* Tight clean look */
            line-height: 1.2 !important;
        }

        h2,
        .display-4,
        .display-5 {
            font-size: 1.35rem !important;
            /* ~21-22px */
            letter-spacing: -0.02em !important;
            line-height: 1.3 !important;
        }

        h3 {
            font-size: 1.2rem !important;
            /* ~19px */
            letter-spacing: -0.01em !important;
        }

        h4,
        h5,
        h6 {
            font-size: 1rem !important;
            /* ~16px */
        }

        /* Body Text Refinement */
        p.lead {
            font-size: 0.9rem !important;
            line-height: 1.5 !important;
            opacity: 0.85;
            /* Slightly muted for premium feel */
        }

        p {
            font-size: 0.85rem !important;
            line-height: 1.6 !important;
        }

        /* Adjust CTA buttons on mobile */
        .btn-lg {
            padding: 0.5rem 1.25rem !important;
            font-size: 0.9rem !important;
            letter-spacing: 0.5px;
            /* Slight tracking for buttons */
        }

        /* Prevent Edge gumming */
        .container,
        .container-fluid {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        /* Ensure rows don't pull content back too hard */
        .row {
            margin-left: -10px !important;
            margin-right: -10px !important;
        }

        .row>* {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
    }

    /* Constrain Hero Images */
    .banner-img img,
    .img-fluid.animate-float {
        max-width: 80% !important;
        margin: 0 auto;
        display: block;
    }

    /* Tweak Section Padding */
    .section-padding {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Navbar Brand Logic */
    .navbar-brand .header-logo {
        max-width: 100px;
        height: auto;
    }

    /* Small mobile tweaks (< 380px) */
    @media(max-width: 380px) {
        .header-logo {
            max-width: 90px;
        }

        .header-right .btn-sm {
            padding-left: 0.75rem !important;
            padding-right: 0.75rem !important;
            font-size: 0.75rem;
        }
    }
}

/* Glass Card Refinement */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
}

/* Header Bands */
.terminal-header-band,
.hub-header-band {
    background: rgba(20, 24, 28, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hub-brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(0, 212, 255, 0.1);
    /* Cyan Tint */
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.hub-brand-icon i {
    color: var(--cyan) !important;
}

/* Cards & Panes */
.terminal-pane,
.strategy-premium-card,
.hero-elevated-card {
    background: rgba(22, 26, 30, 0.85);
    /* Glass Dark */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-elevated-card:hover,
.strategy-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.pane-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Text Utilities */
.text-cyan {
    color: var(--cyan) !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.text-gold {
    color: #FFD700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-neon-green {
    color: #00ff9d !important;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.fw-900 {
    font-weight: 900;
}

.ls-tight {
    letter-spacing: -1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

/* Components */
.quantum-loader {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    border-radius: 10px;
    animation: loader-flow 2s infinite ease-in-out;
}

@keyframes loader-flow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px currentColor;
    }
}

.pulse-cyan {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan);
    animation: pulse-node 2s infinite;
    display: inline-block;
}

@keyframes pulse-node {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Table Styles */
.terminal-log-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.terminal-log-table thead th {
    background: rgba(255, 255, 255, 0.02);
    color: #666;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
}

.terminal-log-table tbody tr {
    transition: 0.2s;
    background: rgba(255, 255, 255, 0.01);
}

.terminal-log-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.terminal-log-table td {
    padding: 15px 20px;
    border: none;
    vertical-align: middle;
    font-size: 13px;
}

/* Input Groups */
.dark-input-group {
    background: #000;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    overflow: hidden;
}

.dark-input-group .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 14px;
    font-weight: 700;
}

.dark-input-group .input-group-text {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #888;
    font-weight: 700;
    font-size: 12px;
}

/* Reduce CTA Icon on Mobile */
@media (max-width: 991.98px) {
    .cta-deco-icon {
        font-size: 150px !important;
        bottom: -20px !important;
        right: -20px !important;
        opacity: 0.05 !important;
    }
}

/* Default CTA Icon Styles */
.cta-deco-icon {
    font-size: 300px;
    bottom: -50px;
    right: -50px;
    transform: rotate(30deg);
    opacity: 0.1;
    pointer-events: none;
}

/* Auth Page Form Input Visibility Fix */
#quantum-login .form--control,
.account-form-card .form--control,
.account-form-card input.form-control,
form.verify-gcaptcha input {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#quantum-login .form--control::placeholder,
.account-form-card .form--control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Autocomplete fix for Chrome */
#quantum-login input:-webkit-autofill,
#quantum-login input:-webkit-autofill:hover,
#quantum-login input:-webkit-autofill:focus,
#quantum-login input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #151a21 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Asset Table Mobile Optimization */
@media (max-width: 991.98px) {

    .coin-pair-list-table th,
    .coin-pair-list-table td {
        padding: 10px 5px !important;
        font-size: 13px !important;
    }

    .coin-pair-list-table .btn-sm {
        padding: 4px 10px !important;
        font-size: 12px !important;
        min-width: auto !important;
    }

    /* Ensure images/icons are scaled down slightly if needed */
    .coin-pair-list-table img {
        width: 28px !important;
        height: 28px !important;
    }

    /* Adjust container padding */
    .refined-table-card .p-4 {
        padding: 1rem !important;
    }
}

/* Global Table Mobile Fix */
@media (max-width: 991.98px) {
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure all tables are scrollable wrapper */
    .table-section .container,
    .market-overview .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Header Login/Signup Mobile Fix */
@media (max-width: 575.98px) {
    .header-action .btn {
        padding: 6px 12px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    /* If still squashed, stack them or reduce gap */
    .header-action {
        gap: 5px !important;
    }
}

/* Blog Detail Readability (Override hardcoded inline styles) */
.blog-details__desc * {
    color: rgba(255, 255, 255, 0.8) !important;
    background-color: transparent !important;
}

.blog-details__desc h1,
.blog-details__desc h2,
.blog-details__desc h3,
.blog-details__desc h4,
.blog-details__desc h5,
.blog-details__desc h6,
.blog-details__desc strong,
.blog-details__desc b {
    color: #fff !important;
}

/* =========================================
   PREMIUM NOTIFICATIONS (QUANTUM TOAST)
   ========================================= */

.iziToast.quantum-toast {
    font-family: 'Inter', sans-serif !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    overflow: hidden !important;
    padding: 12px 16px 12px 60px !important;
    /* Left padding for icon */
    min-width: 360px !important;
    max-width: 450px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
}

.iziToast.quantum-toast::after {
    display: none !important;
}

/* --- Status Themes --- */

/* Success */
.iziToast.quantum-toast.iziToast-color-green {
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.9), rgba(6, 95, 70, 0.9)) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
}

.iziToast.quantum-toast.iziToast-color-green .iziToast-icon {
    color: #34D399 !important;
    background: rgba(52, 211, 153, 0.15) !important;
}

/* Error */
.iziToast.quantum-toast.iziToast-color-red {
    background: linear-gradient(145deg, rgba(127, 29, 29, 0.9), rgba(153, 27, 27, 0.9)) !important;
    border-color: rgba(248, 113, 113, 0.3) !important;
}

.iziToast.quantum-toast.iziToast-color-red .iziToast-icon {
    color: #F87171 !important;
    background: rgba(248, 113, 113, 0.15) !important;
}

/* Info (Blue) */
.iziToast.quantum-toast.iziToast-color-blue {
    background: linear-gradient(145deg, rgba(12, 74, 110, 0.9), rgba(8, 51, 68, 0.9)) !important;
    border-color: rgba(34, 211, 238, 0.3) !important;
}

.iziToast.quantum-toast.iziToast-color-blue .iziToast-icon {
    color: #22D3EE !important;
    background: rgba(34, 211, 238, 0.15) !important;
}

/* Warning */
.iziToast.quantum-toast.iziToast-color-yellow {
    background: linear-gradient(145deg, rgba(120, 53, 15, 0.9), rgba(69, 26, 3, 0.9)) !important;
    border-color: rgba(251, 191, 36, 0.3) !important;
}

.iziToast.quantum-toast.iziToast-color-yellow .iziToast-icon {
    color: #FBBF24 !important;
    background: rgba(251, 191, 36, 0.15) !important;
}

/* --- Content Styling --- */

.iziToast.quantum-toast .iziToast-body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.iziToast.quantum-toast .iziToast-icon {
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin: 0 !important;
}

.iziToast.quantum-toast .iziToast-texts {
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    margin: 0 !important;
}

.iziToast.quantum-toast .iziToast-title {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

.iziToast.quantum-toast .iziToast-message {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.iziToast.quantum-toast .iziToast-close {
    opacity: 0.5 !important;
    background: transparent !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 24px !important;
}

.iziToast.quantum-toast .iziToast-close:hover {
    opacity: 1 !important;
}

.iziToast.quantum-toast .iziToast-progressbar {
    bottom: 0 !important;
    height: 3px !important;
    opacity: 0.3 !important;
    z-index: 1 !important;
}