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

    /* ══ LIGHT THEME (default) ══ */
    :root, [data-theme="light"] {
      --red: #E8000D;
      --red-dark: #B00008;
      --red-glow: rgba(232, 0, 13, 0.18);
      --amber: #F07800;
      --amber-glow: rgba(240, 120, 0, 0.15);
      --bg: #F5F5F5;
      --surface: #FFFFFF;
      --surface2: #F0F0F0;
      --surface3: #E8E8E8;
      --border: #DEDEDE;
      --border2: #CBCBCB;
      --text: #1A1A1A;
      --muted: #555555;
      --muted2: #888888;
      --white: #1A1A1A;
      --nav-bg: rgba(255,255,255,0.94);
      --hero-glow: rgba(232, 0, 13, 0.08);
      --card-shadow: 0 4px 24px rgba(0,0,0,0.10);
      --drawer-bg: #FFFFFF;
      --ticker-bg: #F0F0F0;
      --footer-copy: #999999;
      --footer-disc: #AAAAAA;
      --logo-text: #1A1A1A;
    }

    /* ══ DARK THEME ══ */
    [data-theme="dark"] {
      --red: #FF2D2D;
      --red-dark: #CC0000;
      --red-glow: rgba(255, 45, 45, 0.22);
      --amber: #FF9A3C;
      --amber-glow: rgba(255, 154, 60, 0.18);
      --bg: #0A0A0A;
      --surface: #111111;
      --surface2: #181818;
      --surface3: #1E1E1E;
      --border: #242424;
      --border2: #2E2E2E;
      --text: #EFEFEF;
      --muted: #999999;
      --muted2: #666666;
      --white: #FFFFFF;
      --nav-bg: rgba(10,10,10,0.92);
      --hero-glow: rgba(255, 45, 45, 0.12);
      --card-shadow: 0 24px 64px rgba(0,0,0,0.5);
      --drawer-bg: #111111;
      --ticker-bg: #111111;
      --footer-copy: #444444;
      --footer-disc: #333333;
      --logo-text: #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.35s ease, color 0.35s ease;
    }
    body.drawer-open { overflow: hidden; }

    /* ══ FLOATING PARTICLES ══
    .particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .particle {
      position: absolute;
      border-radius: 50%;
      animation: floatUp linear infinite;
      opacity: 0;
    }
    @keyframes floatUp {
      0% { opacity: 0; transform: translateY(100vh) rotate(0deg) scale(0.5); }
      10% { opacity: 0.6; }
      90% { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-10vh) rotate(360deg) scale(1.2); }
    } */

    /* ══ DROP ANIMATION ══ */
    @keyframes dropIn {
      0% { opacity: 0; transform: translateY(-60px) scale(0.85); }
      60% { transform: translateY(8px) scale(1.02); }
      80% { transform: translateY(-4px) scale(0.99); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-24px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes bounceIn {
      0% { opacity: 0; transform: scale(0.3); }
      50% { transform: scale(1.05); }
      70% { transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    @keyframes heroPulse {
      0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
    }
    @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
    @keyframes logoGlow {
      0%,100% { text-shadow: 0 0 0px transparent; }
      50% { text-shadow: 0 0 20px var(--red-glow); }
    }

    /* ══ NAV ══ */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--nav-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      transition: background 0.35s ease;
    }

    /* ══ LOGO ══ */
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      color: var(--logo-text);
      text-decoration: none;
      letter-spacing: -0.04em;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: dropIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }
    .nav-logo-icon {
      width: 34px;
      height: 34px;
      background: var(--red);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 12px var(--red-glow);
      animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .nav-logo:hover .nav-logo-icon {
      transform: rotate(-8deg) scale(1.1);
      box-shadow: 0 6px 20px var(--red-glow);
    }
    .nav-logo-text { color: var(--logo-text); }
    .nav-logo-text span { color: var(--red); }

    .nav-right { display: flex; align-items: center; gap: 12px; }

    .nav-links { display: flex; gap: 0; list-style: none; }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text); background: var(--surface2); }

    /* ══ THEME TOGGLE ══ */
    .theme-toggle {
      width: 48px;
      height: 26px;
      background: var(--surface2);
      border: 2px solid var(--border2);
      border-radius: 100px;
      cursor: pointer;
      position: relative;
      transition: background 0.3s ease, border-color 0.3s ease;
      flex-shrink: 0;
    }
    .theme-toggle::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 18px;
      height: 18px;
      background: var(--red);
      border-radius: 50%;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
      box-shadow: 0 2px 6px var(--red-glow);
    }
    [data-theme="dark"] .theme-toggle::after { transform: translateX(22px); }
    .theme-toggle-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; display: none; }
    .toggle-wrap { display: flex; align-items: center; gap: 8px; }
    .theme-icon { font-size: 1rem; transition: all 0.3s; }

    /* ══ LANG DROPDOWN ══ */
    .lang-dropdown-wrap { position: relative; }
    .lang-dropdown-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--surface2);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding: 6px 12px;
      color: var(--text);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
    }
    .lang-dropdown-btn:hover { border-color: var(--red); color: var(--red); }
    .lang-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
      padding: 8px;
      display: none;
      z-index: 9999;
      min-width: 200px;
      max-height: 340px;
      overflow-y: auto;
    }
    .lang-dropdown-menu.open { display: block; animation: fadeUp 0.2s ease; }
    .lang-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
    .lang-menu-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      background: none;
      border: 1px solid transparent;
      border-radius: 8px;
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s;
      font-family: 'DM Sans', sans-serif;
      text-align: left;
      white-space: nowrap;
    }
    .lang-menu-btn:hover, .lang-menu-btn.active { background: var(--surface2); border-color: var(--border); color: var(--text); }
    .lang-menu-btn.active { border-color: var(--red); color: var(--red); background: rgba(232,0,13,0.06); }

    /* ══ HAMBURGER ══ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid var(--border2);
      cursor: pointer;
      padding: 8px;
      border-radius: 10px;
      transition: all 0.2s;
      z-index: 300;
    }
    .hamburger:hover { border-color: var(--red); background: var(--surface2); }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ══ DRAWER ══ */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 290;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(3px);
    }
    .drawer-overlay.active { opacity: 1; pointer-events: all; }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(300px, 85vw);
      height: 100dvh;
      background: var(--drawer-bg);
      border-left: 1px solid var(--border2);
      z-index: 295;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    .drawer.active { transform: translateX(0); }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .drawer-logo { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--text); letter-spacing: -0.03em; display: flex; align-items: center; gap: 9px; }
    .drawer-logo-icon { width: 28px; height: 28px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
    .drawer-logo-text span { color: var(--red); }

    .drawer-close {
      width: 32px; height: 32px;
      border: 1px solid var(--border2);
      background: var(--surface2);
      border-radius: 8px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      transition: all 0.2s;
    }
    .drawer-close:hover { border-color: var(--red); color: var(--red); }

    .drawer-section-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted2); font-weight: 700; padding: 14px 20px 6px; }

    .drawer-nav { padding: 4px 12px; display: flex; flex-direction: column; gap: 4px; }
    .drawer-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s, opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateX(16px);
  white-space: normal;
  word-break: break-word;
}
    .drawer.active .drawer-nav a { opacity: 1; transform: translateX(0); }
    .drawer.active .drawer-nav a:nth-child(1) { transition-delay: 0.06s; }
    .drawer.active .drawer-nav a:nth-child(2) { transition-delay: 0.10s; }
    .drawer.active .drawer-nav a:nth-child(3) { transition-delay: 0.14s; }
    .drawer.active .drawer-nav a:nth-child(4) { transition-delay: 0.18s; }
    .drawer.active .drawer-nav a:nth-child(5) { transition-delay: 0.22s; }
    .drawer.active .drawer-nav a:nth-child(6) { transition-delay: 0.26s; }
    .drawer-nav a:hover { background: var(--surface2); color: var(--red); }
    .drawer-nav a:hover .drawer-icon svg { stroke: var(--red); }
    .drawer-icon {
      width: 32px; height: 32px;
      background: var(--surface2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .drawer-nav a:hover .drawer-icon { background: rgba(232,0,13,0.1); }
    .drawer-divider { height: 1px; background: var(--border); margin: 8px 20px; }

    .drawer-lang { padding: 8px 12px 12px; }
    .drawer-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
    .drawer-lang-btn {
      padding: 8px 6px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--muted);
      font-size: 0.75rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
    }
    .drawer-lang-btn:hover, .drawer-lang-btn.active { border-color: var(--red); color: var(--text); background: rgba(232,0,13,0.06); }

    .drawer-theme-row { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
    .drawer-theme-label { font-size: 0.85rem; color: var(--text); font-weight: 500; }

    .drawer-footer { padding: 14px 20px; border-top: 1px solid var(--border); margin-top: auto; }
    .drawer-footer-text { font-size: 0.74rem; color: var(--muted2); line-height: 1.5; }

    /* ══ HERO ══ */
    .hero {
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 5% 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(ellipse, var(--hero-glow) 0%, transparent 65%);
      pointer-events: none;
      animation: heroPulse 7s ease-in-out infinite;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,0,13,0.08);
      border: 1px solid rgba(232,0,13,0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 26px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      animation: dropIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }
    .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.5s ease infinite; flex-shrink: 0; }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 6.5vw, 5.2rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 22px;
      color: var(--text);
      animation: dropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    }
    .hero h1 em { font-style: normal; color: var(--red); }
    .hero h1 .amber { color: var(--amber); }

    .hero-sub {
      font-size: clamp(0.9rem, 1.8vw, 1.1rem);
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 48px;
      font-weight: 400;
      line-height: 1.75;
      animation: fadeUp 0.7s ease 0.35s both;
    }

    /* ══ DOWNLOADER CARD ══ */
    .dl-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 22px;
      padding: 28px;
      width: 100%;
      max-width: 680px;
      position: relative;
      z-index: 1;
      box-shadow: var(--card-shadow);
      animation: dropIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
      transition: background 0.35s ease, border-color 0.35s ease;
    }
    .dl-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .dl-card-icon { width: 38px; height: 38px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px var(--red-glow); }
    .dl-card-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.97rem; color: var(--text); }
    .dl-card-subtitle { font-size: 0.78rem; color: var(--muted); margin-top: 1px; }

    .url-row { display: flex; gap: 8px; margin-bottom: 12px; }
    .url-input {
      flex: 1;
      background: var(--surface2);
      border: 1.5px solid var(--border2);
      border-radius: 12px;
      padding: 13px 16px;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.35s;
      min-width: 0;
    }
    .url-input::placeholder { color: var(--muted2); }
    .url-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }

    .paste-btn {
      background: var(--surface2);
      border: 1.5px solid var(--border2);
      border-radius: 12px;
      padding: 13px 16px;
      color: var(--muted);
      cursor: pointer;
      font-size: 0.82rem;
      font-weight: 600;
      white-space: nowrap;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
      flex-shrink: 0;
    }
    .paste-btn:hover { border-color: var(--red); color: var(--red); background: rgba(232,0,13,0.06); }

    .dl-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.04em;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .dl-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px var(--red-glow); }
    .dl-btn:active { transform: translateY(0); }
    .dl-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    /* ══ RESULT ══ */
    #result { margin-top: 16px; }
    .video-result { background: var(--surface2); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; animation: slideUp 0.3s ease; }
    .video-meta { display: flex; gap: 14px; padding: 16px; align-items: flex-start; }
    .thumb-wrap { position: relative; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
    .thumb-wrap img { width: 110px; height: 62px; object-fit: cover; display: block; }
    .play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); }
    .play-icon svg { width: 24px; height: 24px; }
    .video-info h3 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .video-info .meta-row { font-size: 0.78rem; color: var(--muted); }
    .dl-links { border-top: 1px solid var(--border); padding: 14px 16px; display: flex; flex-wrap: wrap; gap: 8px; }
    .dl-links-col { flex-direction: column; gap: 6px; }
    .fmt-group-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; padding: 4px 0 2px; width: 100%; }
    .fmt-badge { font-size: 0.67rem; background: rgba(255,200,0,0.15); color: #D97706; border-radius: 4px; padding: 1px 5px; margin-left: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; vertical-align: middle; }
    .dl-link-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 8px; font-size: 0.83rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; width: 100%; justify-content: space-between; }
    .dl-link-btn svg:last-child { opacity: 0.5; margin-left: auto; flex-shrink: 0; }
    .dl-link-btn.mp4 { background: rgba(232,0,13,0.08); border: 1px solid rgba(232,0,13,0.2); color: var(--red); }
    .dl-link-btn.mp4:hover { background: var(--red); color: white; }
    .dl-link-btn.mp3 { background: rgba(240,120,0,0.08); border: 1px solid rgba(240,120,0,0.2); color: var(--amber); }
    .dl-link-btn.mp3:hover { background: var(--amber); color: #fff; }
    .status-box { padding: 14px 18px; border-radius: 10px; font-size: 0.88rem; margin-top: 12px; }
    .status-box.error { background: rgba(232,0,13,0.07); border: 1px solid rgba(232,0,13,0.2); color: var(--red); }
    .status-box.loading { background: var(--surface2); border: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; gap: 10px; }
    .spinner { width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--red); border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0; }

    /* ══ TICKER ══ */
    .ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--ticker-bg); padding: 11px 0; }
    .ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
    .ticker-track:hover { animation-play-state: paused; }
    .ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; font-size: 0.76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
    .ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
    .ticker-dot.amber { background: var(--amber); }

    /* ══ STATS BAR ══ */
    .stats-bar { display: flex; justify-content: center; gap: clamp(24px, 6vw, 80px); flex-wrap: wrap; padding: 56px 5%; }
    .stat-item { text-align: center; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4.5vw, 2.8rem); font-weight: 900; color: var(--red); display: block; line-height: 1; margin-bottom: 6px; }
    .stat-num.amber { color: var(--amber); }
    .stat-label { font-size: 0.83rem; color: var(--muted); font-weight: 500; }

    /* ══ SECTIONS ══ */
    section { padding: 84px 5%; }
    .section-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); font-weight: 700; margin-bottom: 10px; }
    .section-label.amber { color: var(--amber); }
    .section-title { font-family: 'Syne', sans-serif; font-weight: 900; font-size: clamp(1.7rem, 3.5vw, 2.7rem); letter-spacing: -0.03em; color: var(--text); margin-bottom: 14px; line-height: 1.1; }
    .section-desc { color: var(--muted); max-width: 520px; font-size: 0.95rem; line-height: 1.75; }

    /* ── HOW IT WORKS ── */
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 48px; }
    .step-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      position: relative;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      overflow: hidden;
    }
    .step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--amber));
      opacity: 0;
      transition: opacity 0.25s;
    }
    .step-card:hover { border-color: rgba(232,0,13,0.4); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .step-card:hover::before { opacity: 1; }
    .step-num { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--surface3); position: absolute; top: 12px; right: 16px; line-height: 1; transition: color 0.25s; }
    .step-card:hover .step-num { color: rgba(232,0,13,0.08); }
    .step-icon { width: 44px; height: 44px; background: rgba(232,0,13,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .step-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.97rem; margin-bottom: 8px; color: var(--text); }
    .step-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

    /* ── FEATURES ── */
    .features-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 30px; margin-top: 48px; }
    .feat { display: flex; gap: 16px; padding: 20px; border-radius: 14px; border: 1px solid transparent; transition: all 0.25s; }
    .feat:hover { background: var(--surface2); border-color: var(--border); }
    .feat-icon { width: 42px; height: 42px; background: rgba(232,0,13,0.1); border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .feat-icon.amber { background: rgba(240,120,0,0.1); }
    .feat h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 5px; color: var(--text); }
    .feat p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

    /* ══ COMPARISON TABLE ══ */
    .compare-wrap { max-width: 880px; margin: 48px auto 0; overflow-x: auto; border-radius: 16px; border: 1.5px solid var(--border); box-shadow: var(--card-shadow); }
    .compare-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; min-width: 500px; }
    .compare-table th { padding: 14px 16px; text-align: left; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); border-bottom: 1px solid var(--border2); background: var(--surface); }
    .compare-table th.yt { color: var(--red); }
    .compare-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: middle; }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table .feature-name { color: var(--text); font-weight: 500; }
    .compare-table .col-yt { background: rgba(232,0,13,0.04); border-left: 1px solid rgba(232,0,13,0.12); border-right: 1px solid rgba(232,0,13,0.12); color: var(--text); font-weight: 600; }
    .compare-table thead th.col-yt { background: rgba(232,0,13,0.08); }
    .check { color: #16a34a; font-weight: 700; }
    .cross { color: var(--muted2); }
    .compare-caption { text-align: center; font-size: 0.76rem; color: var(--muted2); margin-top: 12px; }

    /* ── RANKINGS ── */
    .ranking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 36px; }
    .rank-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 22px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: all 0.25s;
    }
    .rank-card:hover { border-color: rgba(232,0,13,0.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
    .rank-badge { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--red); min-width: 36px; line-height: 1; padding-top: 2px; }
    .rank-badge.amber { color: var(--amber); }
    .rank-badge.muted { color: var(--muted2); }
    .rank-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 5px; }
    .rank-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
    .rank-stars { font-size: 0.74rem; color: var(--amber); margin-bottom: 5px; }

    /* ══ SEO SECTION ══ */
    .seo-section { max-width: 860px; margin: 0 auto; }
    .seo-section p { color: var(--muted); margin-bottom: 16px; font-size: 0.93rem; line-height: 1.85; }
    .seo-section h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.15rem, 2.5vw, 1.45rem); color: var(--text); margin: 32px 0 10px; }
    .seo-section em { font-style: italic; color: var(--text); }
    .seo-section code { display: inline-block; background: var(--surface2); border: 1px solid var(--border2); border-radius: 6px; padding: 1px 7px; font-size: 0.82rem; color: var(--amber); font-family: monospace; }

    /* ══ DISCLAIMER ══ */
    .disclaimer-section {
      background: linear-gradient(135deg, rgba(232,0,13,0.04) 0%, rgba(240,120,0,0.04) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .disclaimer-box {
      max-width: 860px;
      margin: 0 auto;
      background: var(--surface);
      border: 1.5px solid var(--border2);
      border-radius: 18px;
      padding: 30px;
      box-shadow: var(--card-shadow);
    }
    .disclaimer-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .disclaimer-icon { width: 44px; height: 44px; background: rgba(240,120,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .disclaimer-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--text); }
    .disclaimer-subtitle { font-size: 0.78rem; color: var(--muted); }
    .disclaimer-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
    .disclaimer-item { display: flex; gap: 10px; align-items: flex-start; padding: 14px; background: var(--surface2); border-radius: 12px; border: 1px solid var(--border); }
    .disclaimer-item-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .disclaimer-item-text { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
    .disclaimer-item-text strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 3px; font-size: 0.86rem; }
    .disclaimer-legal { margin-top: 18px; padding: 14px 18px; background: rgba(240,120,0,0.06); border: 1px solid rgba(240,120,0,0.2); border-radius: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
    .disclaimer-legal strong { color: var(--amber); }

    /* ══ FAQ ══ */
    .faq-grid { max-width: 720px; margin: 48px auto 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 0.93rem; color: var(--text); gap: 16px; transition: color 0.2s; -webkit-tap-highlight-color: transparent; }
    .faq-q:hover { color: var(--red); }
    .faq-q svg { flex-shrink: 0; transition: transform 0.3s; stroke: var(--muted); }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
    .faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }

    /* ══ FOOTER ══ */
    footer { border-top: 1px solid var(--border); padding: 52px 5% 36px; text-align: center; background: var(--surface); }
    .footer-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
    .footer-logo-icon { width: 30px; height: 30px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .footer-logo { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--text); letter-spacing: -0.03em; }
    .footer-logo span { color: var(--red); }
    .footer-tagline { color: var(--muted); font-size: 0.86rem; margin-bottom: 24px; }
    .footer-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin: 0 0 28px; list-style: none; }
    .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.83rem; padding: 5px 12px; border-radius: 8px; transition: all 0.2s; font-weight: 500; }
    .footer-links a:hover { color: var(--red); background: var(--surface2); }
    .footer-divider { height: 1px; background: var(--border); max-width: 500px; margin: 0 auto 20px; }
    .footer-copy { font-size: 0.79rem; color: var(--muted2); margin-bottom: 10px; }
    .footer-disc { font-size: 0.75rem; color: var(--muted2); max-width: 620px; margin: 0 auto; line-height: 1.7; }

    /* ══ SCROLL REVEAL ══ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 768px) {
      .nav-links, .lang-dropdown-wrap { display: none !important; }
      .hamburger { display: flex; }
      .theme-toggle-label { display: none; }
    }
    @media (max-width: 640px) {
      nav { padding: 0 4%; height: 58px; }
      .hero { padding: 56px 4% 44px; min-height: 80vh; }
      .hero-sub { font-size: 0.9rem; margin-bottom: 32px; }
      .dl-card { padding: 18px; border-radius: 18px; }
      .url-row { flex-direction: column; gap: 8px; }
      .paste-btn { width: 100%; text-align: center; }
      section { padding: 60px 4%; }
      .stats-bar { gap: 32px; padding: 44px 4%; }
      .steps-grid, .features-grid, .ranking-grid { grid-template-columns: 1fr; }
      .disclaimer-items { grid-template-columns: 1fr; }
    }
    @media (min-width: 769px) {
      .drawer, .drawer-overlay { display: none !important; }
    }