body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
  }
  
  .floating-player {
    position: relative;
    width: 340px;
    background: rgba(2, 39, 32, 0.8);
    border-radius: 50px;
    box-shadow: 20px 20px 45px rgba(0, 0, 0, 0.8);
    padding: 30px 25px;
    z-index: 9999;
    backdrop-filter: blur(16px) saturate(180%);
    color: white;
    text-align: center;
    margin-top: 50px;
  }
  
  .floating-player::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 40px;
    border: 2px inset #f5e925;
    box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.3);
    pointer-events: none;
  }
  
  .logo-holder {
    margin-bottom: 10px;
  }
  
  .logo-holder img {
    height: 20px;
    object-fit: contain;
  }





  @media (max-width: 600px) {
    iframe {
      height: 240px;
    }
  
    .controls button {
      font-size: 16px;
      padding: 8px 12px;
    }
  
    .top-logo {
      max-width: 150px;
    }
  
    .title span {
      font-size: 14px;
    }
  }
  
  
  .floating-player .title {
    font-size: 14px;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: inset 1px 1px 4px rgba(255, 255, 255, 0.1);
  }
  
  .floating-player .title span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-title 16s linear infinite;
  }
  
  @keyframes scroll-title {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }
  
  .controls {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  
  .controls button {
    background: #000;
    color: #f5e925;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 2px 2px 8px #000;
  }
  
  .controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px #007f3e;
  }
  
  .option-bar {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .option-bar input[type='range'] {
    width: 60%;
  }
  
  .credit {
    margin-top: 18px;
    font-size: 12px;
    color: #aaa;
    font-style: italic;
  }
  
  iframe {
    display: none;
  }
  