
  /* Tambahan style khusus artikel (tidak mengganggu base.css) */
  .article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    position: relative;
  }
  .article-header {
    margin-bottom: 32px;
    position: relative;
  }
  .back-home-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
  }
  .back-home-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
  }
  .back-home-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }
  .article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59,130,246,0.12);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .article-category svg {
    width: 14px;
    height: 14px;
  }
  h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-right: 100px; /* space for back-home button */
  }
  .article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text2);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
  .article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .share-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 16px;
    flex-wrap: wrap;
  }
  .share-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text2);
    font-size: 0.85rem;
  }
  .share-buttons {
    display: flex;
    gap: 12px;
  }
  .share-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }
  .share-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
  }
  .share-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }
  .thumbnail-slider-container {
    position: relative;
    margin: 24px 0 32px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg3);
  }
  .thumbnail-slider {
    display: flex;
    transition: transform 0.3s ease;
  }
  .slide-img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    max-height: 480px;
    aspect-ratio: 16/9;
  }
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 40px;
    z-index: 10;
    transition: 0.2s;
  }
  .slider-btn:hover { background: var(--accent); }
  .prev-btn { left: 12px; }
  .next-btn { right: 12px; }
  .slide-dots {
    text-align: center;
    padding: 12px 0;
  }
  .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text2);
    margin: 0 5px;
    cursor: pointer;
  }
  .dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 10px;
  }
  .article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text1);
  }
  .article-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
  }
  .inline-img {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .inline-img img {
    width: 100%;
    border-radius: var(--radius);
  }
  .code-block {
    background: #0e0f17;
    border-left: 4px solid var(--accent);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.8rem 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    color: #d4d4d4;
  }
  .quote-blue {
    background: rgba(59,130,246,0.08);
    border-left: 4px solid var(--accent);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-style: italic;
    margin: 1.8rem 0;
    color: var(--accent-light);
    font-weight: 500;
  }
  .hashtag-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0 24px;
  }
  .hashtag {
    background: rgba(59,130,246,0.15);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    transition: 0.2s;
  }
  .hashtag:hover {
    background: var(--accent);
    color: white;
  }
  .youtube-embed {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  /* Custom Modal */
  .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .custom-modal.active {
    visibility: visible;
    opacity: 1;
  }
  .modal-content {
    background: var(--bg2);
    border-radius: 24px;
    max-width: 380px;
    width: 90%;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
  }
  .modal-content p {
    margin: 16px 0 24px;
    color: var(--text1);
    font-size: 1rem;
  }
  .modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  .modal-btn {
    padding: 8px 20px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
  }
  .modal-btn.confirm {
    background: var(--accent);
    color: white;
  }
  .modal-btn.cancel {
    background: var(--bg3);
    color: var(--text2);
    border: 1px solid var(--border);
  }
  .modal-btn.confirm:hover {
    background: #2563eb;
  }
  .modal-btn.cancel:hover {
    background: var(--border);
    color: var(--text1);
  }
  @media (max-width: 640px) {
    h1 { font-size: 2rem; padding-right: 0; }
    .back-home-btn { position: static; margin-bottom: 16px; display: inline-flex; }
    .article-header { display: flex; flex-direction: column; }
    .article-content p { font-size: 1rem; }
    .article-container { padding: 16px; }
  }



  /* RESET TIPIS & PERBAIKAN KECEPATAN (minimal reflow) */
  * {
    box-sizing: border-box;
  }

  /* GRID - tetap ringan */
  #list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    padding: 12px;
  }

  /* TABLET */
  @media (min-width: 600px) {
    #list {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 14px;
    }
  }

  /* DESKTOP */
  @media (min-width: 1024px) {
    #list {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
    }
  }

  /* CARD - WARNA DIPERBAIKI (lebih soft & dark mode friendly) */
  .card {
    background: #0f172a;   /* latar gelap modern */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #1e2a3e;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    cursor: pointer;
    position: relative;
    will-change: transform;
  }

  /* HOVER LEBIH HALUS & ELEGAN */
  .card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
  }

  /* THUMB */
  .thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #0a0f1c;
    display: block;
  }

  /* CONTENT */
  .card-content {
    padding: 12px;
  }

  /* TITLE - fix text-decoration (tanpa underline) */
  .title {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 6px;
    line-height: 1.4;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
  }

  /* pastikan link di dalam card tidak punya underline */
  .card a {
    text-decoration: none !important;
  }

  .card a:hover .title {
    color: #60a5fa;
  }

  /* DESKTOP TITLE LEBIH BESAR */
  @media (min-width: 768px) {
    .title {
      font-size: 15px;
    }
  }

  /* META */
  .meta {
    font-size: 11px;
    color: #7e8b9c;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }

  /* DESC */
  .card p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* TAGS */
  .tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tags span {
    font-size: 10px;
    background: #1e2a3a;
    color: #cbd5e6;
    padding: 3px 8px;
    border-radius: 999px;
    transition: 0.2s;
    cursor: pointer;
  }

  .tags span:hover {
    background: #3b82f6;
    color: #fff;
  }

  /* BUTTON LOAD MORE - ringan */
  #load {
    margin: 24px auto;
    display: block;
    padding: 10px 20px;
    background: #2563eb;
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: fit-content;
  }

  #load:hover {
    background: #1e40af;
    transform: scale(0.98);
  }

  /* SKELETON LOADING (supaya tidak lag saat muat) */
  .skeleton-card {
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #1e2a3e;
    animation: skeleton-pulse 1s infinite ease-in-out;
  }
  .skeleton-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1e2a3a;
  }
  .skeleton-content {
    padding: 12px;
  }
  .skeleton-line {
    height: 12px;
    background: #1e2a3a;
    margin-bottom: 8px;
    border-radius: 8px;
  }
  .skeleton-line.short {
    width: 60%;
  }
  @keyframes skeleton-pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
  }

  /* perbaikan tambahan: navigasi & konsistensi */
  .see-all {
    display: inline-block;
    margin: 8px 16px 16px;
    font-size: 13px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
  }
  .see-all:hover {
    text-decoration: underline;
  }
  .section-label + h2 {
    margin: 16px 12px 4px;
    font-size: 1.5rem;
  }
  /* pastikan card container tidak overflow */
  #list a {
    text-decoration: none;
  }
  
  .khusus {
    
font-family: 'Roboto', sans-serif;
  }
  
