    :root {
      --bg: #0e0e0f;
      --surface: #181819;
      --surface2: #222224;
      --border: #2a2a2d;
      --accent: #00d4ff;
      --accent2: #ff2d78;
      --text: #f0f0f0;
      --muted: #888;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Syne', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
      top: -200px; left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 0;
    }

    /* Contact modal */
    #contact-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
    #contact-modal.show { display: flex; }
    .contact-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; max-width: 440px; width: 100%; position: relative; }
    .contact-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 16px 16px 0 0; }
    .contact-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.3px; }
    .contact-box p { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; margin-bottom: 20px; line-height: 1.6; }
    .contact-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; transition: color 0.15s; }
    .contact-close:hover { color: var(--text); }
    .contact-form { display: flex; flex-direction: column; gap: 12px; }
    .contact-form input, .contact-form textarea, .contact-form select { width: 100%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-family: 'DM Mono', monospace; font-size: 12px; padding: 10px 12px; outline: none; border-radius: 8px; transition: border-color 0.15s; }
    .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: #444; }
    .contact-form textarea { resize: vertical; min-height: 100px; }
    .contact-form select { appearance: none; cursor: pointer; }
    .contact-form option { background: var(--surface2); }
    .contact-submit { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--accent), #0099cc); color: #000; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; border: none; border-radius: 8px; cursor: pointer; transition: opacity 0.15s; }
    .contact-submit:hover { opacity: 0.88; }
    .contact-success { display: none; text-align: center; padding: 20px 0; }
    .contact-success p { font-size: 13px; color: var(--muted); font-family: 'DM Mono', monospace; line-height: 1.8; }
    .contact-success .tick { font-size: 36px; margin-bottom: 12px; }

    /* Cookie consent banner */
    #cookie-banner {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 16px 24px;
      z-index: 999;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    #cookie-banner.show { display: flex; }
    #cookie-banner p { font-size: 12px; font-family: 'DM Mono', monospace; color: var(--muted); line-height: 1.6; max-width: 600px; }
    #cookie-banner a { color: var(--accent); }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-accept { padding: 8px 20px; background: var(--accent); color: #000; font-family: 'DM Mono', monospace; font-size: 11px; border: none; cursor: pointer; border-radius: 4px; font-weight: 500; transition: opacity 0.15s; }
    .cookie-accept:hover { opacity: 0.85; }
    .cookie-decline { padding: 8px 16px; background: none; color: var(--muted); font-family: 'DM Mono', monospace; font-size: 11px; border: 1px solid var(--border); cursor: pointer; border-radius: 4px; transition: color 0.15s, border-color 0.15s; }
    .cookie-decline:hover { color: var(--text); border-color: var(--accent); }

    /* Ad blocker banner */
    #adblock-banner {
      display: none;
      width: 100%;
      background: rgba(255,45,120,0.08);
      border-bottom: 1px solid rgba(255,45,120,0.2);
      padding: 10px 24px;
      text-align: center;
      font-size: 12px;
      font-family: 'DM Mono', monospace;
      color: #ff6699;
      position: relative;
      z-index: 10;
    }
    #adblock-banner.show { display: block; }
    #adblock-banner a { color: var(--accent); text-decoration: underline; cursor: pointer; }
    #banner-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #ff6699; cursor: pointer; font-size: 14px; }

    header {
      width: 100%;
      max-width: 680px;
      padding: 28px 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.6s ease both;
    }

    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
    .logo-icon img { width: 100%; height: 100%; object-fit: cover; }
    .logo-text { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
    .logo-text span { color: var(--accent); }

    nav a { color: var(--muted); text-decoration: none; font-size: 13px; font-family: 'DM Mono', monospace; margin-left: 20px; transition: color 0.2s; }
    nav a:hover { color: var(--text); }

    main { width: 100%; max-width: 680px; padding: 60px 24px 40px; position: relative; z-index: 1; }

    .hero { text-align: center; margin-bottom: 48px; animation: fadeUp 0.6s 0.1s ease both; }

    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
      border-radius: 99px; padding: 4px 12px; font-size: 11px;
      font-family: 'DM Mono', monospace; color: var(--accent); margin-bottom: 20px; letter-spacing: 0.05em;
    }
    .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: pulse 2s infinite; }

    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

    h1 { font-size: clamp(32px, 6vw, 52px); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 16px; }
    h1 .line2 { background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 420px; margin: 0 auto; }
    .counter-wrap { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 10px 22px; background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.15); border-radius: 99px; }
    .counter-num { font-family: 'DM Mono', monospace; font-size: 20px; font-weight: 500; color: var(--accent); letter-spacing: -0.5px; }
    .counter-label { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 0.04em; }

    .card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; animation: fadeUp 0.6s 0.2s ease both; position: relative; overflow: hidden; }
    .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }

    .input-label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 10px; display: block; }

    .steps { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; animation: fadeUp 0.6s 0.3s ease both; }
    .step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
    .step-num { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--accent); margin-bottom: 8px; letter-spacing: 0.05em; }
    .step-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
    .step-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

    .note { margin-top: 16px; padding: 12px 16px; background: rgba(255,45,120,0.06); border: 1px solid rgba(255,45,120,0.15); border-radius: 8px; font-size: 12px; font-family: 'DM Mono', monospace; color: #ff6699; animation: fadeUp 0.6s 0.4s ease both; }

    .section { margin-top: 80px; scroll-margin-top: 40px; }
    .section-label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
    .section h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 24px; }
    .section p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

    /* History side panel */
    .page-with-history { width: 100%; max-width: 100%; display: flex; align-items: flex-start; align-self: stretch; }
    .converter-col { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; }
    .history-panel { width: 220px; flex-shrink: 0; border-left: 1px solid var(--border); background: var(--surface); position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; align-self: flex-start; }
    .history-panel-header { padding: 14px 16px 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
    .history-panel-title { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
    .history-panel-body { flex: 1; overflow-y: auto; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
    .history-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; gap: 8px; padding: 8px; align-items: center; transition: border-color 0.15s; }
    .history-card:hover { border-color: var(--accent); }
    .history-thumb { width: 44px; height: 44px; object-fit: contain; background: var(--bg); display: block; flex-shrink: 0; border-radius: 4px; }
    .history-info { flex: 1; min-width: 0; }
    .history-name { font-size: 10px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; font-family: 'DM Mono', monospace; }
    .history-date { font-size: 9px; font-family: 'DM Mono', monospace; color: var(--muted); }
    .history-actions { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
    .history-dl-btn { padding: 4px 8px; font-family: 'DM Mono', monospace; font-size: 9px; background: var(--accent); color: #000; border: none; border-radius: 4px; cursor: pointer; font-weight: 500; }
    .history-del-btn { padding: 4px 8px; font-family: 'DM Mono', monospace; font-size: 9px; background: none; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; cursor: pointer; }
    .history-del-btn:hover { color: var(--accent2); border-color: var(--accent2); }
    .history-empty { font-size: 10px; color: var(--muted); font-family: 'DM Mono', monospace; text-align: center; padding: 16px 8px; line-height: 1.6; }
    .clear-history-btn { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); background: none; border: none; cursor: pointer; transition: color 0.15s; }
    .clear-history-btn:hover { color: var(--accent2); }

    /* Blog section */
    .blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
    .blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.15s; cursor: pointer; text-decoration: none; display: block; color: var(--text); }
    .blog-card:visited, .blog-card:link, .blog-card:hover, .blog-card:active { color: var(--text); }
    .blog-card:hover { border-color: var(--accent); }
    .blog-card-body { padding: 20px; }
    .blog-tag { font-size: 10px; font-family: 'DM Mono', monospace; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
    .blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.2px; color: var(--text); }
    .blog-card p { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
    .blog-meta { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--muted); display: flex; align-items: center; gap: 8px; }
    .blog-meta::before { content: ''; display: block; width: 16px; height: 1px; background: var(--border); }

    /* Blog post full */
    .blog-post { display: none; }
    .blog-post.active { display: block; }
    .blog-post-header { margin-bottom: 24px; }
    .blog-post-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.2; }
    .blog-post-meta { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--muted); }
    .blog-post-body { font-size: 14px; color: var(--muted); line-height: 1.9; }
    .blog-post-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
    .blog-post-body p { margin-bottom: 16px; }
    .blog-post-body p:last-child { margin-bottom: 0; }
    .blog-back { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); background: none; border: 1px solid var(--border); padding: 7px 14px; cursor: pointer; border-radius: 4px; margin-bottom: 24px; transition: color 0.15s, border-color 0.15s; }
    .blog-back:hover { color: var(--accent); border-color: var(--accent); }

    .article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
    .article-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
    .article-card .atag { font-size: 10px; font-family: 'DM Mono', monospace; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
    .article-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
    .article-card p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; }

    .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
    .faq-item:first-of-type { border-top: 1px solid var(--border); }
    .faq-q { font-size: 14px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
    .faq-q .arrow { color: var(--muted); font-size: 11px; font-family: 'DM Mono', monospace; flex-shrink: 0; transition: transform 0.2s; }
    .faq-item.open .arrow { transform: rotate(180deg); }
    .faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; display: none; margin-top: 10px; }
    .faq-item.open .faq-a { display: block; }

    .legal-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); scroll-margin-top: 40px; }
    .legal-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
    .legal-section p { color: var(--muted); font-size: 13px; line-height: 1.8; margin-bottom: 14px; }
    .legal-section h3 { font-size: 14px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }

    footer { width: 100%; max-width: 680px; padding: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; flex-wrap: wrap; gap: 12px; margin-top: 60px; }
    footer p { font-size: 12px; color: #444; font-family: 'DM Mono', monospace; }
    .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
    footer a { font-size: 12px; color: #555; text-decoration: none; font-family: 'DM Mono', monospace; transition: color 0.2s; }
    footer a:hover { color: var(--muted); }

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

    /* Batch converter */
    .card-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
    .add-btn { background: none; border: 1px solid var(--border); border-radius: 8px; color: var(--accent); font-family: 'DM Mono', monospace; font-size: 12px; padding: 6px 12px; cursor: pointer; transition: background 0.15s; }
    .add-btn:hover { background: var(--surface2); }

    .slot { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
    .slot-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
    .slot-name-wrap { display: flex; align-items: center; gap: 6px; }
    .slot-name { font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
    .slot-name-edit input { background: transparent; border: none; border-bottom: 1px solid var(--accent); color: var(--text); font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; outline: none; width: 120px; }
    .gif-ext { font-size: 12px; font-family: 'DM Mono', monospace; color: var(--muted); margin-left: 1px; }
    .pen-icon { color: var(--muted); font-size: 13px; cursor: pointer; transition: color 0.15s; }
    .pen-icon:hover { color: var(--accent); }
    .remove-btn { background: none; border: none; color: #555; font-size: 14px; cursor: pointer; transition: color 0.15s; }
    .remove-btn:hover { color: var(--accent2); }

    .slot-body { display: flex; gap: 12px; align-items: center; }
    .slot-dl-col { display: flex; align-items: center; justify-content: center; min-width: 64px; }
    .slot-preview-wrap { width: 72px; height: 72px; flex-shrink: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
    .slot-preview { width: 100%; height: 100%; object-fit: contain; }
    .slot-preview-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #333; font-size: 22px; }

    .slot-right { flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .slot-url { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: 'DM Mono', monospace; font-size: 12px; padding: 10px 12px; outline: none; transition: border-color 0.2s; }
    .slot-url:focus { border-color: var(--accent); }
    .slot-url::placeholder { color: #333; }

    .slot-status-row { display: flex; justify-content: space-between; min-height: 16px; }
    .slot-status { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--muted); }
    .slot-pct { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--accent); }

    .bar-track { width: 100%; height: 3px; background: var(--surface); border-radius: 99px; overflow: hidden; }
    .bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 99px; transition: width 0.3s ease; }

    .dl-btn { background: none; border: 1px solid var(--accent); color: var(--accent); font-family: 'DM Mono', monospace; font-size: 11px; border-radius: 10px; padding: 12px 10px; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 56px; }
    .dl-btn:hover { background: rgba(0,212,255,0.08); transform: translateY(-1px); }
    .dl-btn svg { display: block; }
    .dl-btn span { font-size: 10px; letter-spacing: 0.05em; }

    .batch-actions { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
    .convert-all-btn { background: linear-gradient(135deg, var(--accent), #0099cc); color: #000; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; border: none; border-radius: 10px; padding: 12px 24px; cursor: pointer; transition: opacity 0.2s; }
    .convert-all-btn:hover { opacity: 0.88; }
    .dl-zip-btn { background: none; border: 1px solid var(--border); color: var(--text); font-family: 'DM Mono', monospace; font-size: 13px; border-radius: 10px; padding: 12px 20px; cursor: pointer; transition: background 0.15s; display: inline-flex; align-items: center; gap: 6px; }
    .dl-zip-btn:hover { background: var(--surface2); }

    /* Try it out */
    .sample-card { display: flex; gap: 20px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-top: 16px; }
    .sample-left { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
    .sample-img { width: 80px; height: 80px; object-fit: contain; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); }
    .sample-hint { font-size: 10px; font-family: 'DM Mono', monospace; color: var(--muted); text-align: center; }
    .sample-right { flex: 1; display: flex; flex-direction: column; gap: 12px; min-width: 0; overflow: hidden; }
    .sample-url-row { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; overflow: hidden; min-width: 0; }
    .sample-url-row code { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; width: 0; min-width: 100%; }
    .sample-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .sample-copy-btn { background: linear-gradient(135deg, var(--accent), #0099cc); color: #000; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; border: none; border-radius: 8px; padding: 9px 18px; cursor: pointer; transition: opacity 0.2s; }
    .sample-copy-btn.secondary { background: none; border: 1px solid var(--border); color: var(--text); font-weight: 400; font-family: 'DM Mono', monospace; font-size: 12px; }
    .sample-copy-btn:hover { opacity: 0.85; }
    .sample-copy-btn.secondary:hover { border-color: var(--accent); color: var(--accent); }

    /* Accessibility */
    :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* Clean Responsive Layout Restructuring (No Duplicates) */
    @media (max-width: 940px) {
      .page-with-history {
        flex-direction: column;
      }
      .history-panel {
        width: 100%;
        height: auto;
        max-height: 420px;
        border-left: none;
        border-top: 1px solid var(--border);
        position: static;
      }
    }

    @media (max-width: 520px) {
      .steps { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .article-grid { grid-template-columns: 1fr; }
      .slot-body { flex-direction: column; }
      .slot-preview-wrap { width: 100%; height: 100px; }
      .sample-card { flex-direction: column; }
    }

/* Standalone blog article pages */
.blog-post-body h2 { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.blog-index-link { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); background: none; border: 1px solid var(--border); padding: 7px 14px; cursor: pointer; border-radius: 4px; margin-bottom: 24px; display: inline-block; text-decoration: none; transition: color 0.15s, border-color 0.15s; }
.blog-index-link:hover { color: var(--accent); border-color: var(--accent); }
