  body {
    font-family: Arial, sans-serif;
    margin: 0; 
    padding: 20px;
    display: flex;
    height: 100vh;
    box-sizing: border-box;
    background: #000000;
  }

  #file-panel {
    scrollbar-color: red #000;
    width: 280px;
    border: 1px solid #f00;
    border-radius: 8px;
    background: #000;
    padding: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    user-select: none;
  }

  #file-panel h2 {
    margin-top: 0;
    font-size: 18px;
    color: red;
    text-align: center;
  }

  #file-list {
    color: red;
    margin-top: 10px;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: red #000;
  }

  #file-list::-webkit-scrollbar {
    width: 7px;
    background: #000;
  }

  #file-list::-webkit-scrollbar-thumb {
    background-color: red;
    border-radius: 4px;
    border: 2px solid #000; 
  }

  .file-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f00;
    transition: background-color 0.25s;
  }
  
  .file-item:hover {
    background-color: #333;
  }
  
  .active {
    background-color: #333;
    font-weight: bold;
  }

  #player-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #player-box {
    border: 2px solid #f00;
    padding: 30px 40px 40px;
    border-radius: 12px;
    background: #000;
    width: 550px;
    /*height: 400px;*/
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /*-------------------*/
  
  /* PANEL WITH SETTINGS, INFO AND ETC../// */
  #player-header {
    align-self: stretch;
    margin: -15px -40px 15px -40px;
    padding: 0 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f00;
  }

  .bold-gear {
    -webkit-text-stroke: 1px #f00;
  }
  
  .bold-gear:hover {
    -webkit-text-stroke: 1px #fff;
  }
  
  .header-btn {
    background: none;
    border: none;
    color: #f00;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 0 10px;
    user-select: none;
  }

  .header-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px #fff;
  }
  /*-------------------*/

  /*MAIN-PLAYER*/
  #player-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #player-info-content {
    color: #f00;
    text-align: center;
    width: 100%;
    min-height: 250px; 
    overflow-y: auto;
  }

  #player-info-content h3 {
    margin-top: 0;
  }

  [data-i18n="infocontent"] {
    white-space: pre-line;
  }

  #player-settings-content {
    color: #f00;
    text-align: center;
    width: 100%;
    min-height: 250px; 
    overflow-y: auto;
  }
  /* playlist */
  
  #player-playlist-content {
    color: #f00;
    text-align: center;
    width: 100%;
    min-height: 250px; 
    overflow-y: auto;
  }

  #playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
    padding: 10px;
    margin-top: 5px;
  }

  #player-playlist-content::-webkit-scrollbar {
    width: 7px;
    background: #000;
  }

  #player-playlist-content::-webkit-scrollbar-thumb {
    background-color: red;
    border-radius: 4px;
    border: 2px solid #000; 
  }


  .playlist-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .playlist-card:hover {
    background: #222;
    border-color: #f00;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }

  .playlist-card.active {
    background: #333;
    border-color: #f00;
    box-shadow: 0 0 12px #f00;
  }

  .playlist-cover {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #000;
    background: #050505; 
  }

  .playlist-title {
    color: #f00;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* playlist */
  /* eq eq eq */

  #player-equalizer-content {
    color: #f00;
    text-align: center;
    width: 100%;
    min-height: 250px; 
    overflow-y: hidden;
    overflow-x: hidden;
  }
  
  .eq-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; margin-bottom: 10px;
  }
  .preset-select {
    background: #111; color: #f00; border: 1px solid #f00;
    padding: 4px 10px; border-radius: 4px; outline: none;
    cursor: pointer; font-weight: bold; font-size: 12px;
  }
  .toggle-btn {
    background: #f00;
    color: #000;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    transition: all 0.2s;
  }
  .toggle-btn.off {
    background: #222;
    color: #555; 
    box-shadow: none;
    border: 1px solid #333;
  }
  .visualizer-container {
    width: 100%; height: 100px; 
    margin-bottom: 10px; border-radius: 6px; overflow: hidden;
    background: #050505; border: 1px solid #300;
  }
  .eq-container {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 0, 0, 0.02); padding: 10px 5px;
    border-radius: 8px; gap: 1px; border: 1px solid #200; transition: opacity 0.3s;
  }
  .eq-container.bypass { opacity: 0.25; pointer-events: none; }
  .eq-band { display: flex; flex-direction: column; align-items: center; flex: 1; }
  .eq-band span { font-size: 9px; color: #888; margin-top: 5px; }
  .slider-wrapper { position: relative; width: 100%; height: 100px; display: flex; justify-content: center; align-items: center; }
  
  .eq-band input[type="range"] {
    -webkit-appearance: none; width: 90px; height: 3px;
    position: absolute; transform: rotate(-90deg);
    background: #222; border-radius: 2px; outline: none; cursor: pointer; margin: 0;
  }
  .eq-band input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 10px; height: 10px;
    border-radius: 50%; background: #f00; box-shadow: 0 0 6px #f00;
  }
  .eq-band input[type="range"]::-webkit-slider-thumb:hover { background: #fff; }
  
  #visualizer {
  width: 100%;
  height: 100%;
  display: block;
  }
  /* eq eq eq */

  .lang-btn {
    background: #000;
    border: 1px solid #f00;
    color: #f00;
    padding: 5px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: all 0.3s;
    border-radius: 4px;
  }

  .lang-btn:hover {
    background: #f00;
    color: #000;
  }

  .lang-btn.active {
    background: #f00;
    color: #fff;
    box-shadow: 0 0 8px #f00;
  }
  
  #track-name {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 25px;
    height: 30px;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    
    text-align: center;
    user-select: none;
    color: red;
  }

  #controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
  }

  button.control-btn {
    font-size: 22px;
    color: #000;
    padding: 10px;
    width: 50px;
    height: 50px;
    border: none;
    background: #f00;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  button.control-btn:hover {
    background-color: #333;
    color: #f00;
  }
  
  button#repeat.repeat-on {
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
  }

  button#shuffle.shuffle-on {
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
  }
  
  #progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
  }

  #progress {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #f00 0%, #f00 var(--val, 0%), #333 var(--val, 0%), #333 100%);
    cursor: pointer;
    transition: background 0.3s;
  }

  #progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f00;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
    margin-top: -5px; 
  }
  
  #current-time,
  #duration {
    width: 45px;
    font-size: 14px;
    color: #555;
    user-select: none;
    text-align: center;
  }
   
  #volume-container {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    margin-top: 20px;
  }

  #volume {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #f00 0%, #f00 var(--val, 100%), #333 var(--val, 100%), #333 100%);
    cursor: pointer;
  }
  
  #volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f00;
    cursor: pointer;
    margin-top: -5px; 
  }
   
  .girl {
    margin: 10px auto 20px;
    display: block;
    }
  .banner {
    position: absolute;
    top: 20px;  
    left: 50%; 
    transform: translateX(-50%);
    z-index: -1;
    }
  
  /* ФИКСИКИ НА ТЕЛЕФОН БЛЯТЬ */
  @media (max-width: 768px) 
  {
     * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
  }
  body {
    flex-direction: column;
    overflow-y: auto;
    height: 100%;           
    padding: 10px;
  }

  #file-panel {
    width: 100%;            
    box-sizing: border-box;
    margin-bottom: 5px;
    max-height: 300px;
  }
  /*
  #file-list {
    color: red;
    margin-top: 10px;
    flex-grow: 1;
    overflow: hidden;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: red #000;
  }
  */
  #player-box {
    width: 100%; 
    box-sizing: border-box;
    padding: 20px; 
  }
    
  #player-header {
    margin-left: -20px;
    margin-right: -20px;
  }
  #volume-container {
    width: 80%;  
  }
    
  #playlists-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
  }
  .banner {
    display: none; 
  }
  .girl {
    display: none; 
  }
}
