@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

  @keyframes logoPulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  }

  .logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }

  .logo {
    width: 100px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    animation: logoPulse 3s ease-in-out infinite;
  }

  .player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .station-info {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .station-info h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .station-info p {
    font-size: 1.5rem;
    opacity: 0.8;
    font-weight: 300;
  }

  #typingText::after {
    content: '|';
    animation: blink 0.7s infinite;
  }

  .controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-right: 50px;
  }

  .control-btn {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: rgba(241, 237, 237, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .control-btn:active {
    transform: scale(0.95);
  }

  .control-btn svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
  }

  .status-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .status-btn.online {
    background-color: #4CAF50;
    animation: pulse 2s infinite;
  }

  .volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #volumeSlider {
    -webkit-appearance: none;
    width: 300px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  #volumeSlider:hover {
    opacity: 1;
  }

  #volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  #volumeSlider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  #volumePercentage {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
  }

  .animation-container {
    position: relative;
    width: 300px;
    height: 100px;
    margin-top: 30px;
    overflow: hidden;
  }

  .bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    background-color: #ffffff;
    border-radius: 5px 5px 0 0;
    transition: height 0.2s ease;
  }

  .social-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(32, 32, 32, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .social-btn:active {
    transform: scale(0.95);
  }

  .social-btn svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
  }

  .app-store-links {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .app-store-btn {
    display: flex;
    align-items: center;
    background: rgba(32, 32, 32, 0.2);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .app-store-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }

  .app-store-btn:active {
    transform: translateY(0);
  }

  .app-store-btn svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    margin-right: 8px;
  }

  .app-store-btn span {
    white-space: nowrap;
  }

  #pwaInstallBtn {
    background-color: #4CAF50;
    display: none;
  }

  #pwaInstallBtn:hover {
    background-color: #45a049;
  }

  .dropdown {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  .dropbtn {
    background: rgba(255, 255, 255, 0.2);
    color: rgb(245, 245, 245);
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .dropbtn span {
    margin-right: 8px;
  }

  .dropbtn svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
  }

  .dropdown-content {
    display: none;
    opacity: 0;
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
  }

  .broadcaster-separator {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 15px;
  }

  .broadcaster {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .broadcaster:last-child {
    border-bottom: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-out forwards;
  }

  .broadcaster {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: background-color 0.3s ease;
  }

  .broadcaster:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .broadcaster-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
  }

  .broadcaster-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
  }

  .broadcaster-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
  }

  .dropdown:hover .dropbtn {
    background: rgba(255, 255, 255, 0.3);
  }

  .dropdown.active .dropbtn svg {
    transform: rotate(180deg);
  }

  .download-message {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: rgba(97, 97, 97, 0.8);
    padding: 10px;
    display: flex;
    justify-content: space-around;
    transition: bottom 0.3s ease-in-out;
    z-index: 1000;
  }

  .download-btn {
    display: flex;
    align-items: center;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s;
  }

  .download-btn:hover {
    background-color: #45a049;
  }

  .download-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-right: 8px;
  }

  .download-btn.ios {
    background-color: #007AFF;
  }

  .download-btn.ios:hover {
    background-color: #0056b3;
  }

  @media screen and (max-width: 768px) {
    body {
      overflow: hidden;
    }

    
    .app-store-links
 {
      display: none;
    }

    .player-container {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .station-info h1 {
      font-size: 2.5rem;
    }

    .station-info p {
      font-size: 1.2rem;
    }

    .controls {
      padding-right: 0;
    }

    #volumeSlider {
      width: 200px;
    }

    .animation-container {
      width: 200px;
    }

    .download-message {
      display: flex;
    }
  }