


  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;600&family=IBM+Plex+Mono:wght@400;600&display=swap');

  :root {
    --bg: #0a0a0a;
    --surface: #111111;
    --border: #222222;
    --accent: #c8f135;
    --accent2: #ff4d00;
    --text: #e8e8e8;
    --muted: #666;
    --card-bg: #141414;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    min-height: 100vh;
  }

  /* ── HEADER ── */
  header {
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: sticky;
    top: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
  }

  .logo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-decoration: none;
  }

  nav {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  nav a:hover, nav a.active { color: var(--accent); }

  /* ── HERO ── */
  .hero {
    padding: 80px 40px 60px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: 'ARTISTS';
    position: absolute;
    top: 20px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(200,241,53,0.03);
    letter-spacing: -0.02em;
    pointer-events: none;
    white-space: nowrap;
  }

  .hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 20px;
  }

  h1 span { color: var(--accent); }

  .hero-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.6;
  }

  /* ── LOADING / STATUS ── */
  #status {
    text-align: center;
    padding: 60px 40px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── ARTISTS GRID ── */
  #artists-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* ── ARTIST CARD ── */
  .artist-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card-bg);
    margin-bottom: 32px;
    overflow: hidden;
    animation: fadeUp 0.5s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .card-header {
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0e0e0e;
  }

  .card-header h2 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .card-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 2px;
  }

  /* ── INJECTED ARTICLE STYLES ── */
  .artist-content {
    padding: 32px 28px;
  }

  /* Override injected styles to match dark theme */
  .artist-content .container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100% !important;
    max-width: 100% !important;
  }

  .artist-content .article {
    flex: 1;
    min-width: 260px;
  }

  .artist-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .artist-content h2 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
    margin: 22px 0 10px;
  }

  .artist-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 10px;
  }

  .artist-content b { color: var(--text); font-weight: 600; }
  .artist-content i { color: var(--accent2); font-style: italic; }

  .artist-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }

  .artist-content ul li {
    font-size: 13px;
    color: #aaa;
    padding: 5px 0;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .artist-content ul li::before {
    content: '›';
    color: var(--accent);
    font-size: 16px;
    line-height: 1;
  }

  /* ── INFOBOX ── */
  .artist-content .infobox {
    width: 240px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    background: #0e0e0e;
  }

  .artist-content .infobox img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--border);
    filter: grayscale(20%);
  }

  .artist-content .infobox table {
    width: 100%;
    border-collapse: collapse;
  }

  .artist-content .infobox table tr {
    border-bottom: 1px solid #1a1a1a;
  }

  .artist-content .infobox table th {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 10px;
    text-align: left;
    width: 40%;
    vertical-align: top;
  }

  .artist-content .infobox table td {
    font-size: 12px;
    color: #ccc;
    padding: 8px 10px;
    vertical-align: top;
    line-height: 1.5;
  }

  .artist-content .infobox table td a {
    color: var(--accent);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
  }

  .artist-content .infobox table td a:hover {
    text-decoration: underline;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  footer p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  footer a { color: var(--accent); text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    header { padding: 0 20px; }
    .hero { padding: 50px 20px 40px; }
    #artists-container { padding: 20px; }
    .artist-content { padding: 20px; }
    .artist-content .container { flex-direction: column; }
    .artist-content .infobox { width: 100%; }
    nav { gap: 16px; }
  }
  
  
  