    :root{
      --bg:#f6f8fc;
      --panel:#ffffff;
      --panel-soft:#f8fbff;
      --ink:#0f172a;
      --muted:#64748b;
      --border:#dbe4f0;
      --accent:#dc2626;
      --accent-hover:#b91c1c;
      --accent-2:#2563eb;
      --shadow:0 18px 40px rgba(15,23,42,0.08),0 4px 12px rgba(15,23,42,0.06);
      --radius:22px;
      --green:#16a34a;
      --yellow:#d97706;
      --graybtn:#4b5563;
      --badge-bg:#eff6ff;
      --badge-border:#bfdbfe;
      --badge-text:#1e3a8a;
    }

    body.dark-theme{
      --bg:#0f172a;
      --panel:#162131;
      --panel-soft:#1b293b;
      --ink:#f1f5f9;
      --muted:#94a3b8;
      --border:#334155;
      --accent:#ef4444;
      --accent-hover:#dc2626;
      --accent-2:#3b82f6;
      --shadow:0 18px 44px rgba(0,0,0,0.35),0 6px 18px rgba(0,0,0,0.22);
      --graybtn:#64748b;
      --badge-bg:#0b2545;
      --badge-border:#1d4ed8;
      --badge-text:#dbeafe;
    }

    *{
      box-sizing:border-box;
      transition:background .25s ease,color .25s ease,border-color .25s ease,box-shadow .25s ease,transform .2s ease;
    }

    html,body{
      margin:0;
      min-height:100%;
    }

    body{
      background:
        radial-gradient(circle at top left, rgba(220,38,38,0.08), transparent 28%),
        linear-gradient(180deg, var(--bg), var(--bg));
      color:var(--ink);
      font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
      padding:24px 14px;
    }

    body.modal-open{
      overflow:hidden;
    }

    .wrap{
      max-width:1180px;
      margin:0 auto;
    }

    .shell{
      position:relative;
      background:linear-gradient(180deg,var(--panel),var(--panel-soft));
      border-radius:24px;
      box-shadow:var(--shadow);
      border:1px solid var(--border);
      overflow:hidden;
    }

    .shell::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg,var(--accent),var(--accent-2),var(--green));
      z-index:1;
    }

    .hero-card{
      margin:18px 18px 16px;
      background:linear-gradient(180deg,var(--panel),var(--panel-soft));
      border:1px solid var(--border);
      border-radius:26px;
      padding:18px 22px 22px;
      box-shadow:0 12px 28px rgba(15,23,42,0.05);
    }

    .hero-top{
      display:grid;
      grid-template-columns:auto auto 1fr auto auto;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }

    .tool-home{
      width:46px;
      height:46px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--panel);
      border:1px solid var(--border);
      border-radius:14px;
      box-shadow:0 10px 24px rgba(15,23,42,0.08);
      text-decoration:none;
      flex-shrink:0;
    }

    .tool-home img{
      width:28px;
      height:28px;
      display:block;
      border-radius:8px;
    }

    .tool-home:hover{
      transform:translateY(-1px);
    }

    .hero-title{
      text-align:center;
      min-width:0;
    }

    .hero-title h1{
      margin:0;
      font-size:clamp(1.8rem,4vw,3rem);
      font-weight:800;
      letter-spacing:-1px;
      line-height:1.1;
    }

    .hero-title p{
      margin:8px auto 0;
      color:var(--muted);
      font-size:1.02rem;
      max-width:760px;
    }

    .theme-btn,
    .home-btn{
      min-height:42px;
      border-radius:999px;
      border:1px solid var(--border);
      background:var(--panel);
      color:var(--ink);
      cursor:pointer;
      font-weight:800;
      flex-shrink:0;
    }

    .theme-btn{
      width:42px;
      height:42px;
      font-size:18px;
    }

    .home-btn{
      padding:10px 14px;
      font-size:14px;
      white-space:nowrap;
    }

    .home-btn:hover,
    .theme-btn:hover{
      transform:translateY(-1px);
      box-shadow:0 8px 20px rgba(15,23,42,0.06);
      background:var(--panel-soft);
    }

    .lsi-tools-menu{
      position:relative;
      display:inline-block;
      flex-shrink:0;
    }

    .lsi-tools-btn{
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--border);
      background:var(--panel);
      color:var(--ink);
      font-size:14px;
      cursor:pointer;
      font-weight:800;
      white-space:nowrap;
    }

    .lsi-tools-dropdown{
      position:absolute;
      top:calc(100% + 10px);
      left:0;
      min-width:290px;
      max-width:min(90vw, 320px);
      max-height:70vh;
      overflow:auto;
      padding:10px;
      border-radius:16px;
      background:var(--panel);
      border:1px solid var(--border);
      display:none;
      z-index:9999;
      text-align:left;
      box-shadow:var(--shadow);
    }

    .lsi-tools-menu.open .lsi-tools-dropdown{
      display:block;
    }

    .lsi-tools-dropdown a{
      display:block;
      width:100%;
      padding:10px 12px;
      border-radius:10px;
      text-decoration:none;
      color:var(--ink) !important;
      font-weight:700;
      text-align:left;
      margin-bottom:4px;
    }

    .lsi-tools-dropdown a:visited{
      color:var(--ink) !important;
    }

    .lsi-tools-dropdown a:hover{
      background:var(--panel-soft);
    }

    .privacy-badge{
      margin:0 18px 16px;
      background:var(--badge-bg);
      color:var(--badge-text);
      border:1px solid var(--badge-border);
      border-radius:18px;
      padding:14px 16px;
      font-weight:800;
      text-align:center;
    }

    .section{
      margin:0 18px 16px;
      background:var(--panel);
      border:1px solid var(--border);
      border-radius:22px;
      padding:16px;
    }

    .strip-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .header-title{
      font-weight:800;
      color:var(--ink);
      margin:0;
      font-size:1.05rem;
    }

    .subhint{
      font-size:12px;
      font-weight:700;
      color:var(--muted);
      margin-left:6px;
    }

    .search-inline{
      flex:1;
      min-width:220px;
      max-width:320px;
    }

    input[type="text"]{
      width:100%;
      padding:11px 12px;
      border-radius:12px;
      border:1px solid var(--border);
      background:var(--bg);
      color:var(--ink);
      outline:none;
      font-size:14px;
      box-shadow:inset 0 1px 3px rgba(15,23,42,0.04);
    }

    input[type="text"]:focus{
      border-color:var(--accent);
      box-shadow:0 0 0 4px rgba(220,38,38,0.10);
    }

    .top-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:space-between;
      align-items:center;
    }

    .addBox{
      flex-grow:1;
      display:flex;
      gap:8px;
      min-width:280px;
    }

    .addBox input{
      flex-grow:1;
    }

    .tinybtn{
      background:var(--panel);
      color:var(--ink);
      padding:10px 14px;
      border-radius:12px;
      font-size:13px;
      font-weight:800;
      cursor:pointer;
      border:1px solid var(--border);
      white-space:nowrap;
      min-height:44px;
    }

    .tinybtn:hover{
      background:var(--panel-soft);
      transform:translateY(-1px);
      box-shadow:0 8px 20px rgba(15,23,42,0.06);
    }

    .redbtn{
      background:linear-gradient(135deg,var(--accent),var(--accent-hover));
      color:#fff;
      border:none;
    }

    .greenbtn{
      background:linear-gradient(135deg,#22c55e,#16a34a);
      color:#fff;
      border:none;
    }

    .bluebtn{
      background:linear-gradient(135deg,#38bdf8,#0284c7);
      color:#fff;
      border:none;
    }

    .yellowbtn{
      background:linear-gradient(135deg,#fbbf24,#d97706);
      color:#fff;
      border:none;
    }

    .graybtn{
      background:linear-gradient(135deg,#6b7280,var(--graybtn));
      color:#fff;
      border:none;
    }

    .bigbtn{
      background:linear-gradient(135deg,var(--accent),var(--accent-hover));
      color:#fff;
      padding:12px 20px;
      border-radius:12px;
      font-weight:800;
      cursor:pointer;
      border:none;
      min-width:100px;
      min-height:50px;
    }

    .bigbtn:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 26px rgba(220,38,38,.25);
    }

    .panel-grid{
      display:grid;
      grid-template-columns:1fr 380px;
      min-height:660px;
      margin:0 18px 18px;
      border:1px solid var(--border);
      border-radius:24px;
      overflow:hidden;
      background:var(--panel);
    }

    .list-wrap{
      padding:20px;
      overflow-y:auto;
      background:var(--panel);
      border-right:1px solid var(--border);
    }

    .track{
      background:var(--panel-soft);
      margin-bottom:14px;
      padding:16px;
      border-radius:16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      border:1px solid var(--border);
      gap:12px;
    }

    .track:hover{
      border-color:var(--accent);
      background:rgba(220,38,38,0.04);
    }

    .title{
      font-weight:800;
      color:var(--accent);
      line-height:1.2;
    }

    .meta{
      font-size:11px;
      color:var(--muted);
    }

    .control-panel{
      background:var(--panel-soft);
      padding:20px;
      display:flex;
      flex-direction:column;
      gap:16px;
    }

    .status-screen{
      background:var(--panel);
      padding:18px;
      border-radius:16px;
      border:1px solid var(--border);
      box-shadow:0 8px 20px rgba(15,23,42,0.04);
    }

    .status-title{
      font-size:12px;
      color:var(--muted);
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.5px;
      margin-bottom:8px;
    }

    #nowPlaying{
      font-weight:700;
      color:var(--ink);
      font-size:15px;
      line-height:1.4;
      word-break:break-word;
    }

    .videoBox{
      position:relative;
      width:100%;
      background:#000;
      border-radius:14px;
      border:1px solid var(--border);
      overflow:hidden;
      padding-top:56.25%;
      box-shadow:0 8px 20px rgba(15,23,42,0.08);
    }

    #yt-player{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
    }

    .videoHint{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:800;
      text-align:center;
      padding:16px;
      pointer-events:none;
      opacity:.9;
      background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65));
    }

    .videoHint.hide{
      display:none;
    }

    .volRow{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--muted);
    }

    input[type=range]{
      flex-grow:1;
      accent-color:var(--accent);
      cursor:pointer;
    }

    #queueList{
      max-height:260px;
      overflow-y:auto;
      padding-right:8px;
    }

    .qitem{
      background:var(--panel);
      padding:13px 15px;
      margin-bottom:10px;
      border-radius:14px;
      border:1px solid var(--border);
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:14px;
      cursor:grab;
      user-select:none;
      gap:10px;
    }

    .qitem:first-child{
      border-left:4px solid var(--accent);
      background:rgba(220,38,38,0.05);
    }

    .qitem.dragging{
      opacity:.6;
      transform:scale(1.02);
      box-shadow:0 4px 12px rgba(220,38,38,.3);
      border-color:var(--accent);
    }

    .qitem.drag-over{
      border:2px dashed var(--accent);
      background:rgba(220,38,38,0.06);
    }

    .qtext{
      flex:1;
      min-width:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .qdel{
      color:var(--muted);
      font-size:18px;
      line-height:1;
      padding:0 6px;
      background:none;
      border:none;
      cursor:pointer;
    }

    .qdel:hover{
      color:var(--accent);
    }

    .plPanel{
      display:none;
    }

    .plPanel.show{
      display:block;
    }

    .plCard{
      background:var(--panel-soft);
      padding:16px;
      margin-bottom:12px;
      border-radius:16px;
      border:1px solid var(--border);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
    }

    .menu{
      display:none;
      position:absolute;
      background:var(--panel);
      border:1px solid var(--border);
      border-radius:12px;
      padding:12px;
      z-index:100;
      right:10px;
      top:48px;
      box-shadow:0 12px 30px rgba(0,0,0,.15);
      width:240px;
    }

    .menu.show{
      display:block;
    }

    .menu button{
      display:block;
      width:100%;
      text-align:left;
      padding:10px 12px;
      border-radius:10px;
      margin:2px 0;
      border:1px solid transparent;
      background:transparent;
      color:var(--ink);
      font-weight:700;
      cursor:pointer;
    }

    .menu button:hover{
      background:var(--panel-soft);
    }

    .modalBack{
      position:fixed;
      inset:0;
      background:rgba(15,23,42,0.55);
      backdrop-filter:blur(6px);
      -webkit-backdrop-filter:blur(6px);
      display:none;
      align-items:center;
      justify-content:center;
      padding:20px;
      z-index:5000;
      overflow:hidden;
    }

    .modalBack.show{
      display:flex;
    }

    .modal{
      background:var(--panel);
      border-radius:28px;
      width:100%;
      max-width:520px;
      border:1px solid var(--border);
      box-shadow:0 28px 70px rgba(0,0,0,.28);
      overflow:hidden;
    }

    .modal.large-modal{
      max-width:980px;
      max-height:min(88vh, 860px);
      display:flex;
      flex-direction:column;
    }

    .modalHead{
      padding:22px 26px 12px;
      border-bottom:none;
      font-weight:800;
      display:flex;
      justify-content:center;
      align-items:center;
      position:relative;
      gap:12px;
    }

    .modalHead.install-modal-head{
      padding:26px 30px 14px;
    }

    .modalTitleCentered{
      width:100%;
      text-align:center;
      font-size:clamp(1.4rem,2vw,1.9rem);
      font-weight:900;
      letter-spacing:-0.02em;
      color:var(--ink);
    }

    .modalCloseRound{
      position:absolute;
      top:18px;
      right:18px;
      width:42px;
      height:42px;
      border-radius:999px;
      border:1px solid var(--border);
      background:var(--panel-soft);
      color:var(--ink);
      font-size:20px;
      font-weight:900;
      line-height:1;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 18px rgba(15,23,42,0.08);
    }

    .modalCloseRound:hover{
      transform:translateY(-1px);
      background:var(--panel);
    }

    .modalBody{
      padding:16px;
    }

    .modalBody input{
      width:100%;
      border:1px solid var(--border);
      border-radius:12px;
      padding:12px;
      font-size:14px;
      background:var(--bg);
      color:var(--ink);
      outline:none;
    }

    .modalFoot{
      padding:12px 16px;
      border-top:1px solid var(--border);
      display:flex;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }

    .install-modal-body{
      padding:0 30px 26px;
      overflow:auto;
    }

    .install-intro{
      color:var(--muted);
      line-height:1.75;
      margin:0 auto 20px;
      text-align:center;
      max-width:760px;
      font-size:1rem;
    }

    .install-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
      align-items:stretch;
    }

    .install-card{
      background:linear-gradient(180deg,var(--panel-soft),var(--panel));
      border:1px solid var(--border);
      border-radius:22px;
      padding:18px 18px 16px;
      box-shadow:0 12px 30px rgba(15,23,42,0.06);
    }

    .install-card h3{
      margin:0 0 12px;
      font-size:1.04rem;
      color:var(--ink);
      font-weight:900;
      letter-spacing:-0.02em;
    }

    .install-card ol{
      margin:0;
      padding-left:20px;
      color:var(--muted);
      line-height:1.8;
      font-size:0.97rem;
    }

    .install-card ol li{
      margin-bottom:4px;
    }

    .rename-modal-head{
      padding:18px 20px 12px;
      justify-content:space-between;
    }

    .rename-modal-title{
      font-size:1.05rem;
      font-weight:800;
      color:var(--ink);
    }

    .rename-close-btn{
      min-width:42px;
      min-height:42px;
      padding:0;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    .sr-only{
      position:absolute;
      width:1px;
      height:1px;
      padding:0;
      margin:-1px;
      overflow:hidden;
      clip:rect(0,0,0,0);
      white-space:nowrap;
      border:0;
    }

    @media (max-width:980px){
      .panel-grid{
        grid-template-columns:1fr;
      }

      .list-wrap{
        border-right:none;
        border-bottom:1px solid var(--border);
      }

      .hero-top{
        grid-template-columns:auto auto 1fr auto auto;
      }

      .install-grid{
        grid-template-columns:1fr;
      }

      .modal.large-modal{
        max-width:840px;
      }
    }

    @media (max-width:760px){
      body{
        padding:16px 10px;
      }

      .hero-card,
      .section,
      .panel-grid,
      .plPanel,
      .privacy-badge{
        margin-left:12px;
        margin-right:12px;
      }

      .hero-top{
        grid-template-columns:auto auto auto auto;
        justify-content:space-between;
      }

      .hero-title{
        grid-column:1 / -1;
        order:5;
      }

      .addBox{
        min-width:100%;
      }

      .theme-btn{
        width:40px;
        height:40px;
      }

      .home-btn,
      .lsi-tools-btn{
        min-height:40px;
        padding:9px 12px;
        font-size:13px;
      }

      .lsi-tools-dropdown{
        min-width:260px;
        max-width:min(92vw, 320px);
      }

      .modal.large-modal{
        max-width:100%;
        max-height:min(92vh, 920px);
        border-radius:24px;
      }

      .modalHead.install-modal-head{
        padding:22px 20px 12px;
      }

      .install-modal-body{
        padding:0 20px 20px;
      }

      .modalCloseRound{
        top:14px;
        right:14px;
        width:40px;
        height:40px;
      }

      .install-card{
        border-radius:18px;
        padding:16px;
      }
    }

    /* Standard LetsStartIt categorized tools menu */
    .lsi-tools-btn{
      background:linear-gradient(135deg,#8b5cf6,#6d28d9);
      color:#fff;
      border:none;
      box-shadow:0 10px 22px rgba(124,58,237,.28);
      padding:11px 16px;
    }
    .lsi-tools-btn:hover{
      background:linear-gradient(135deg,#7c3aed,#5b21b6);
      color:#fff;
    }
    .lsi-tools-dropdown{
      min-width:300px;
      border-radius:18px;
      box-shadow:0 18px 36px rgba(15,23,42,.18);
    }
    .lsi-tools-dropdown a{
      padding:11px 12px;
      border-radius:12px;
      margin-bottom:0;
    }
    .drop-heading{
      margin:12px 6px 6px;
      padding:8px 10px;
      border-radius:10px;
      background:rgba(124,58,237,.10);
      color:var(--ink);
      font-size:13px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.06em;
    }
    .drop-home{
      margin-bottom:8px !important;
      border:1px solid var(--border);
      background:rgba(34,197,94,.10);
    }
    .youtube-support{
      display:flex;
      justify-content:center;
      margin:18px auto 0;
    }
    .youtube-support a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      gap:8px;
      padding:13px 22px;
      border-radius:999px;
      background:#ff0000;
      color:#fff;
      text-decoration:none;
      font-size:16px;
      font-weight:900;
      box-shadow:0 12px 24px rgba(255,0,0,.22);
    }
    .youtube-support a:hover{
      background:#d90000;
      transform:translateY(-1px);
    }

  div#container
{
   width: 1302px;
   position: relative;
   margin: 0 auto 0 auto;
   text-align: left;
}
body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 19px;
   line-height: 1.1875;
   margin: 0;
   text-align: center;
}
a
{
   color: #800080;
   text-decoration: none;
}
a:visited
{
   color: #00FF00;
}
a:active
{
   color: #0000FF;
}
a:hover
{
   color: #376BAD;
   text-decoration: underline;
}
