:root {
    /* Ultra-clean blackish backgrounds with minimal tint */
    --bg-100: #1C1C1D; /* soft charcoal */
    --bg-200: #161616;
    --bg-300: #111112; /* main app background */
    --bg-400: #0C0C0D;
    --bg-500: #080808;
    --bg-600: #050505;

    --bg-disabled: #141414;

    /* Accents: sharper, richer, professional green tones */
    --stroke-100: #36C96A;  /* modern neon-lite green */
    --stroke-200: #1F9F4C;  /* deeper crypto green */
    --stroke-300: #0C6127;  /* dark, natural green for borders */

    /* Text: white-driven with smooth green gradients */
    --text-50:  #FFFFFF; /* pure white */
    --text-100: #EBFFF2; /* slight mint tint */
    --text-200: #C9F8D9;
    --text-300: #A1EBBA;
    --text-400: #72DA93;
    --text-500: #4AC775; /* button text / highlight */
    --text-600: #2FA356;
    --text-700: #1F7D3E;
    --text-800: #14592B;
    --text-900: #0A3418;

    --navbar-height: 84px;
}

.text-50 { color: var(--text-50); }
.text-100 { color: var(--text-100); }
.text-200 { color: var(--text-200); }
.text-300 { color: var(--text-300); }
.text-400 { color: var(--text-400); }
.text-500 { color: var(--text-500); }
.text-600 { color: var(--text-600); }
.text-700 { color: var(--text-700); }
.text-800 { color: var(--text-800); }
.text-900 { color: var(--text-900); }

.fs-sm { font-size: 1.15rem; line-height: 1.4; }
.fs-xxl { font-size: clamp(2rem, 2vw + 1rem, 3rem); line-height: 1.2; }
.fs-xxxl { font-size: clamp(2.5rem, 2vw + 1rem, 4rem); line-height: 1.2; }

.mt-6 { margin-top: 4rem !important; }
.mt-7 { margin-top: 5rem !important; }
.mt-8 { margin-top: 6rem !important; }
.mt-9 { margin-top: 8rem !important; }
.mt-10 { margin-top: 10rem !important; }
.mt-11 { margin-top: 14rem !important; }
.mt-12 { margin-top: 20rem !important; }

.gap-6 { gap: 4rem !important; }
.gap-7 { gap: 5rem !important; }
.gap-8 { gap: 6rem !important; }
.gap-9 { gap: 8rem !important; }
.gap-10 { gap: 10rem !important; }
.gap-11 { gap: 14rem !important; }
.gap-12 { gap: 20rem !important; }

/* TOP GREEN GLOW */
.glow-main {
    width: 100%;
    height: 100vh;
    content: "";
    position: fixed;
    z-index: -2;

    background: radial-gradient(
        circle at 50% 0,
        rgba(54, 201, 106, 0.28) 0%,   /* bright crypto green */
        rgba(20, 24, 20, 0.18) 55%,   /* natural fade */
        rgba(8, 8, 8, 0.12) 85%       /* blends to dark */
    );

    mask: radial-gradient(
        circle at 50% 0,
        black 0%,
        transparent 75%
    );

    right: 0;
    top: 0;
}

body,
html {
    overflow-x: hidden;
}

.body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Inter", sans-serif;
    background-color: var(--bg-500);
    color: var(--text-50);
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.navbar {
    width: 100%;
    position: fixed !important;
    top: 0 !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.language-dropdown-toggle[aria-expanded="true"] {
    background: var(--bg-300);
}

.language-dropdown-chevron {
    transition: transform 0.2s;
}

.language-dropdown-toggle[aria-expanded="true"] .language-dropdown-chevron {
    transform: rotate(180deg);
}

.footer__links a {
    color: var(--text-200) !important;
    transition: all 0.2s;
}

.footer__links a:hover {
    color: var(--text-50) !important;
}

/* FORM FIELDS */
.form-control:focus {
    color: var(--text-50) !important;
    background-color: var(--bg-300) !important;
    border-color: var(--stroke-300) !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-control:disabled {
    background-color: var(--bg-disabled) !important;
    color: var(--text-300) !important;
    border-color: var(--stroke-300) !important;
    opacity: 0.9 !important;
}

.btn-primary:disabled {
    background-color: var(--bg-disabled) !important;
    color: var(--text-300) !important;
    border-color: var(--stroke-300) !important;
    opacity: 0.9 !important;
}

/* CUSTOM SCROLLBAR */
.scrollbar::-webkit-scrollbar {
    width: 6px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--bg-100);
    border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(54, 201, 106, 0.9); /* green hover */
}

.scrollbar::-webkit-scrollbar-thumb:active {
    background-color: rgba(54, 201, 106, 0.8); /* green active */
}






/* ============================
   HEADINGS
============================= */

.section-title {
    font-size: 2.7rem;
    font-weight: 700;
}

.section-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    color: var(--text-300);
}

.text-gradient {
    background: linear-gradient(90deg, #36C96A, #1EB454);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================
   PROVEN RESULTS — METRIC CARDS
============================= */

.results-section {
    padding: 120px 0 80px;
}

.metric-card {
    background: var(--bg-300);
    border: 1px solid rgba(54, 201, 106, 0.2);
    border-radius: 18px;
    padding: 30px 20px;
    transition: 0.25s ease;
}

.metric-card:hover {
    border-color: #36C96A;
    box-shadow: 0 0 22px rgba(54, 201, 106, 0.25);
    transform: translateY(-4px);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
}

.metric-label {
    margin-top: 5px;
    color: var(--text-400);
    font-size: 0.95rem;
}

/* ============================
   CAPABILITIES BAR
============================= */

.capabilities-bar {
    background: var(--bg-200);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.03);
}

.capabilities-bar div {
    flex: 1;
    min-width: 110px;
    color: var(--text-200);
    font-size: 0.95rem;
}

.capabilities-bar strong {
    display: block;
    font-size: 1.2rem;
    color: #36C96A;
}

/* ============================
   AI TECHNOLOGY SECTION
============================= */

.ai-technology-section {
    padding: 0;
}

.ai-card {
    background: var(--bg-300);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(54, 201, 106, 0.15);
    transition: 0.25s ease;
    text-align: left;
}

.ai-card:hover {
    border-color: #36C96A;
    box-shadow: 0 0 25px rgba(54, 201, 106, 0.25);
    transform: translateY(-4px);
}

.ai-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #36C96A20, #1EB45430);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ai-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-50);
}

.ai-card p {
    font-size: 0.95rem;
    color: var(--text-300);
}

.learn-more {
    margin-top: 12px;
    display: inline-block;
    color: #36C96A;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    color: #48e680;
}








/* --- HERO BACKGROUND --- */
.hero-section {
    position: relative;
    padding: 20px 0 120px;
    background: radial-gradient(circle at top, rgba(54, 201, 106, 0.25), rgba(8, 8, 8, 1));
    color: #fff;
    overflow: hidden;
}

/* --- Text Styling --- */
.hero-title {
    margin-top: 5px;
    font-size: 4.5rem;
    font-weight: 500;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 3.5rem;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #36C96A, #1EB454);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--text-300);
}

.hero-description {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--text-200);
}

.highlighted {
    color: #36C96A;
    font-weight: bold;
}

.small-text {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-300);
}

/* --- CTA BUTTON --- */
.hero-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(to right, #36C96A, #1EB454);
    color: #000;
    transition: 0.25s ease;
}

.hero-btn:hover {
    background: linear-gradient(to right, #41D977, #22C263);
    transform: translateY(-2px);
    color: #000;
}

/* CTA Button — Outline Version */
.hero-btn-outline {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #1EB454; /* matches main gradient tone */
    color: #1EB454;
    transition: 0.25s ease;
}

.hero-btn-outline:hover {
    background: rgba(30, 180, 84, 0.12); /* subtle green tint */
    border-color: #28CA6B; /* hover accent */
    color: #28CA6B;
    transform: translateY(-2px);
}



/* --- Stats Section --- */
.hero-stats {
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(54, 201, 106, 0.25);
    border-radius: 16px;
    padding: 20px 10px;
    backdrop-filter: blur(4px);
    transition: 0.25s ease;
}

.stat-card:hover {
    border-color: #36C96A;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(54, 201, 106, 0.25);
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 700;
}

.stat-label {
    margin-top: 4px;
    font-size: 0.95rem;
    color: var(--text-400);
}

.stat-growth {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #36C96A;
}

.active-text {
    color: #36C96A;
    font-weight: 700;
}

/* --- Responsive Tweaks --- */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 2rem;
    }
}



/* ─────────────────────────────────────────────
   Section Container
   ───────────────────────────────────────────── */
.security-section {
    background: var(--bg-600);
    padding: 120px 0;
    color: var(--text-100);
    text-align: center;
}

/* Subtitle */
.security-section__label {
    color: var(--text-400);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Main Title */
.security-section__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-50);
    margin-bottom: 20px;
}

/* Description */
.security-section__desc {
    max-width: 620px;
    margin: 0 auto 60px auto;
    color: var(--text-300);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
   Cards Wrapper
   ───────────────────────────────────────────── */
.security-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   Individual Card
   ───────────────────────────────────────────── */
.security-card {
    background: linear-gradient(
        180deg,
        rgba(40, 167, 69, 0.06) 0%,
        rgba(10, 20, 10, 0.35) 100%
    );
    border-radius: 20px;
    padding: 35px;
    width: 380px;
    border: 1px solid rgba(40, 167, 69, 0.15);
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.08);
    position: relative;
    transition: 0.25s ease;
}

.security-card:hover {
    border-color: rgba(40, 167, 69, 0.4);
    box-shadow: 0 0 40px rgba(40, 167, 69, 0.15);
    transform: translateY(-4px);
}

/* Icon Badge */
.security-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a745, #1f7e36);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

/* Title */
.security-card__title {
    font-size: 1.2rem;
    color: var(--text-100);
    margin-bottom: 12px;
}

/* Body Text */
.security-card__text {
    color: var(--text-300);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   Special Middle Card (highlight)
   ───────────────────────────────────────────── */
.security-card--highlight {
    background: linear-gradient(
        180deg,
        rgba(40, 167, 69, 0.15),
        rgba(10, 20, 10, 0.55)
    );
    border: 1px solid rgba(40, 167, 69, 0.35);
    box-shadow: 0 0 45px rgba(40, 167, 69, 0.18);
}

.security-card--highlight .security-card__title {
    font-size: 2rem;
    color: #28a745;
}

.security-card--highlight .security-card__text {
    font-size: 0.95rem;
}

/* CTA Button */
.security-card__cta {
    margin-top: 25px;
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #1c6b30);
    padding: 12px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    transition: 0.25s ease;
}

.security-card__cta:hover {
    background: linear-gradient(135deg, #2ecf5a, #239843);
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.25);
}

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media(max-width: 768px) {
    .security-card {
        width: 100%;
    }
}



/* ---------------------------------------
   TOOLS SECTION – Updated
--------------------------------------- */

.tools-section {
    background: var(--bg-500);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.tools-section .section-title {
    color: var(--text-50);
    font-size: 2.4rem;
    font-weight: 700;
}

.tools-section .section-subtitle {
    color: var(--text-300);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Base Tool Card */
.tool-card {
    background: var(--bg-300);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 30px;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Neon hover glow */
.tool-card:hover {
    transform: translateY(-6px);
    border-color: var(--stroke-100);
    box-shadow: 0px 0px 25px rgba(54, 201, 106, 0.18);
}

/* Tool Icon */
.tool-icon svg {
    display: block;
    margin: 0 auto;
}

/* Tool Titles */
.tool-title {
    color: var(--text-50);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Tool Body */
.tool-text {
    color: var(--text-300);
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
}

/* Learn more link */
.tool-link {
    color: var(--stroke-100);
    font-weight: 600;
    text-decoration: none;
}
.tool-link:hover {
    color: var(--stroke-200);
    text-decoration: underline;
}

/* ---------------------------------------
   MAIN TOOL – Automated Trading Bot
--------------------------------------- */

.tool-card-main {
    background: linear-gradient(
        to bottom right,
        rgba(36, 185, 90, 0.08),
        rgba(10, 10, 10, 0.6)
    );
    border: 1px solid rgba(36, 185, 90, 0.25);
    padding: 45px 35px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

/* Highlight glow layer */
.tool-card-main::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(36, 185, 90, 0.20),
        transparent 60%
    );
    z-index: 0;
}

/* Lift + brighter glow on hover */
.tool-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 45px rgba(54, 201, 106, 0.25);
    border-color: var(--stroke-100);
}

/* Bring content above glow */
.tool-card-main > * {
    position: relative;
    z-index: 1;
}

/* Title size bump */
.tool-card-main .tool-title {
    font-size: 1.6rem;
}

/* Icon bump */
.tool-card-main .tool-icon svg {
    width: 85px;
    height: 85px;
}


/* ---------------------------------------
   RESPONSIVE
--------------------------------------- */

@media (max-width: 992px) {
    .tool-card-main {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .tool-card-main .tool-title {
        font-size: 1.45rem;
    }

    .tool-card-main .tool-icon svg {
        width: 70px;
        height: 70px;
    }
}





/* --------------------------
   AS SEEN ON SECTION
--------------------------- */
.as-seen-on-section {
    background: var(--bg-500);
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.as-seen-on-section .section-title {
    font-size: 2rem;
    color: var(--text-50);
    font-weight: 700;
}

.platform-logo {
    height: 40px;
    opacity: 0.75;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.2s ease;
    margin: 0 2rem;
}

.platform-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Continuous marquee animation */
.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(200%); /* Enough to hold duplicated logos */
    animation: scroll-logos 40s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Disclaimer */
.as-seen-on-disclaimer {
    color: var(--text-500);
    font-size: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }
    .platform-logo {
        height: 32px;
        margin: 0 1rem;
    }
}









/* ================================ Styles added by MOG ==============================*/
/* Popup overlay - hidden by default */
.popup-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: flex-end; /* align content bottom */
  pointer-events: none; /* prevent interaction when hidden */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2000;
  overflow: hidden;
}

/* Show popup when targeted */
.popup-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

/* Popup content */
.popup-content {
  background: #072f14;
  width: 100%;
  max-height: 85%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 15px 50px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;	
  
  position: absolute;
  bottom: 60px; /* make it touch bottom of screen */
}

/* Slide up when targeted */
.popup-overlay:target .popup-content {
  transform: translateY(0);
}

/* Close button */
.close-btn {
  font-size: 24px;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 15px;
  text-decoration: none;
}

/* Popup title */
.popup-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

/* Card list */
.popup-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cards */
.popup-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 12px 15px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.popup-card:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* Card left (icon + text) */
.popup-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Card text */
.popup-card-text {
  display: flex;
  flex-direction: column;
}

.popup-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.popup-card-sub {
  font-size: 12px;
  color: #ccc;
  line-height: 1.3;
}

/* Icons */
.popup-card-left svg,
.popup-card-left i {
  font-size: 28px;
  color: #ff9800;
}

/* Right arrow */
.popup-card i.fa-chevron-right {
  font-size: 16px;
  color: #888;
}

/* Scrollbar for popup content */
.popup-content::-webkit-scrollbar {
  width: 5px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 5px;
}




/* Floating Button */
.fab-container {
  position: fixed;
  bottom: 80px;
  right: 25px;
  z-index: 999;
}
.fab {
  background: #28a745;
  border: none;
  border-radius: 50%;
  width: 60px!important;
  height: 60px!important;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.fab:hover {
  background: #19692c;
  transform: scale(1.05);
}

/* Optional: Hide Scroll Behind Modal */
body.modal-open {
  overflow: hidden;
}
	
	




/* ----------------------------
   Discover Section Styles
   (Isolated to avoid conflicts)
-----------------------------*/
/*
.discover-section {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  padding-bottom: 40px;
}
*/



  .promo-card{
    width: calc(min(92vw, 520px));
    background: #00e676;
    color: #000;
    border-radius: 20px;
    padding: 26px;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(2,2,2,0.45);
    display:flex;
    flex-direction:column;
    gap: 18px;
	margin: 0 auto; /* centers it horizontally */
  }

  /* Top icon (circular badge) */
  .promo-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background: rgba(0,0,0,0.14);
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:center;
    box-shadow: inset 0 -2px 0 rgba(255,255,255,0.06);
  }
  .promo-icon svg{ width:28px; height:28px; display:block; }

  /* Headline */
  .promo-title{
    font-size:20px;
    line-height:1.1;
    font-weight:700;
    text-align:center;
    margin:0;
  }

  /* Body text */
  .promo-copy{
    font-size:15px;
    line-height:1.45;
    margin:0;
    text-align:center;
    opacity:0.95;
  }

  /* CTA button */
  .promo-cta{
    margin-top:6px;
    background:#000;
    color:#fff;
    border:none;
    height: 52px;
    border-radius:999px; /* pill */
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    text-decoration:none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    transition:transform .12s ease, box-shadow .12s ease;
  }
  .promo-cta:active{ transform: translateY(1px); }
  .promo-cta:focus{ outline:3px solid rgba(0,0,0,0.12); outline-offset:3px; }

  /* small note under CTA */
  .promo-note{
    text-align:center;
    font-size:12px;
    opacity:0.9;
    margin:0;
  }

  /* Responsive tweaks */
  @media (min-width:700px){
    .promo-title{ font-size:22px; }
    .promo-copy{ font-size:16px; }
  }






/* Search bar */
.discover-search {
  margin: 16px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
}

.discover-search input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* Category chips */
.discover-chips {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.discover-chips::-webkit-scrollbar { display: none; }

.discover-chip {
  background: #1a1a1a;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.discover-chip.active {
  background: #f9e0ff;
  color: #000;
}

/* Learn card */
.discover-learn-card {
  background: #3b82f6;
  margin: 12px 16px;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.discover-learn-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: url('https://images.unsplash.com/photo-1601597111045-31e8a03c8d3c?auto=format&fit=crop&w=200&q=60') center/cover;
  flex-shrink: 0;
}

.discover-learn-content {
  flex: 1;
}

.discover-learn-title {
  font-weight: 600;
  font-size: 15px;
}

.discover-learn-text {
  font-size: 13px;
  opacity: 0.9;
  margin: 6px 0 10px;
}

.discover-learn-btn {
  background: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.discover-learn-btn svg {
  width: 12px;
  height: 12px;
}



/* Horizontal scroll cards */
.discover-scroll-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10 16px 20px;
  scrollbar-width: none;
}

.discover-scroll-row::-webkit-scrollbar { display: none; }

.discover-stock-card {
  background: #000;
  border-radius: 14px;
  padding: 14px;
  min-width: 140px;
  flex-shrink: 0;
}

.discover-stock-card img {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
}

.discover-stock-name {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 4px;
/*  color: var(--cl-primary-text-color, transparent);*/
  color: #fff;
}

.discover-stock-price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
/*  color: var(--cl-primary-text-color, transparent);*/
  color: #fff;
}

.discover-stock-change {
  font-size: 13px;
  color: #00ff91;
}


/* Reward promo card (new) */
  .reward-card{
	width: calc(min(92vw, 520px));
	background: #bffadf;   /* light mint background */
	margin: 12px auto;     /* centers horizontally */
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  .reward-header{
    background:linear-gradient(180deg, rgba(0,0,0,0.03), transparent);
    padding:18px 18px 12px;
    font-weight:700;
    font-size:20px;
    color:#06140b; /* dark text on mint */
  }
  .reward-body{
    padding:14px 18px 20px;
    color:#06140b;
    font-size:15px;
    line-height:1.45;
  }
  .reward-body strong{ color:#06140b; font-weight:700; }
  .reward-cta{
    display:block;
    margin:14px 18px 6px;
    background: #000000;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }
  .reward-tnc{
    display:block;
    margin:8px 18px 18px;
    color:#05321f;
    text-decoration:underline;
    font-size:13px;
  }

/* Today's Alerts — horizontally scrollable cards */
  .alerts-row{
    display:flex;
    gap:12px;
    padding:0 16px 22px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .alerts-row::-webkit-scrollbar{ display:none; }

  .alert-card{
    width:200px;
    border-radius:14px;
    padding:14px;
    flex-shrink:0;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }

  /* two sample gradients like screenshot */
  .alert-stocks-card{
    background: linear-gradient(180deg,#1e90ff,#0b63c9); /* blue gradient */
  }
  .alert-crypto-card{
    background: linear-gradient(180deg,#2dd4bf,#06b6d4); /* teal-green gradient */
  }

  .alert-title{ font-weight:700; font-size:15px; margin-bottom:10px; }
  .alert-sub{ font-size:13px; opacity:0.95; margin-bottom:12px; }
  .btn-cta{
    background:#000;
    color:#fff;
    padding:10px 12px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:600;
    text-decoration:none;
  }



/*Bottom Navigation Bar*/
/* Mobile Bottom Navbar Container */
.mobile-bottom-navbar {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 1px solid #ccc;
  background: #000;
  z-index: 1000;
  height: 62px;
}

/* Inner flex container */
.mobile-bottom-navbar .mobile-bottom-navbar-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Buttons stacked vertically for icon + label */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl {
  height: 100%;
  margin: 0;
  line-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  display: flex;
  flex-direction: column; /* icon on top, label below */
  align-items: center;
  justify-content: center;
  flex: 1; /* evenly spaced buttons */
}

/* SVG icon size */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl svg {
  width: 24px;
  height: 24px;
}

/* SVG path color */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl svg path {
  fill: var(--cl-secondary-text-color);
}

/* Notification / message badges */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl span.info-indicators {
  position: absolute;
  top: 2px;
  right: 18px;
  background: var(--cl-danger-color);
  color: #fff;
  text-align: center;
  padding: 2px 5px;
  border-radius: 50%;
  z-index: 10;
  display: inline-flex;
  font-size: 9px;
  line-height: 1;
  min-height: 13px;
  min-width: 20px;
  align-items: center;
  justify-content: center;
}

/* Pulse animation for badges */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl span.info-indicators::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  content: "";
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--cl-danger-color-lighten-5);
  transform: scale(1);
  animation: pulse 3s infinite;
}

/* Hide badge if empty */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl span.info-indicators:empty {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* Labels under icons */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl .nav-label {
  font-size: 10px;
  color: var(--cl-secondary-text-color);
  margin-top: 2px;
  line-height: 1;
  text-align: center;
}

/* Active underline */
.mobile-bottom-navbar .mobile-bottom-navbar-inner a.navbar-ctrl.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--text-600);
  left: 0;
  bottom: 0;
  right: 0;
}




