/* =========================================
   Premium Forex Trading / Investment Platform Theme
   Hyper-Modern, Mind-Blowing Design
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-deep: #050a10;
    --bg-surface: #0a111a;
    --bg-card: rgba(10, 15, 25, 0.7);

    --primary: #00E396;
    /* Neon Profit Green */
    --primary-glow: rgba(0, 227, 150, 0.6);
    --secondary: #F5A623;
    /* Vibrant Gold */
    --secondary-glow: rgba(245, 166, 35, 0.6);
    --accent: #00f2ff;
    /* Cyan */

    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-light: #e2e8f0;

    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
}


/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* --- ANIMATED BACKGROUND --- */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.15), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.15), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 227, 150, 0.1), transparent 50%);
    animation: drift 15s infinite alternate ease-in-out;
}

@keyframes drift {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(0, 227, 150, 0.4));
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.section-title>p:nth-of-type(1) {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* --- BUTTONS --- */
.btn-cyber {
    position: relative;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 227, 150, 0.2);
}

.btn-cyber:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 35px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-cyber.alt {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.2);
}

.btn-cyber.alt:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 35px var(--secondary-glow);
}

/* --- GLASS CARDS --- */
.tilt-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px 25px;
    /* Reduced padding for better fit */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tilt-card:hover {
    transform: translateY(-8px);
    /* Slightly less transform to avoid layout jump */
    box-shadow: var(--glass-shadow), 0 0 30px rgba(0, 242, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 5;
    /* Ensure hover pops over adjacent items */
}

.tilt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    opacity: 0;
    transition: 0.4s;
}

.tilt-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px var(--primary-glow);
}

.tilt-card h3 {
    font-size: 1.35rem;
    /* Slightly smaller for responsive */
    margin-bottom: 12px;
    color: var(--text-main);
}

.tilt-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    /* Adjusted for better fit */
    line-height: 1.5;
}

.icon-glow {
    font-size: 3rem;
    /* Slightly smaller */
    margin-bottom: 20px;
    color: var(--accent);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6));
    display: inline-block;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3%;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    z-index: 1000;
    background: rgba(5, 10, 16, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 1;
    flex-wrap: nowrap;
}

.nav-links a {
    margin-left: 0;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- HERO SUBTITLE --- */
.hero-subtitle {
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 227, 150, 0.5);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 227, 150, 0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: drift 10s infinite alternate;
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0;
    /* No padding here — parent .page-section handles it */
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* --- ROADMAP --- */
.roadmap-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.roadmap-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-node:nth-child(even) {
    flex-direction: row-reverse;
}

.node-content {
    width: 45%;
}

.node-date {
    background: rgba(0, 227, 150, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.node-point {
    width: 20px;
    height: 20px;
    background: var(--bg-deep);
    border: 4px solid var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.8);
}

/* --- TEAM --- */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 5%;
}

.team-card {
    text-align: center;
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 20px;
    transition: 0.4s;
    backdrop-filter: blur(15px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 227, 150, 0.2);
}

.hex-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0a1122, #050a14);
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    font-size: 2rem;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: inset 0 0 20px rgba(0, 227, 150, 0.2);
}

.team-card:hover .hex-avatar {
    background: var(--primary);
    color: #000;
    transform: rotate(10deg);
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: #fff;
}

/* --- LOGIN SPECIFIC --- */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 480px;
    /* Wider to match image */
    background: #080b13;
    /* Very dark rich background */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 255, 0.4);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.05);
    /* very subtle outer cyan glow */
    position: relative;
    z-index: 10;
}

.login-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.login-title span {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
}

.login-subtitle {
    color: #8892b0;
    font-size: 1rem;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.cyber-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}

/* Override browser autofill styles */
.cyber-input:-webkit-autofill,
.cyber-input:-webkit-autofill:hover,
.cyber-input:-webkit-autofill:focus,
.cyber-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #03060c inset !important;
    /* Match darker body bg */
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: white;
}

.cyber-input:focus {
    border-color: var(--primary);
}

.input-label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #8892b0;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s;
}

.cyber-input:focus~.input-label,
.cyber-input:not(:placeholder-shown)~.input-label,
.cyber-input.has-value~.input-label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Checkbox and links inside auth form */
.login-box a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.3s;
}

.login-box a:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px var(--primary-glow) !important;
}

.btn-outline-cyber {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 25px;
    /* Thinner vertically */
    border-radius: 4px;
    /* Less rounded corners */
    font-family: var(--font-heading);
    font-weight: 600;
    /* Less bold */
    font-size: 1rem;
    /* Smaller text */
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline-cyber:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* --- MENU TOGGLE --- */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* --- PAGE SECTIONS --- */
.page-section {
    padding: 60px 5%;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-alt {
    background: rgba(0, 0, 0, 0.3);
}

/* =============================================
   RESPONSIVE DESIGN 
   ============================================= */

/* Tablet / small laptop: collapse nav to hamburger */
@media (max-width: 1100px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 16, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--primary);
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 1.1rem;
    }
}

/* Mobile: scale down all text, grids to single column */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 10px;
    }

    .page-section {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-title>p:nth-of-type(1) {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        padding: 0;
        gap: 20px;
    }

    .tilt-card {
        padding: 25px 20px;
    }

    .tilt-card h3 {
        font-size: 1.2rem;
    }

    .icon-glow {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .btn-cyber {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .roadmap-line {
        left: 20px;
    }

    .roadmap-node {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 50px;
    }

    .node-content {
        width: 100%;
    }

    .node-point {
        left: 20px;
    }

    .team-grid {
        padding: 0;
        gap: 20px;
    }

    .team-card {
        width: 100%;
    }

    .login-box {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        letter-spacing: 1px;
        font-size: 0.75rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

}

/* ========================================================================= */
/* SPEED WAY DASHBOARD OVERRIDES (WEEDO TEMPLATE DARK MODE)                  */
/* ========================================================================= */

body.ms-dark-theme.ms-primary-theme {
    background-color: transparent !important;
}

body.ms-body.ms-dark-theme .ms-content-wrapper {
    background-color: transparent !important;
}

/* --- SIDEBAR OVERRIDES --- */
.ms-dark-theme .ms-aside-left,
.ms-dark-theme .ms-side-nav {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px) !important;
    border-right: 1px solid rgba(0, 242, 255, 0.1) !important;
}

.ms-dark-theme .ms-main-aside>li.menu-item>a {
    color: var(--text-main) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.ms-dark-theme .ms-main-aside>li.menu-item>a:hover,
.ms-dark-theme .ms-main-aside>li.menu-item>a.active {
    background: rgba(0, 242, 255, 0.05) !important;
    color: var(--primary) !important;
}

.ms-dark-theme .ms-main-aside>li.menu-item i {
    color: var(--primary) !important;
}

/* --- NAVBAR OVERRIDES --- */
/* Only override colors for dark theme - let Weedo template handle layout */
.ms-dark-theme .body-content {
    overflow-x: hidden !important;
}

.ms-dark-theme .ms-navbar {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
}

/* Shrink items slightly so everything fits when sidebar is open */
.ms-dark-theme .ms-navbar .ms-form input.ms-form-input {
    width: 180px !important;
}

.ms-dark-theme .ms-inline li.ms-nav-item {
    padding: 1.1rem 12px !important;
}

/* FIX: When sidebar is open, the template sets position:fixed + left:255px on navbar
   but keeps width:100% (full viewport), so the right edge overflows by 255px.
   This constrains the width to the remaining space. */
.ms-aside-left-open .ms-navbar {
    width: calc(100% - 255px) !important;
}

/* On mobile, sidebar overlays so navbar stays full width */
@media (max-width: 1024px) {
    .ms-aside-left-open .ms-navbar {
        width: 100% !important;
    }
}

/* --- PANEL OVERRIDES --- */
.ms-dark-theme .ms-panel {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 242, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.ms-dark-theme .ms-panel-header {
    border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.ms-dark-theme .ms-panel-header h6 {
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

.ms-dark-theme .ms-panel-header p {
    color: #8892b0 !important;
}

/* --- WIDGET CARDS --- */
.ms-dark-theme .ms-card {
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 242, 255, 0.1) !important;
    border-radius: 12px !important;
}

.ms-dark-theme .ms-card-body h6 {
    color: #8892b0 !important;
}

.ms-dark-theme .ms-card-change span,
.ms-dark-theme .ms-card-change {
    color: var(--primary) !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
}

.ms-dark-theme .ms-card i {
    color: rgba(0, 242, 255, 0.2) !important;
}

/* --- TABLES OVERRIDES --- */
.ms-dark-theme .table {
    color: var(--text-main) !important;
}

.ms-dark-theme .table th {
    border-top: none !important;
    border-bottom: 2px solid rgba(0, 242, 255, 0.2) !important;
    color: var(--primary) !important;
    font-family: var(--font-display) !important;
}

.ms-dark-theme .table td {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #8892b0 !important;
}

.ms-dark-theme .table-hover tbody tr:hover {
    background-color: rgba(0, 242, 255, 0.05) !important;
}

/* --- TEXT COLORS OVERRIDES --- */
.ms-dark-theme .ms-text-dark {
    color: var(--text-main) !important;
}

.ms-dark-theme .text-disabled {
    color: #8892b0 !important;
}

/* Account Overview grids */
.ms-dark-theme .ms-social-media-followers .ms-social-grid {
    border-color: rgba(0, 242, 255, 0.1) !important;
    background: transparent !important;
}

.ms-dark-theme .ms-social-media-followers .ms-social-grid i {
    background-color: rgba(0, 242, 255, 0.1) !important;
    color: var(--primary) !important;
}

.ms-dark-theme .ms-social-media-followers .ms-social-grid span {
    color: #8892b0 !important;
}

/* --- RESPONSIVE DASHBOARD FIXES --- */
@media (max-width: 1024px) {
    body.ms-dark-theme.ms-body {
        overflow-x: hidden !important;
    }

    .ms-dark-theme .ms-nav-list {
        background: var(--bg-card) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
        padding-right: 15px !important;
    }

    .ms-content-wrapper {
        padding: 1.5rem 10px !important;
        overflow-x: hidden !important;
    }

    .ms-panel {
        max-width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
    }

    .table-responsive {
        max-width: 100% !important;
        overflow-x: auto !important;
    }
}