﻿:root {
      --primary: #A3E635; 
      --primary-hover: #bef264;
      --secondary: #2563EB; 
      --privacy-accent: #E2E8F0; 
      --crypto-accent: #64748B; 
      --bg-dark: #050505; 
      --bg-card: #101114; 
      --bg-light-card: #F8FAFC; 
      --text-light: #F8FAFC;
      --text-dark: #111827;
      --text-muted: #CBD5E1;
      --border-color: rgba(163, 230, 53, 0.22);
      --border-soft: rgba(226, 232, 240, 0.1);
      --highlight-soft: #D9F99D;
      --alert-color: #F43F5E;
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
    body {
      width: 100%;
      margin: 0;
      overflow-x: hidden;
      font-family: var(--font-stack);
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
    a:hover { color: var(--primary-hover); }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: rgba(5, 5, 5, 0.90);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-inner {
      width: min(1200px, calc(100% - 32px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      max-width: 100%;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo img {
      display: block;
      height: 36px;
      width: auto;
      max-width: 150px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-light);
      white-space: nowrap;
      max-width: 180px;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .desktop-nav-wrap {
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      justify-content: flex-end;
      overflow: hidden;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      white-space: nowrap;
    }
    .desktop-nav::-webkit-scrollbar { display: none; }
    .desktop-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      flex: 0 0 auto;
    }
    .desktop-nav a:hover {
      color: var(--text-light);
      background: rgba(163, 230, 53, 0.18);
    }
    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: rgba(163, 230, 53, 0.14);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .mobile-menu-btn span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: var(--text-light);
    }

    
    .mobile-nav-mask {
      position: fixed;
      inset: 0;
      z-index: 1100;
      background: rgba(15, 23, 42, 0.75);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1110;
      width: min(86vw, 360px);
      height: 100vh;
      height: 100dvh;
      max-width: 90vw;
      background: #101114;
      color: var(--text-light);
      transform: translateX(-105%);
      transition: transform .28s ease;
      box-shadow: 24px 0 60px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .drawer-head {
      min-height: 76px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--border-color);
      flex: 0 0 auto;
    }
    .drawer-logo { min-width: 0; }
    .drawer-logo img { height: 34px; max-width: 120px; }
    .drawer-logo span { font-size: 16px; max-width: 145px; }
    .drawer-close {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      background: rgba(163, 230, 53, 0.14);
      color: var(--text-light);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .drawer-body {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      padding: 14px;
    }
    .drawer-nav { display: flex; flex-direction: column; gap: 8px; }
    .drawer-nav a {
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 48px;
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(163, 230, 53, 0.10);
      color: var(--text-light);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: anywhere;
      border: 1px solid rgba(163, 230, 53, 0.14);
    }
    .drawer-nav a:hover {
      background: rgba(37, 99, 235, 0.16);
      color: #ffffff;
    }
    body.drawer-open { overflow: hidden; touch-action: none; }
    body.drawer-open .mobile-nav-mask { opacity: 1; visibility: visible; pointer-events: auto; }
    body.drawer-open .mobile-drawer { transform: translateX(0); }

    
    .hero {
      position: relative;
      padding: 60px 0;
      background: radial-gradient(circle at 50% 0%, rgba(163, 230, 53, 0.12) 0%, transparent 70%);
      border-bottom: 1px solid var(--border-soft);
    }
    .hero-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(163, 230, 53, 0.15);
      border: 1px solid var(--primary);
      padding: 6px 16px;
      border-radius: 99px;
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--text-light);
      max-width: 900px;
      margin: 0 auto 18px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--text-muted);
      max-width: 760px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 28px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .btn-primary {
      background-color: var(--primary);
      color: var(--text-dark);
      box-shadow: 0 10px 25px -5px rgba(163, 230, 53, 0.4);
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background-color: rgba(255, 255, 255, 0.05);
      color: var(--text-light);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: var(--text-muted);
    }

    
    .crypto-card-signal-board {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 32px;
      text-align: left;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
      display: grid;
      grid-template-columns: 2.2fr 1fr;
      gap: 32px;
      margin-top: 20px;
    }
    .signal-board-main {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .magazine-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-soft);
      padding-bottom: 16px;
    }
    .magazine-edition {
      font-size: 13px;
      color: var(--crypto-accent);
      font-weight: 600;
      text-transform: uppercase;
    }
    .magazine-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }
    .status-dot {
      width: 8px;
      height: 8px;
      background-color: var(--primary);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.9); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.9); opacity: 0.5; }
    }
    .magazine-card-wall {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .reading-card-bone {
      background: var(--bg-light-card);
      color: var(--text-dark);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }
    .reading-card-bone:hover {
      transform: translateY(-4px);
    }
    .card-category {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--secondary);
    }
    .card-value {
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 800;
      line-height: 1.2;
      margin: 12px 0;
    }
    .card-footer-info {
      font-size: 13px;
      color: #475569;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .card-footer-info strong {
      color: var(--secondary);
    }
    .signal-board-sidebar {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .sidebar-title {
      font-size: 16px;
      font-weight: 800;
      border-left: 3px solid var(--primary);
      padding-left: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .signal-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-soft);
    }
    .signal-item:last-child {
      border: 0;
      padding: 0;
    }
    .signal-time {
      font-size: 11px;
      color: var(--crypto-accent);
      font-weight: 700;
    }
    .signal-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.4;
    }
    .signal-link {
      font-size: 12px;
      color: var(--primary);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 4px;
    }

    
    .cockpit-section {
      padding: 80px 0;
      background: #090a0c;
    }
    .section-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .section-header {
      margin-bottom: 48px;
      border-left: 4px solid var(--primary);
      padding-left: 18px;
    }
    .section-tag {
      font-size: 12px;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
    .section-title {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 900;
      margin: 8px 0;
    }
    .section-desc {
      color: var(--text-muted);
      max-width: 650px;
      font-size: 15px;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .bento-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s ease;
    }
    .bento-card:hover {
      border-color: var(--primary);
      transform: translateY(-3px);
    }
    .bento-card.col-span-2 {
      grid-column: span 2;
    }
    .bento-icon {
      width: 48px;
      height: 48px;
      background: rgba(163, 230, 53, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
      margin-bottom: 24px;
    }
    .bento-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 12px 0;
      color: var(--text-light);
    }
    .bento-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 20px 0;
      line-height: 1.6;
    }
    .bento-link {
      font-size: 14px;
      font-weight: 700;
      color: var(--secondary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    
    .stream-section {
      padding: 80px 0;
      border-top: 1px solid var(--border-soft);
    }
    .article-deck {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .compact-reading-card {
      background: var(--bg-card);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card-img-holder {
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }
    .card-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .compact-reading-card:hover .card-img-holder img {
      transform: scale(1.05);
    }
    .card-pill {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--bg-dark);
      border: 1px solid var(--border-color);
      color: var(--primary);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .card-meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--crypto-accent);
      padding: 16px 20px 0;
    }
    .card-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .card-content-box {
      padding: 16px 20px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-title-link {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-light);
      line-height: 1.4;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-title-link:hover {
      color: var(--primary);
    }
    .card-brief {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-cta-row {
      margin-top: auto;
      border-top: 1px solid var(--border-soft);
      padding-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    
    .site-footer {
      position: relative;
      z-index: 1;
      width: 100%;
      background: #030303;
      color: var(--text-muted);
      padding: 56px 0 24px;
      border-top: 1px solid var(--border-color);
    }
    .footer-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
      gap: 28px;
      align-items: start;
    }
    .footer-brand { min-width: 0; }
    .footer-brand p {
      margin: 16px 0 0;
      color: rgba(226, 232, 240, 0.78);
      line-height: 1.8;
      font-size: 14px;
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .footer-logo span { color: #ffffff; }
    .footer-column { min-width: 0; }
    .footer-column h3 { margin: 0 0 14px; font-size: 15px; color: #ffffff; }
    .footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer-column li { min-width: 0; }
    .footer-column a, .footer-column span {
      display: inline;
      color: rgba(226, 232, 240, 0.78);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.55;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .footer-column a:hover { color: #ffffff; }
    .footer-bottom {
      width: min(1200px, calc(100% - 32px));
      margin: 32px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(226, 232, 240, 0.62);
      font-size: 13px;
    }
    .footer-bottom p { margin: 0; min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
    .footer-bottom a { color: rgba(226, 232, 240, 0.78); text-decoration: none; word-break: break-word; overflow-wrap: anywhere; }

    
    @media (max-width: 900px) {
      .header-inner { width: min(100% - 24px, 1200px); min-height: 64px; gap: 12px; }
      .desktop-nav-wrap, .desktop-nav { display: none !important; }
      .mobile-menu-btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 1200;
        flex: 0 0 auto;
      }
      .logo img { height: 34px; max-width: 118px; }
      .logo span { font-size: 16px; max-width: 145px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

      .crypto-card-signal-board {
        grid-template-columns: 1fr;
        padding: 20px;
      }
      .magazine-card-wall {
        grid-template-columns: 1fr;
      }
      .bento-grid {
        grid-template-columns: 1fr;
      }
      .bento-card.col-span-2 {
        grid-column: span 1;
      }
      .article-deck {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 420px) {
      .mobile-drawer { width: 88vw; }
      .logo span { max-width: 112px; }
      .drawer-logo span { max-width: 118px; }
      .footer-inner, .footer-bottom { width: min(100% - 24px, 1200px); }
    }