    :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;
    }

    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;
    }

    *{
      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;
      height:100vh;
    }

    .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:visible;
    }

    .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;
      border-top-left-radius:24px;
      border-top-right-radius:24px;
    }

    .hero-card{
      margin:12px 18px 16px;
      background:linear-gradient(180deg,var(--panel),var(--panel-soft));
      border:1px solid var(--border);
      border-radius:26px;
      padding:18px 22px 22px;
      text-align:center;
      box-shadow:0 12px 28px rgba(15,23,42,0.05);
    }

    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }

    .topbar-left{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      flex:1;
    }

    .topbar-right{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:0 0 auto;
    }

    .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:0 0 auto;
    }

    .tool-home img{
      width:28px;
      height:28px;
      display:block;
      border-radius:8px;
    }

    .tool-home:hover{
      transform:translateY(-1px);
    }

    .theme-btn,
    .install-btn{
      min-height:42px;
      border-radius:999px;
      border:1px solid var(--border);
      background:var(--panel);
      color:var(--ink);
      cursor:pointer;
      font-weight:800;
      flex:0 0 auto;
    }

    .theme-btn{
      width:42px;
      height:42px;
      font-size:18px;
    }

    .install-btn{
      padding:10px 14px;
      font-size:14px;
      white-space:nowrap;
    }

    .lsi-tools-menu{
      position:relative;
      display:inline-block;
      z-index:40;
    }

    .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;
      font-weight:700;
      text-align:left;
      margin-bottom:4px;
      color:#000 !important;
    }

    .lsi-tools-dropdown a:visited{
      color:#000 !important;
    }

    .lsi-tools-dropdown a:hover{
      background:var(--panel-soft);
    }

    body.dark-theme .lsi-tools-dropdown a,
    body.dark-theme .lsi-tools-dropdown a:visited{
      color:#fff !important;
    }

    .hero-card h1{
      margin:4px 0 10px;
      font-size:clamp(2.1rem,4vw,3.2rem);
      font-weight:800;
      letter-spacing:-1px;
      text-align:center;
    }

    .hero-card p{
      margin:0;
      color:var(--muted);
      font-size:1.02rem;
      max-width:760px;
      margin-inline:auto;
      line-height:1.7;
    }

    .privacy-badge{
      margin:0 18px 16px;
      background:linear-gradient(180deg,var(--panel),var(--panel-soft));
      border:1px solid var(--border);
      border-radius:18px;
      padding:14px 18px;
      text-align:center;
      font-weight:800;
      color:var(--ink);
      box-shadow:0 8px 20px rgba(15,23,42,0.04);
    }

    .privacy-badge span{
      color:var(--muted);
      font-weight:700;
    }

    .section{
      margin:0 18px 16px;
      background:var(--panel);
      border:1px solid var(--border);
      border-radius:22px;
      padding:16px;
    }

    .section h2{
      margin:0 0 14px;
      font-size:1.05rem;
      font-weight:800;
      color:var(--ink);
    }

    .strip-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .header-title{
      font-weight:800;
      color:var(--ink);
    }

    .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,
    .bigbtn{
      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;
    }

    .bigbtn{
      min-height:52px;
      font-size:15px;
    }

    .tinybtn:hover,
    .bigbtn:hover,
    .install-btn:hover,
    .theme-btn:hover,
    .lsi-tools-btn: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;
    }

    .panel-grid{
      display:grid;
      grid-template-columns:1fr 340px;
      min-height:600px;
      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);
    }

    .track.library-draggable{
      cursor:grab;
      user-select:none;
    }

    .track.library-draggable.dragging{
      opacity:.55;
      transform:scale(1.01);
      border-color:var(--accent);
    }

    .track.library-draggable.drag-over{
      border:2px dashed var(--accent);
      background:rgba(220,38,38,0.06);
    }

    .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:20px;
    }

    .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:16px;
      line-height:1.4;
      word-break:break-word;
    }

    .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:380px;
      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,.45);
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:5000;
      overflow:hidden;
    }

    .modalBack.show{
      display:flex;
    }

    .modal{
      background:var(--panel);
      border-radius:26px;
      width:100%;
      max-width:1180px;
      border:1px solid var(--border);
      box-shadow:0 24px 60px rgba(0,0,0,.25);
      overflow:hidden;
    }

    .modalHead{
      padding:14px 16px;
      border-bottom:1px solid var(--border);
      font-weight:800;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }

    .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;
    }

    .install-modal-large{
      max-height:min(92vh, 820px);
      display:flex;
      flex-direction:column;
    }

    .install-modal-large .modalHead{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:flex-start;
      padding:24px 26px;
      border-bottom:1px solid var(--border);
      font-size:1.15rem;
      font-weight:800;
      flex:0 0 auto;
    }

    .install-modal-large .modalHead .close-wrap{
      position:absolute;
      right:18px;
      top:50%;
      transform:translateY(-50%);
    }

    .install-modal-large .modalBody{
      padding:22px 26px 24px;
      overflow:auto;
      flex:1 1 auto;
    }

    .install-modal-large .modalFoot{
      display:none;
    }

    .install-close-round{
      width:54px;
      height:54px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      font-weight:800;
      border:1px solid var(--border);
      background:var(--panel);
      color:var(--ink);
      cursor:pointer;
      box-shadow:0 6px 18px rgba(15,23,42,.06);
    }

    .install-close-round:hover{
      background:var(--panel-soft);
    }

    .install-copy{
      color:var(--muted);
      line-height:1.55;
      text-align:center;
      max-width:980px;
      margin:2px auto 22px;
      font-size:17px;
    }

    .install-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:18px;
    }

    .install-card{
      border:1px solid var(--border);
      border-radius:24px;
      background:var(--panel-soft);
      padding:18px 18px 16px;
      box-shadow:none;
    }

    .install-card h3{
      margin:0 0 14px;
      font-size:1rem;
      color:var(--ink);
      text-align:center;
      font-weight:800;
      font-style:italic;
    }

    .install-card ol{
      margin:0;
      padding-left:30px;
      color:#5d7193;
      line-height:1.65;
      font-size:15px;
    }

    .install-card li{
      margin:0 0 8px;
      padding-left:6px;
    }

    .install-card b{
      color:var(--ink);
    }

    .sr-only{
      position:absolute !important;
      width:1px !important;
      height:1px !important;
      padding:0 !important;
      margin:-1px !important;
      overflow:hidden !important;
      clip:rect(0,0,0,0) !important;
      white-space:nowrap !important;
      border:0 !important;
    }

    @media (max-width:980px){
      .panel-grid{
        grid-template-columns:1fr;
      }

      .list-wrap{
        border-right:none;
        border-bottom:1px solid var(--border);
      }

      .install-grid{
        grid-template-columns:1fr;
      }

      .install-modal-large{
        max-height:92vh;
      }
    }

    @media (max-width:760px){
      body{
        padding:16px 10px;
      }

      .hero-card{
        padding:14px 16px 18px;
      }

      .topbar{
        align-items:center;
        gap:10px;
      }

      .tool-home{
        width:42px;
        height:42px;
      }

      .topbar-left{
        gap:8px;
      }

      .hero-card h1{
        margin-top:0;
      }

      .section,
      .panel-grid,
      .plPanel,
      .hero-card,
      .privacy-badge{
        margin-left:12px;
        margin-right:12px;
      }

      .addBox{
        min-width:100%;
      }

      .theme-btn{
        width:40px;
        height:40px;
      }

      .install-btn,
      .lsi-tools-btn{
        min-height:40px;
        padding:9px 12px;
        font-size:13px;
      }

      .lsi-tools-dropdown{
        min-width:260px;
        max-width:min(92vw, 320px);
      }

      .modalBack{
        padding:10px;
      }

      .install-modal-large .modalHead{
        padding:18px 18px;
        font-size:1rem;
      }

      .install-modal-large .modalBody{
        padding:16px;
      }

      .install-copy{
        font-size:15px;
        margin-bottom:16px;
      }

      .install-close-round{
        width:46px;
        height:46px;
        font-size:22px;
        border-radius:14px;
      }

      .install-card{
        border-radius:18px;
        padding:14px;
      }

      .install-card ol{
        padding-left:22px;
        font-size:14px;
      }
    }
  

    /* 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;
}
