﻿: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);
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html, body { width: 100%; margin: 0; overflow-x: hidden; }
    body {
      font-family: var(--font-stack);
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
    }
    a { color: var(--primary); text-decoration: none; }

    
    .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; text-decoration: none; }
    .logo img { height: 36px; max-width: 150px; object-fit: contain; }
    .logo span { font-size: 18px; font-weight: 800; color: var(--text-light); }
    .desktop-nav-wrap { display: flex; justify-content: flex-end; flex: 1; }
    .desktop-nav { display: flex; gap: 8px; }
    .desktop-nav a { padding: 8px 14px; border-radius: 99px; color: var(--text-muted); font-size: 14px; font-weight: 700; }
    .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;
    }
    .mobile-menu-btn span { display: block; width: 20px; height: 2px; 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; transition: opacity .25s ease;
    }
    .mobile-drawer {
      position: fixed; top: 0; left: 0; z-index: 1110; width: min(86vw, 360px); height: 100vh;
      background: #101114; transform: translateX(-105%); transition: transform .28s ease; display: flex; flex-direction: column;
    }
    .drawer-head { padding: 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
    .drawer-logo span { font-size: 16px; }
    .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; }
    .drawer-body { padding: 14px; overflow-y: auto; }
    .drawer-nav { display: flex; flex-direction: column; gap: 8px; }
    .drawer-nav a { padding: 13px 14px; border-radius: 14px; background: rgba(163, 230, 53, 0.1); border: 1px solid rgba(163,230,53,.14); color: var(--text-light); font-weight: 700; }
    body.drawer-open .mobile-nav-mask { opacity: 1; visibility: visible; pointer-events: auto; }
    body.drawer-open .mobile-drawer { transform: translateX(0); }
    body.drawer-open { overflow: hidden; }

    
    .list-masthead {
      background: radial-gradient(circle at 10% 20%, rgba(163, 230, 53, 0.08) 0%, transparent 50%);
      padding: 60px 0 40px;
      border-bottom: 1px solid var(--border-soft);
    }
    .list-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .breadcrumb-trail {
      font-size: 12px;
      color: var(--crypto-accent);
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .breadcrumb-trail a { color: var(--text-muted); }
    .list-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      margin: 0 0 14px 0;
    }
    .list-desc {
      color: var(--text-muted);
      max-width: 680px;
      font-size: 16px;
      margin: 0;
    }

    
    .topic-chips-wrapper {
      margin-top: 32px;
      border-top: 1px solid var(--border-soft);
      padding-top: 24px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .topic-chip {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-soft);
      color: var(--text-muted);
      padding: 8px 18px;
      border-radius: 99px;
      font-size: 13px;
      font-weight: 700;
      transition: all 0.2s ease;
    }
    .topic-chip:hover {
      background: rgba(163, 230, 53, 0.1);
      border-color: var(--primary);
      color: var(--primary);
    }

    
    .magazine-deck {
      padding: 60px 0;
    }
    .featured-strip {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 40px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
    }
    .strip-img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
    }
    .strip-content {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .strip-badge {
      display: inline-flex;
      align-self: flex-start;
      background: var(--primary);
      color: var(--text-dark);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 18px;
    }
    .strip-title {
      font-size: 26px;
      font-weight: 900;
      line-height: 1.3;
      margin: 0 0 16px 0;
    }
    .strip-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    
    .compact-signal-wall {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }
    .magazine-card {
      background: var(--bg-card);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card-photo {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }
    .card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-headline {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.4;
      margin: 0 0 12px 0;
    }
    .card-headline a { color: var(--text-light); }
    .card-headline a:hover { color: var(--primary); }
    .card-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .card-meta {
      margin-top: auto;
      border-top: 1px solid var(--border-soft);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--crypto-accent);
    }

    
    .trend-insight-band {
      background: var(--bg-light-card);
      color: var(--text-dark);
      border-radius: 20px;
      padding: 40px;
      margin: 60px 0;
      border: 1px solid var(--border-soft);
    }
    .band-head {
      border-bottom: 2px solid var(--text-dark);
      padding-bottom: 12px;
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .band-head h3 { margin: 0; font-size: 20px; font-weight: 900; text-transform: uppercase; }
    .band-head span { font-size: 12px; font-weight: 700; color: var(--secondary); }
    .trend-rail {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .trend-rail-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .trend-rail-item h4 { margin: 0; font-size: 16px; font-weight: 800; }
    .trend-rail-item p { margin: 0; font-size: 13px; color: #475569; }

    
    .pagination-dock {
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      width: 100%;
      max-width: 100%;
      margin-top: 60px;
      margin-bottom: 56px;
      pointer-events: auto;
    }
    .pagination-dock a, .pagination-dock span {
      position: relative;
      z-index: 6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
      padding: 0 14px;
      border-radius: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      color: var(--text-muted);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      cursor: pointer;
      pointer-events: auto;
      white-space: nowrap;
    }
    .pagination-dock a:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .pagination-dock .current {
      background: var(--primary);
      color: var(--text-dark);
      border-color: var(--primary);
    }

    
    .site-footer {
      position: relative; z-index: 1; width: 100%; background: #050505; 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;
    }
    .footer-brand p { margin: 16px 0 0; color: rgba(226,232,240,.78); line-height: 1.8; font-size: 14px; }
    .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 a, .footer-column span { color: rgba(226,232,240,.78); text-decoration: none; font-size: 14px; }
    .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,.12);
      display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(226,232,240,.62); font-size: 13px;
    }
    .footer-bottom p { margin: 0; }
    .footer-bottom a { color: rgba(226,232,240,.78); }

    
    @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; }

      
      .featured-strip {
        display: block !important;
        width: 100% !important;
      }
      .strip-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
      }
      .strip-content {
        padding: 24px !important;
      }
      .compact-signal-wall {
        display: block !important;
        width: 100% !important;
      }
      .magazine-card {
        margin-bottom: 24px !important;
        width: 100% !important;
      }
      .card-photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
      }
      .trend-insight-band {
        width: 100% !important;
        padding: 24px !important;
        margin: 40px 0 !important;
      }
      .trend-rail {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      .pagination-dock {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
        margin-bottom: 48px;
      }
    }

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