
    /* Smooth scrolling for anchor links */
    html {
      scroll-behavior: smooth;
    }
    
    /* Offset for fixed navbar */
    section[id] {
      scroll-margin-top: 80px;
    }
    
    /* Active nav link styling */
    .nav-link.active {
      color: #4f46e5 !important;
    }
    
    /* Mobile Access Button */
    .mobile-access-btn {
      display: none;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 1rem;
      background: transparent;
      border: 1px solid #4f46e5;
      border-radius: 8px;
      color: #ffffff;
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      margin-right: 0.75rem;
      white-space: nowrap;
    }
    
    .mobile-access-btn:hover {
      background: #4f46e5;
      color: #ffffff;
    }
    
    .mobile-access-btn svg {
      width: 18px;
      height: 18px;
      margin-right: 6px;
    }
    
    @media (max-width: 991px) {
      .mobile-access-btn {
        display: flex;
      }
    }
    
    @media (max-width: 480px) {
      .mobile-access-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
      }
      
      .mobile-access-btn span {
        display: none;
      }
      
      .mobile-access-btn svg {
        margin-right: 0;
      }
    }
 
    .projection-slider {
      margin-top: 1.5rem;
      padding: 0 1rem;
    }
    .projection-slider label {
      display: block;
      color: #A5ADCF;
      margin-bottom: 0.5rem;
    }
    .day-range {
      width: 100%;
      margin-bottom: 0.5rem;
    }
    .range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #5D6588;
    }
    .tier-select {
      background: #1E1F25 !important;
      color: #6db4f8 !important;
      border: 1px solid #34384C !important;
    }
    .mobile-platform__community-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .btn-community {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      background: #252b3d;
      border-radius: 12px;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .btn-community:hover {
      transform: translateY(-5px);
    }
    .btn-community__content {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .btn-community__subtitle {
      font-size: 0.75rem;
      color: #8b92a8;
      margin: 0;
    }
    .btn-community__title {
      font-size: 1.125rem;
      font-weight: bold;
      color: #ffffff;
      margin: 0;
    }

    /* Brand Slider Institutional Styles */
    .brand-slider-section {
      position: relative;
      overflow: hidden;
      padding: 140px 0 100px; /* Increased top padding to move it downward */
      margin-top: -100px;
      background: transparent;
      z-index: 10;
    }
    .hero_area__sliderarea {
      position: relative;
      width: 100%;
      height: 120px;
      display: flex;
      align-items: center;
    }
    /* The underlying secondary line - lighter/alternate color */
    .hero_area__backgroundrote {
      height: 120px;
      transform: rotate(2.5deg); /* Alternating rotation for the design */
      background: #090a97;
      display: block;
      width: 120%;
      margin-left: -10%;
      position: absolute;
      top: 10px; /* Offset to show underneath */
      z-index: 1;
      opacity: 0.6;
    }
    /* The main foreground line - vibrant blue */
    .hero_area__sliders {
      background: #030e23;
      height: 120px;
      transform: rotate(-3.5deg);
      display: flex;
      align-items: center;
      width: 120%;
      margin-left: -10%;
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    }
    .brand-carousel-container {
      width: 100%;
      overflow: hidden;
    }
    .brand-carousel-track {
      display: flex;
      gap: 0;
      width: fit-content;
      animation: scroll-brand-slider 35s linear infinite;
    }
    .brand-carousel-group {
      display: flex;
      flex-shrink: 0;
      align-items: center;
    }
    .brand-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 60px;
      outline: none;
      flex-shrink: 0;
    }
    @keyframes scroll-brand-slider {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .brand-item img {
      height: 38px;
      width: auto;
      /* filter: brightness(0) invert(1); */
      opacity: 0.9;
      /* Logos naturally follow the -3.5deg line */
    }

    /* Payout Marquee Section */
    .payout-marquee-section {
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #0d0d12 0%, #1a1a24 50%, #0d0d12 100%);
      border-top: 2px solid #4f46e5;
      border-bottom: 2px solid #4f46e5;
      box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15), 0 0 60px rgba(79, 70, 229, 0.05);
    }
    .payout-marquee-section::before,
    .payout-marquee-section::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
    }
    .payout-marquee-section::before {
      top: 0;
    }
    .payout-marquee-section::after {
      bottom: 0;
    }
    .payout-marquee-section .secTitle {
      color: #ffffff;
      margin-bottom: 2rem;
    }
    .payout-marquee-section .marquee-wrapper {
      position: relative;
      display: flex;
      user-select: none;
      gap: 1.5rem;
      padding: 15px 0;
      margin: -15px 0;
    }
    .payout-marquee-section[data-speed="slow"] .marquee-track {
      --payout-marquee-duration: 50s;
    }
    .payout-marquee-section .marquee-track {
      display: flex;
      gap: 1.5rem;
      animation: scroll-payout-marquee var(--payout-marquee-duration, 30s) linear infinite;
    }
    .payout-marquee-section .marquee-content {
      flex-shrink: 0;
      display: flex;
      gap: 1.5rem;
    }
    @keyframes scroll-payout-marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .payout-item {
      flex-shrink: 0;
      width: 200px;
      max-width: 90vw;
      background: var(--g-back-dark);
      border: 1px solid var(--g-stroke);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .payout-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      border-color: #4f46e5;
    }
    .payout-card {
      height: 100%;
    }
    .payout-image {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      background: var(--g-dark);
      overflow: hidden;
    }
    .payout-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .payout-overlay-icons {
      position: absolute;
      bottom: 8px;
      left: 8px;
      right: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .payout-item:hover .payout-overlay-icons {
      opacity: 1;
    }
    .payout-zoom-btn {
      margin-right: auto;
    }
    .payout-icon-btn {
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgb(0 0 0 / .7);
      border: 1px solid rgb(255 255 255 / .2);
      color: rgb(255 255 255 / .85);
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      text-decoration: none;
    }
    .payout-icon-btn:hover {
      background: #4f46e5;
      border-color: #4f46e5;
      color: white;
    }
    .payout-discord-btn {
      margin-left: auto;
      text-decoration: none;
    }
    .payout-info {
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: #15151c;
      border-top: 1px solid rgba(79, 70, 229, 0.3);
    }
    .payout-flag {
      display: flex;
      align-items: center;
    }
    .payout-flag img {
      width: 24px;
      height: auto;
      border-radius: 2px;
    }
    .payout-name {
      font-size: 13px;
      color: #e2e8f0;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 70px;
    }
    .payout-amount {
      font-size: 14px;
      color: #22c55e;
      font-weight: 700;
      margin-left: auto;
      text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }
    /* Payout Zoom Modal */
    .payout-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    .payout-modal.active {
      display: flex;
    }
    .payout-modal-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }
    .payout-modal-content img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
    }
    .payout-modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 32px;
      cursor: pointer;
      padding: 5px 10px;
    }
    .payout-modal-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-radius: 0 0 8px 8px;
    }
    .payout-modal-info .payout-flag img {
      width: 32px;
    }
    .payout-modal-info .payout-name {
      font-size: 1.125rem;
    }
    .payout-modal-info .payout-amount {
      font-size: 1.25rem;
      margin-left: auto;
    }
    @media (max-width: 768px) {
      .payout-item {
        width: 160px;
      }
      .payout-marquee-section .marquee-track {
        --payout-marquee-duration: 35s;
      }
    }
    
    /* ==========================================
       ROTATING HERO SHAPE - Endless Animation
       ========================================== */
    .hero_area__shape {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    
    .hero_area__shape img {
      position: absolute;
      top: -30%;
      left: -10%;
      max-width: 60%;
      height: auto;
      z-index: -1;
      opacity: 0.6;
    }
    
    /* Rotation Animation */
    .rotated_animattwo {
      animation: rotated-animattwo 40s linear infinite;
    }
    
    @keyframes rotated-animattwo {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    /* Responsive Positioning */
    @media (max-width: 1499px) {
      .hero_area__shape img {
        top: -15%;
        left: -1%;
        max-width: 57%;
    }
    }
    
    @media (max-width: 1199px) {
      .hero_area__shape img {
        top: -6%;
        left: -3%;
        max-width: 62%;
    }
    }
    
    @media (max-width: 991px) {
      .hero_area__shape img {
        top: -12%;
        left: 98px;
        max-width: 81%;
    }
    }
    
    @media (max-width: 768px) {
      .hero_area__shape img {
        top: -22px;
        left: 57px;
        max-width: 86%;
        opacity: 0.4;
    }
    }
    
    @media (max-width: 480px) {
      .hero_area__shape img {
        top: -5%;
        left: 5%;
        max-width: 89%;
        opacity: 0.8;
    }
    }
    
    /* Position utility class */
    .position-absolute {
      position: absolute !important;
    }
    
    /* ==========================================
       CRYPTO MARQUEE - Continuous Scroll
       ========================================== */
    .crypto-marquee-wrapper {
      overflow: hidden;
      width: 100%;
      padding: 20px 0;
    }
    
    .crypto-marquee {
      display: flex;
      gap: 20px;
      animation: crypto-scroll 30s linear infinite;
      width: max-content;
    }
    
    .crypto-marquee:hover {
      animation-play-state: paused;
    }
    
    @keyframes crypto-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    .crypto-card {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(30, 31, 37, 0.8);
      border: 1px solid rgba(52, 56, 76, 0.5);
      border-radius: 16px;
      padding: 15px 20px;
      min-width: 320px;
      backdrop-filter: blur(10px);
    }
    
    .crypto-card__icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
    }
    
    .crypto-card__icon img {
      width: 100%;
      height: 100%;
    }
    
    .crypto-card__chart {
      width: 80px;
      height: 50px;
      flex-shrink: 0;
    }
    
    .crypto-chart-render {
      width: 100%;
      height: 100%;
    }
    
    .crypto-card__change {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 5px 10px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      flex-shrink: 0;
    }
    
    .crypto-card__change--up {
      background: rgba(17, 202, 190, 0.15);
      color: #11CABE;
    }
    
    .crypto-card__change--down {
      background: rgba(250, 34, 86, 0.15);
      color: #FA2256;
    }
    
    .crypto-card__change img {
      width: 16px;
      height: 16px;
    }
    
    .crypto-card__info {
      margin-left: auto;
      text-align: right;
    }
    
    .crypto-card__name {
      color: #8b92a8;
      font-size: 12px;
      margin: 0;
    }
    
    .crypto-card__price {
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      margin: 2px 0;
      font-family: 'Graphik', sans-serif;
    }
    
    .crypto-card__code {
      color: #5D6588;
      font-size: 11px;
      margin: 0;
      text-transform: uppercase;
    }
    
    @media (max-width: 768px) {
      .crypto-card {
        min-width: 280px;
        padding: 12px 15px;
      }
      
      .crypto-card__icon {
        width: 40px;
        height: 40px;
      }
      
      .crypto-card__chart {
        width: 60px;
        height: 40px;
      }
      
      .crypto-card__price {
        font-size: 16px;
      }
    }
    
    /* ==========================================
       3-STAGE NARRATIVE LOOP - Hero Animation
       ========================================== */
    .hero-narrative-container {
      position: relative;
      min-height: 320px;
    }
    
    .hero-stage {
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    /* System Status Badge */
    .system-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(17, 202, 190, 0.1);
      border: 1px solid rgba(17, 202, 190, 0.3);
      border-radius: 50px;
      margin-bottom: 1.5rem;
      font-family: 'Graphik', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #11CABE;
    }
    
    .status-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      animation: pulse-indicator 2s ease-in-out infinite;
    }
    
    .status-live {
      background: #22c55e;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }
    
    .status-optimizing {
      background: #11CABE;
      box-shadow: 0 0 10px rgba(17, 202, 190, 0.5);
    }
    
    .status-ready {
      background: #246CF9;
      box-shadow: 0 0 10px rgba(36, 108, 249, 0.5);
    }
    
    @keyframes pulse-indicator {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }
    
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
      50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    }
    
    /* Stage 1: Neural Masterpiece - Dispersal Effect */
    .hero-title-animated {
      background: linear-gradient(135deg, #11CABE 0%, #246CF9 50%, #706DF8 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 4s ease infinite;
    }
    
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    
    .hero-stage.dispersing .hero-title-animated {
      animation: dispersal-effect 0.8s ease forwards;
    }
    
    .hero-stage.dispersing .hero__subtitle {
      animation: dispersal-effect 0.8s ease 0.1s forwards;
    }
    
    @keyframes dispersal-effect {
      0% { 
        opacity: 1; 
        filter: blur(0);
        transform: translateY(0);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
      }
      50% {
        filter: blur(2px);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
      }
      100% { 
        opacity: 0; 
        filter: blur(8px);
        transform: translateY(-20px);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
      }
    }
    
    /* Stage 2: Institutional Edge - Typo/Glitch Effect */
    .hero-title-typo {
      position: relative;
      display: inline-block;
    }
    
    .hero-stage.glitching .hero-title-typo {
      animation: typo-glitch 0.6s ease forwards;
    }
    
    @keyframes typo-glitch {
      0% { opacity: 0; clip-path: inset(50% 50% 50% 50%); }
      10% { opacity: 1; clip-path: inset(10% 0 60% 0); transform: translateX(-2px); }
      20% { clip-path: inset(80% 0 5% 0); transform: translateX(2px); }
      30% { clip-path: inset(30% 0 40% 0); transform: translateX(-1px); }
      40% { clip-path: inset(60% 0 20% 0); transform: translateX(1px); }
      50% { clip-path: inset(15% 0 70% 0); transform: translateX(-2px); }
      60% { clip-path: inset(70% 0 10% 0); transform: translateX(2px); }
      70% { clip-path: inset(25% 0 50% 0); transform: translateX(-1px); }
      80% { clip-path: inset(50% 0 30% 0); transform: translateX(1px); }
      90% { clip-path: inset(5% 0 80% 0); transform: translateX(-1px); }
      100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    }
    
    /* Stage 3: Action Incline - Blur-to-Focus */
    .hero-title-focus {
      opacity: 0;
      filter: blur(20px);
      transform: scale(0.95);
    }
    
    .hero-stage.focusing .hero-title-focus {
      animation: blur-to-focus 1s ease forwards;
    }
    
    .hero-stage.focusing .hero__subtitle {
      animation: blur-to-focus 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    @keyframes blur-to-focus {
      0% { 
        opacity: 0; 
        filter: blur(20px);
        transform: scale(0.95);
      }
      60% {
        opacity: 0.8;
        filter: blur(5px);
        transform: scale(1.01);
      }
      100% { 
        opacity: 1; 
        filter: blur(0);
        transform: scale(1);
      }
    }
    
    /* Hero Stage Transitions */
    .hero-stage.active {
      display: block !important;
      animation: stage-enter 0.6s ease forwards;
    }
    
    @keyframes stage-enter {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .hero-stage.exiting {
      animation: stage-exit 0.5s ease forwards;
    }
    
    @keyframes stage-exit {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(-10px); }
    }
    
    /* Narrative Progress Indicator */
    .narrative-progress {
      display: flex;
      gap: 8px;
      margin-top: 2rem;
      justify-content: flex-start;
    }
    
    .narrative-dot {
      width: 32px;
      height: 3px;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .narrative-dot.active {
      background: #11CABE;
      box-shadow: 0 0 10px rgba(17, 202, 190, 0.5);
    }
    
    .narrative-dot:hover {
      background: rgba(17, 202, 190, 0.5);
    }
    
    @media (max-width: 768px) {
      .hero-narrative-container {
        min-height: 280px;
      }
      .narrative-progress {
        justify-content: center;
      }
    }
  


    /* ==========================================
       MARKETS SECTION
       ========================================== */
    .market-section {
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #0d0d12 0%, #1a1a24 50%, #0d0d12 100%);
      border-top: 2px solid #4f46e5;
      border-bottom: 2px solid #4f46e5;
      box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15), 0 0 60px rgba(79, 70, 229, 0.05);
    }
    .market-section::before,
    .market-section::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
    }
    .market-section::before { top: 0; }
    .market-section::after { bottom: 0; }
    .market-header { text-align: center; margin-bottom: 2rem; }
    .market-title {
      color: #ffffff;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 700;
      margin-bottom: 0.8rem;
    }
    .market-week-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 6px 16px 6px 10px;
      border-radius: 50px;
      margin-bottom: 1.2rem;
    }
    .market-week-logo { height: 26px; width: auto; animation: none !important; }
    .market-week-text {
      color: #11CABE;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
    }
    .market-tabs {
      display: inline-flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 6px;
      border-radius: 14px;
    }
    .market-tab {
      background: transparent;
      border: 1px solid transparent;
      color: #8b92a8;
      padding: 9px 22px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .market-tab:hover { color: #ffffff; background: rgba(255,255,255,0.04); }
    .market-tab.active {
      background: linear-gradient(135deg, rgba(79,70,229,0.35), rgba(17,202,190,0.2));
      border-color: rgba(79,70,229,0.5);
      color: #ffffff;
      box-shadow: 0 6px 24px rgba(79,70,229,0.2);
    }

    /* Marquee - exact same logic as payout section */
    .market-marquee-wrapper {
      position: relative;
      display: flex;
      user-select: none;
      gap: 1.5rem;
      padding: 15px 0;
      margin: -15px 0;
    }
    .market-marquee-track {
      display: flex;
      gap: 1.5rem;
      animation: scroll-market-marquee 40s linear infinite;
    }
    .market-marquee-content {
      flex-shrink: 0;
      display: flex;
      gap: 1.5rem;
    }
    @keyframes scroll-market-marquee {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    /* Market Cards */
    .market-item {
      flex-shrink: 0;
      width: 280px;
      max-width: 90vw;
      background: var(--g-back-dark);
      border: 1px solid var(--g-stroke);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .market-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      border-color: #4f46e5;
    }
    .market-card-inner { height: 100%; padding: 20px; }
    .market-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .market-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      flex-shrink: 0;
      overflow: hidden;
    }
    .market-card-icon img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }
    .market-card-meta { flex: 1; min-width: 0; }
    .market-card-meta h4 {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
    }
    .market-card-meta span {
      color: #6b7191;
      font-size: 0.78rem;
      display: block;
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .market-card-trend {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .market-card-trend.up {
      background: rgba(17,202,190,0.14);
      color: #11CABE;
    }
    .market-card-trend.down {
      background: rgba(250,34,86,0.12);
      color: #FA2256;
    }
    .market-card-body { text-align: center; margin-bottom: 16px; }
    .market-card-percent {
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(90deg, #11CABE, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 4px;
    }
    .market-card-sublabel {
      color: #5D6588;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .market-card-stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 10px;
      font-size: 0.82rem;
      margin-bottom: 8px;
    }
    .market-card-stat:last-of-type { margin-bottom: 0; }
    .market-card-stat-label { color: #7a819e; }
    .market-card-stat-value { color: #ffffff; font-weight: 700; white-space: nowrap; }
    .market-card-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 11px;
      background: rgba(79,70,229,0.2);
      border: 1px solid rgba(79,70,229,0.35);
      color: #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 700;
      margin-top: 14px;
      transition: all 0.25s ease;
    }
    .market-card-btn:hover {
      background: rgba(79,70,229,0.35);
      border-color: rgba(79,70,229,0.55);
      box-shadow: 0 8px 22px rgba(79,70,229,0.2);
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .market-item { width: 260px; }
      .market-marquee-track { animation-duration: 30s; }
    }

    /* ==========================================
       HERO MOBILE IMAGE FIX
       ========================================== */
    .hero__illustration--mobile {
      display: none !important;
    }
    @media (max-width: 991.98px) {
      .hero__illustration--desktop {
        display: none !important;
      }
      .hero__illustration--mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
      }
      .hero__illustration--mobile img {
        width: auto;
        height: auto;
        max-width: 8rem;
        max-height: 6rem;
        object-fit: contain;
      }
      .hero__cta-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        width: 100%;
      }
    }
    @media (max-width: 767.98px) {
      .hero__illustration--mobile img {
        max-width: 21.5rem;
        max-height: 18rem;
      }
    }
