/* =====================================================
   ROOT VARIABLES
   ===================================================== */
:root {
    --primary:    #6c5ce7;
    --primary-dk: #5649c0;
    --secondary:  #a29bfe;
    --accent:     #e84393;
    --dark:       #0e0e20;
    --darker:     #09091a;
    --card:       rgba(20, 20, 45, 0.75);
    --border:     rgba(108, 92, 231, 0.22);
    --border-hov: rgba(108, 92, 231, 0.5);
    --grad:       linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --text-muted: rgba(255, 255, 255, 0.48);
}

/* =====================================================
   BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: #dde1f0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a { text-decoration: none; }

/* =====================================================
   TICKER BAR
   ===================================================== */
.ticker-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    background: rgba(9, 9, 26, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(108, 92, 231, 0.18);
    padding: 0.38rem 0;
    font-size: 0.8rem;
}
.ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid rgba(108, 92, 231, 0.2);
    font-size: 0.78rem;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s;
}
.ticker-pill:hover { border-color: rgba(108,92,231,0.5); color: var(--secondary); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 32px; left: 0; right: 0;
    z-index: 1100;
    background: rgba(9, 9, 26, 0.92) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(108,92,231,0.15);
    padding: 0.65rem 0;
    transition: padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-brand { font-weight: 700; font-size: 1rem; color: #fff !important; }
.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65) !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: 6px;
    transition: all 0.2s;
}
.nav-link:hover { color: var(--secondary) !important; background: rgba(108,92,231,0.12); }
.nav-link.active { color: var(--secondary) !important; background: rgba(108,92,231,0.15); }
.nav-link.nav-highlight {
    color: var(--secondary) !important;
    border: 1px solid rgba(108,92,231,0.35);
    background: rgba(108,92,231,0.1);
}
.nav-link.nav-highlight:hover { background: rgba(108,92,231,0.2); border-color: var(--primary); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(9,9,26,0.82), rgba(9,9,26,0.9)),
        url('assets/img/intro-bg.jpg') center / cover fixed;
}

/* Dot-grid pattern */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(108,92,231,0.35) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Bottom fade */
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(transparent, var(--darker));
    z-index: 1;
    pointer-events: none;
}

/* Animated glow orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.orb-1 { width: 520px; height: 520px; background: rgba(108,92,231,0.16); top: -130px; left: -130px; animation: orbMove 12s ease-in-out infinite; }
.orb-2 { width: 380px; height: 380px; background: rgba(162,155,254,0.1);  bottom: -80px; right: -60px;  animation: orbMove 15s ease-in-out infinite reverse 2s; }
.orb-3 { width: 280px; height: 280px; background: rgba(232,67,147,0.07);  top: 35%; left: 42%;          animation: orbMove 18s ease-in-out infinite 5s; }
@keyframes orbMove {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(25px,-20px) scale(1.06); }
    66%      { transform: translate(-15px,25px) scale(0.94); }
}

.hero-inner { position: relative; z-index: 2; }

.coin-logo {
    width: 120px;
    filter: drop-shadow(0 0 28px rgba(108,92,231,0.65)) drop-shadow(0 0 60px rgba(108,92,231,0.25));
    animation: floatLogo 7s ease-in-out infinite;
    margin-bottom: 1.5rem;
}
@keyframes floatLogo {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-16px); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    background: linear-gradient(135deg, #ffffff 0%, #c9c2fd 45%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}
.hero-sub {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

/* Glassmorphism stats bar */
.hero-stats-bar {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.2rem;
    padding: 0.9rem 2.2rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108,92,231,0.28);
    border-radius: 100px;
}
.hs { text-align: center; min-width: 82px; }
.hs-label {
    display: block;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0.18rem;
}
.hs-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.hs-sep {
    width: 1px; height: 34px;
    background: rgba(108,92,231,0.35);
    flex-shrink: 0;
}

.scroll-caret {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 1.25rem;
    z-index: 3;
    animation: caretBounce 2.5s ease-in-out infinite;
}
@keyframes caretBounce {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
    50%      { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
    background: var(--grad);
    border: none;
    padding: 0.78rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.92rem;
    transition: all 0.28s;
    box-shadow: 0 4px 20px rgba(108,92,231,0.38);
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,92,231,0.5); color: #fff; }

.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.28);
    padding: 0.78rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.92rem;
    transition: all 0.28s;
    color: #fff;
    background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); color: #fff; }

.btn-outline-secondary {
    border: 1px solid rgba(108,92,231,0.35);
    border-radius: 50px;
    color: var(--secondary);
    background: transparent;
    font-size: 0.78rem;
    padding: 0.3rem 0.9rem;
    transition: all 0.2s;
}
.btn-outline-secondary:hover { background: rgba(108,92,231,0.15); border-color: var(--primary); color: var(--secondary); }

/* =====================================================
   SECTIONS
   ===================================================== */
section { padding: 5.5rem 0; position: relative; }
.bg-a { background: var(--darker); }
.bg-b { background: var(--dark); }

.s-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(108,92,231,0.1);
    border: 1px solid rgba(108,92,231,0.28);
    border-radius: 50px;
    padding: 0.28rem 0.9rem;
    margin-bottom: 0.85rem;
}
.s-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.s-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.text-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.s-divider {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(108,92,231,0.25), transparent);
    margin: 0;
}

/* =====================================================
   GLASS CARDS
   ===================================================== */
.g-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    height: 100%;
    backdrop-filter: blur(8px);
}
.g-card:hover {
    border-color: var(--border-hov);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feat-icon {
    font-size: 2rem;
    margin-bottom: 1.1rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =====================================================
   ALGO CARDS (About section)
   ===================================================== */
.algo-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 0.75rem;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
}
.algo-card:hover { transform: translateY(-5px); }
.algo-card.c-scrypt:hover   { border-color: #6c5ce7; box-shadow: 0 8px 24px rgba(108,92,231,0.22); }
.algo-card.c-yescrypt:hover { border-color: #00b894; box-shadow: 0 8px 24px rgba(0,184,148,0.22); }
.algo-card.c-whirl:hover    { border-color: #0984e3; box-shadow: 0 8px 24px rgba(9,132,227,0.22); }
.algo-card.c-ghost:hover    { border-color: #e84393; box-shadow: 0 8px 24px rgba(232,67,147,0.22); }
.algo-card.c-balloon:hover  { border-color: #fdcb6e; box-shadow: 0 8px 24px rgba(253,203,110,0.22); }

.algo-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 0.9rem;
}
.c-scrypt   .algo-icon-wrap { background: rgba(108,92,231,0.18); }
.c-yescrypt .algo-icon-wrap { background: rgba(0,184,148,0.18); }
.c-whirl    .algo-icon-wrap { background: rgba(9,132,227,0.18); }
.c-ghost    .algo-icon-wrap { background: rgba(232,67,147,0.18); }
.c-balloon  .algo-icon-wrap { background: rgba(253,203,110,0.18); }

.algo-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.15rem; }
.c-scrypt   .algo-name { color: #a29bfe; }
.c-yescrypt .algo-name { color: #00b894; }
.c-whirl    .algo-name { color: #74b9ff; }
.c-ghost    .algo-name { color: #fd79a8; }
.c-balloon  .algo-name { color: #fdcb6e; }
.algo-hw { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* =====================================================
   MINING CARDS
   ===================================================== */
.mining-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem 1.25rem;
    height: 100%;
    transition: all 0.25s;
}
.mining-card:hover { border-color: var(--border-hov); transform: translateY(-4px); }
.mining-card.highlight {
    border-color: rgba(108,92,231,0.38);
    background: rgba(108,92,231,0.07);
}

/* Guide steps */
.g-step { display: flex; gap: 1.1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.g-step:last-child { margin-bottom: 0; }
.step-n {
    min-width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.88rem;
    flex-shrink: 0;
    color: #fff;
}

/* =====================================================
   POOL STATS TEASER
   ===================================================== */
.pool-banner {
    background: linear-gradient(135deg, rgba(108,92,231,0.14) 0%, rgba(162,155,254,0.07) 100%);
    border: 1px solid rgba(108,92,231,0.32);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pool-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(108,92,231,0.12) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(162,155,254,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.pool-banner-inner { position: relative; z-index: 1; }

/* =====================================================
   STAT CARDS
   ===================================================== */
.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem;
    text-align: center;
    transition: all 0.25s;
}
.stat-card:hover { border-color: var(--border-hov); transform: translateY(-4px); }
.stat-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 0.6rem; }
.stat-label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 0.3rem; }
.stat-val { font-size: 1.35rem; font-weight: 700; color: #fff; }

/* =====================================================
   TOKENOMICS
   ===================================================== */
.t-bar { background: rgba(30,30,60,0.7); border-radius: 50px; height: 9px; overflow: hidden; margin-bottom: 0.3rem; }
.t-fill { height: 100%; border-radius: 50px; width: 0; transition: width 1.4s ease 0.3s; }

/* =====================================================
   DOWNLOAD
   ===================================================== */
.dl-btn {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.15rem;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.25s;
    color: white;
    text-decoration: none;
    margin-bottom: 0.6rem;
}
.dl-btn:hover { background: rgba(108,92,231,0.12); border-color: var(--primary); transform: translateX(4px); color: white; }
.dl-ico { font-size: 1.7rem; margin-right: 0.9rem; color: var(--primary); }

/* =====================================================
   EXCHANGES
   ===================================================== */
.ex-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    margin-bottom: 0.6rem;
    height: 100%;
}
.ex-card:hover { border-color: var(--primary); background: rgba(108,92,231,0.1); transform: translateY(-3px); color: var(--secondary); }
.ex-card small { display: block; color: var(--text-muted); font-size: 0.72rem; font-weight: 400; margin-top: 0.15rem; }

.tracker-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem;
    height: 58px;
    transition: all 0.25s;
    margin-bottom: 0.6rem;
}
.tracker-box:hover { border-color: var(--border-hov); transform: translateY(-3px); }
.tracker-box img { max-height: 28px; max-width: 100%; width: auto; object-fit: contain; }

/* =====================================================
   NEWS
   ===================================================== */
.news-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    transition: all 0.25s;
    height: 100%;
}
.news-card:hover { border-left-color: var(--secondary); transform: translateY(-3px); }
.news-date { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-bottom: 0.4rem; }

/* =====================================================
   ROADMAP
   ===================================================== */
.rm-line {
    position: relative;
    padding: 0.5rem 0;
}
.rm-line::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(var(--primary), var(--secondary));
    transform: translateX(-50%);
}
.rm-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    margin-bottom: 2.2rem;
    position: relative;
}
.rm-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 2.5rem); }
.rm-dot {
    position: absolute; left: 50%; top: 1rem;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--secondary);
    transform: translateX(-50%);
    z-index: 1;
}
.rm-box {
    background: rgba(20,20,45,0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.35rem;
    max-width: 370px;
}
.rm-box.done    { border-color: rgba(0,184,148,0.4); }
.rm-box.current { border-color: rgba(253,203,110,0.4); box-shadow: 0 0 18px rgba(253,203,110,0.08); }
.rm-badge {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.4rem;
}
.rm-done    { background: rgba(0,184,148,0.15); color: #00b894; }
.rm-active  { background: rgba(253,203,110,0.15); color: #fdcb6e; }
.rm-future  { background: rgba(108,92,231,0.15); color: #a29bfe; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.65rem; overflow: hidden; }
.faq-q {
    padding: 1rem 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.92rem;
    background: rgba(20,20,45,0.6);
    transition: background 0.2s;
    user-select: none;
}
.faq-q:hover { background: rgba(108,92,231,0.12); }
.faq-a {
    padding: 0 1.4rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.25s;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.faq-a.open { max-height: 500px; padding: 1rem 1.4rem; }
.faq-icon { transition: transform 0.28s; color: var(--primary); font-size: 0.9rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* =====================================================
   SOCIAL / FOOTER
   ===================================================== */
.social-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(108,92,231,0.1);
    border: 1px solid rgba(108,92,231,0.28);
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0.35rem;
    transition: all 0.25s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); color: #fff; }

footer {
    background: var(--dark);
    border-top: 1px solid rgba(108,92,231,0.14);
    padding: 3rem 0 1.5rem;
}
.ft-link { display: block; color: rgba(255,255,255,0.42); font-size: 0.88rem; margin-bottom: 0.45rem; transition: color 0.2s; }
.ft-link:hover { color: var(--secondary); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.btt {
    position: fixed; bottom: 1.8rem; right: 1.8rem;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff; border: none;
    display: none; align-items: center; justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(108,92,231,0.4);
    transition: all 0.25s;
}
.btt:hover { transform: translateY(-3px); }
.btt.show  { display: flex; }

/* =====================================================
   ANIMATIONS / HELPERS
   ===================================================== */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

.badge-algo {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .hero-stats-bar { gap: 0.9rem; padding: 0.8rem 1.3rem; }
    .hs-sep { display: none; }
    .rm-line::before { left: 18px; }
    .rm-item, .rm-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 3.2rem; }
    .rm-dot { left: 18px; }
    .rm-box { max-width: 100%; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.4rem; }
    .hero-stats-bar { border-radius: 16px; }
    .hs { min-width: 68px; }
}

/* This was added by Stephon G. at 8/29/2026 at 7:31pm */
#mainContent {
    padding-top: 80px;
}

#wBody {
    background: var(--bs-light);
}

.mega-menu {
    width: 700px;
    max-width: calc(100vw - 2rem);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif
}

/* Layout */
.mega-container {
    display: flex;
}

/* LEFT SIDE */
.mega-left {
    width: 200px;
    background: #1e1e1e;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.mega-category {
    padding: 12px;
    cursor: pointer;
    color: #ccc;
    transition: 0.2s;
}

.mega-category:hover,
.mega-category.active {
    background: #2c2c2c;
    color: #fff;
}

/* RIGHT SIDE */
.mega-right {
    flex: 1;
    padding: 15px;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel h6 {
    color: #aaa;
    margin-bottom: 10px;
}

.mega-panel a {
    display: block;
    padding: 6px 0;
    color: #ddd;
    text-decoration: none;
}

.mega-panel a:hover {
    color: #fff;
}
.mega-category i,
.mega-panel a i {
    margin-right: 10px;
    transition: 0.2s;
}

.mega-panel a:hover i {
    transform: scale(1.15);
    color: #f1c40f;
}

.mega-category i,
.mega-panel a i {
    margin-right: 10px;
    transition: 0.2s;
}

.mega-category:hover i,
.mega-panel a:hover i {
    transform: scale(1.15);
    color: #f1c40f;
}

/* Make logout pop slightly */
.mega-category.text-danger:hover {
    background: rgba(255, 0, 0, 0.1);
}
