:root {
      --bg: #121212;
      --bg-card: #1a1a1a;
      --bg-hover: #222;
      --purple: #7B2FF7;
      --purple-dim: rgba(123, 47, 247, 0.15);
      --purple-glow: rgba(123, 47, 247, 0.3);
      --text: #e8e8e8;
      --text-dim: #888;
      --text-muted: #666;
      --border: #2a2a2a;
      --border-purple: rgba(123, 47, 247, 0.3);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }
    a { color: var(--purple); text-decoration: none; transition: color 0.2s; }
    a:hover { color: #9b5ff7; }

    /* Header */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      border-bottom: 1px solid var(--border-purple);
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: rgba(18, 18, 18, 0.92);
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .header-icon,
    .header-icon-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .header-icon {
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #fff;
    }
    .header-icon-img {
      object-fit: cover;
      display: block;
    }
    .header-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .header-title .accent { color: var(--purple); }
    .header-clock {
      font-size: 0.9rem;
      color: var(--text-dim);
      font-variant-numeric: tabular-nums;
      text-align: right;
      line-height: 1.3;
    }
    .header-clock .label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      display: block;
    }
    .header-clock .time {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text);
    }

    /* Separator */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--purple), transparent);
      opacity: 0.4;
      margin: 0;
    }

    /* Bond Bar */
    .bond-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border-bottom: 1px solid var(--border);
    }
    .bond-card {
      background: var(--bg-card);
      padding: 0.75rem 1rem;
      text-align: center;
      transition: background 0.2s;
    }
    .bond-card:hover { background: var(--bg-hover); }
    .bond-card .label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
    }
    .bond-card .yield {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      margin-top: 2px;
    }
    .bond-card .change {
      font-size: 0.8rem;
      font-weight: 500;
    }
    .change.up { color: #4ade80; }
    .change.down { color: #f87171; }

    /* Main Content */
    .main-grid {
      display: grid;
      grid-template-columns: 180px 1fr 300px;
      gap: 2px;
      background: var(--border);
      min-height: calc(100vh - 130px);
    }

    /* Nav */
    .nav-col {
      background: var(--bg);
      padding: 2rem 1rem;
      border-right: 1px solid var(--border);
    }
    .nav-col nav { display: flex; flex-direction: column; gap: 0.25rem; position: sticky; top: 100px; }
    .nav-col nav a {
      display: block;
      padding: 0.6rem 1rem;
      border-radius: 6px;
      color: var(--text-dim);
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
      border-left: 2px solid transparent;
    }
    .nav-col nav a:hover,
    .nav-col nav a.active {
      color: var(--text);
      background: var(--purple-dim);
      border-left-color: var(--purple);
    }
    .nav-col .nav-brand-small {
      display: none;
    }

    /* Center Column */
    .center-col {
      background: var(--bg);
      padding: 2rem;
    }
    .article-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      transition: border-color 0.2s;
    }
    .article-card:hover { border-color: var(--border-purple); }
    .article-card .date {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .article-card h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      margin: 0.5rem 0 0.75rem;
      line-height: 1.3;
      color: var(--text);
    }
    .article-card p {
      color: var(--text-dim);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .article-card .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--purple);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .article-card .read-more:hover { border-bottom-color: var(--purple); }
    .article-card .read-more::after {
      content: "→";
      transition: transform 0.2s;
    }
    .article-card .read-more:hover::after { transform: translateX(4px); }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--purple);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-purple);
    }

    /* News Feed */
    .news-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .news-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem 1.25rem;
      transition: border-color 0.2s;
    }
    .news-item:hover { border-color: var(--border-purple); }
    .news-item .news-title {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
      display: block;
      margin-bottom: 0.3rem;
    }
    .news-item .news-source {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Right Column */
    .right-col {
      background: var(--bg);
      padding: 2rem;
      border-left: 1px solid var(--border);
    }
    .right-section { margin-bottom: 2rem; }

    /* Video Thumbnail */
    .video-thumb {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border);
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
      cursor: pointer;
    }
    .video-thumb:hover { border-color: var(--purple); }
    .video-thumb .play-btn {
      width: 56px;
      height: 56px;
      background: var(--purple);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #fff;
      position: absolute;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 20px var(--purple-glow);
    }
    .video-thumb:hover .play-btn { transform: scale(1.1); }
    .video-thumb .thumb-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a2e, #2a1a3e);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--text-muted);
    }
    .video-thumb .video-label {
      position: absolute;
      bottom: 8px;
      left: 8px;
      right: 8px;
      background: rgba(0,0,0,0.7);
      padding: 0.5rem 0.75rem;
      border-radius: 6px;
      font-size: 0.8rem;
      color: var(--text);
      backdrop-filter: blur(4px);
    }

    /* Twitter Embed */
    .tweet-placeholder {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.25rem;
    }
    .tweet-placeholder .tweet-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .tweet-placeholder .tweet-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      flex-shrink: 0;
    }
    .tweet-placeholder .tweet-name {
      font-weight: 600;
      font-size: 0.85rem;
    }
    .tweet-placeholder .tweet-handle {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .tweet-placeholder .tweet-body {
      font-size: 0.9rem;
      color: var(--text-dim);
      line-height: 1.6;
    }
    .tweet-placeholder .tweet-time {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border-purple);
      padding: 2rem;
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .footer .footer-links a {
      color: var(--text-dim);
      font-size: 0.82rem;
    }
    .footer .footer-links a:hover { color: var(--purple); }

    /* Side pages */
    .side-page {
      max-width: 800px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }
    .side-page h1 {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .side-page p {
      color: var(--text-dim);
      font-size: 1rem;
      line-height: 1.8;
    }
    .side-page .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 2rem;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .main-grid {
        grid-template-columns: 1fr;
      }
      .nav-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1rem;
      }
      .nav-col nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: static;
        gap: 0.25rem;
      }
      .nav-col nav a {
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 0.82rem;
        padding: 0.4rem 0.75rem;
      }
      .nav-col nav a:hover,
      .nav-col nav a.active {
        border-left-color: transparent;
        border-bottom-color: var(--purple);
      }
      .right-col {
        border-left: none;
        border-top: 1px solid var(--border);
      }
      .bond-bar {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 640px) {
      .header { padding: 0.75rem 1rem; }
      .header-title { font-size: 1.1rem; }
      .header-icon,
      .header-icon-img { width: 32px; height: 32px; }
      .header-icon { font-size: 1rem; }
      .center-col { padding: 1.25rem; }
      .right-col { padding: 1.25rem; }
      .bond-bar { grid-template-columns: repeat(2, 1fr); }
      .bond-card { padding: 0.5rem; }
      .bond-card .yield { font-size: 1rem; }
    }
