@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

    :root {
      --bg-color: #f5f5f5;
      --text-color: #333;
      --accent-color: #e74c3c;
      --icon-color: #ffffff;
    }

    body {
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      background-size: 400% 400%;
      animation: gradientBG 15s ease infinite;
      color: var(--text-color);
      font-family: 'Roboto', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      overflow: hidden;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .player {
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      padding: 30px;
      width: 320px;
      text-align: center;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    h1 {
      font-size: 28px;
      font-weight: 400;
      margin-bottom: 25px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 1px;
    }

    h3 {
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 25px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      letter-spacing: 2px;
      line-height: 1px;
    }

    p {
      font-size: 10px;
      color: #fff;

    }

    .album-art {
      width: 200px;
      height: 200px;
      margin: 0 auto 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .album-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .album-art:hover img {
      transform: scale(1.05);
    }

    .controls {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .btn {
      background: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease;
      padding: 10px;
    }

    .btn:hover {
      transform: scale(1.1);
    }

    .btn svg {
      width: 24px;
      height: 24px;
      fill: var(--icon-color);
      transition: fill 0.3s ease;
    }

    .btn-play-pause {
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .btn-play-pause:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.4);
      animation: none;
    }

    .btn-play-pause.playing:after {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.5;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

    .btn-play-pause svg {
      width: 36px;
      height: 36px;
      fill: var(--icon-color);
      transition: transform 0.3s ease;
    }

    .btn-play-pause:hover svg {
      transform: scale(1.1);
    }

    .volume-control {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
    }

    .volume-control svg {
      fill: var(--icon-color);
      transition: fill 0.3s ease;
    }

    .volume-slider {
      -webkit-appearance: none;
      width: 80%;
      height: 4px;
      border-radius: 2px;
      background: #e0e0e0;
      outline: none;
      margin: 0 10px;
    }

    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--icon-color);
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .volume-slider::-moz-range-thumb {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--icon-color);
      cursor: pointer;
      border: none;
      transition: background 0.3s ease;
    }

    .volume-percentage {
      font-size: 14px;
      color: var(--icon-color);
      width: 40px;
      text-align: right;
      transition: color 0.3s ease;
    }

    .floating-notes {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .note {
      position: absolute;
      opacity: 0;
      font-size: 24px;
      animation: float 5s ease-in infinite;
      color: var(--icon-color);
      transition: color 0.3s ease;
    }

    @keyframes float {
      0% {
        transform: translateY(100%);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh);
        opacity: 0;
      }
    }

    .status-btn {
      background-color: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 20px;
      color: var(--icon-color);
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 15px;
      padding: 8px 16px;
      transition: all 0.3s ease;
    }

    .status-btn:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .status-btn.online {
      background-color: rgba(39, 174, 96, 0.6);
    }

    .status-btn.online:hover {
      background-color: rgba(39, 174, 96, 0.8);
    }

    .social-links {
      display: none;
    }

    .social-link {
      display: none;
    }

    .schedule-menu {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
    }

    .schedule-toggle {
      background-color: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .schedule-toggle:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .schedule-toggle svg {
      fill: var(--icon-color);
    }

    .schedule-dropdown {
      display: none;
      position: absolute;
      top: 60px;
      right: 0;
      width: 300px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      z-index: 1001;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .schedule-header {
      background: linear-gradient(135deg, rgba(39, 174, 96, 0.8), rgba(39, 174, 96, 0.6));
      color: #ffffff;
      padding: 15px;
      font-weight: bold;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .schedule-content {
      padding: 15px;
      max-height: 400px;
      overflow-y: auto;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 0 0 10px 10px;
    }

    .host {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      padding: 12px;
      border-radius: 12px;
      background-color: rgba(255, 255, 255, 0.7);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid rgba(39, 174, 96, 0.1);
    }

    .host:last-child {
      margin-bottom: 0;
    }

    .host:hover {
      transform: translateX(5px);
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      border-color: rgba(39, 174, 96, 0.3);
    }

    .host img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border: 2px solid rgba(39, 174, 96, 0.3);
      transition: all 0.3s ease;
      object-fit: cover;
    }

    .host:hover img {
      transform: scale(1.05);
      border-color: rgba(39, 174, 96, 0.6);
    }

    .host-info {
      flex: 1;
    }

    .host-info h3 {
      margin: 0;
      font-size: 16px;
      color: #2c3e50;
      font-weight: 600;
      margin-bottom: 4px;
      transition: color 0.3s ease;
    }

    .host:hover .host-info h3 {
      color: rgba(39, 174, 96, 0.8);
    }

    .host-info p {
      margin: 0;
      font-size: 13px;
      color: #666;
      opacity: 0.9;
      letter-spacing: 0.3px;
    }

    .schedule-content::-webkit-scrollbar {
      width: 6px;
    }

    .schedule-content::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.05);
      border-radius: 3px;
    }

    .schedule-content::-webkit-scrollbar-thumb {
      background-color: rgba(39, 174, 96, 0.4);
      border-radius: 3px;
      transition: background-color 0.3s ease;
    }

    .schedule-content::-webkit-scrollbar-thumb:hover {
      background-color: rgba(39, 174, 96, 0.6);
    }

    .chat-menu {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 1000;
    }

    .chat-toggle {
      background-color: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .chat-toggle:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .chat-toggle svg {
      fill: var(--icon-color);
    }

    .chat-dropdown,
    .schedule-dropdown {
      display: none;
      position: absolute;
      top: 60px;
      width: 300px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      z-index: 1001;
    }

    .chat-dropdown {
      left: 0;
    }

    .schedule-dropdown {
      right: 0;
    }

    .dropdown-active {
      display: block;
    }

    .app-download-buttons {
      position: fixed;
      bottom: 20px;
      left: 20px;
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .app-download-button {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 8px 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      min-width: 160px;
    }

    .app-download-button:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .button-content {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .store-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .get-it {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.7em;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .store-name {
      color: white;
      font-size: 1.1em;
      font-weight: 600;
    }

    .app-icon {
      width: 24px;
      height: 24px;
      fill: white;
      margin-right: 12px;
    }

    @media screen and (max-width: 768px) {
      .app-download-buttons {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 10px;
      }

      .app-download-button {
        min-width: auto;
        width: 160px;
        font-size: 0.9em;
      }

      .button-content {
        justify-content: center;
      }

      .get-it {
        font-size: 0.65em;
      }

      .store-name {
        font-size: 1em;
      }

      .app-icon {
        width: 20px;
        height: 20px;
      }
    }

    @media screen and (max-width: 480px) {
      .app-download-button {
        width: 140px;
        padding: 6px 12px;
      }
    }

    @media screen and (max-width: 768px) {
      .player {
        width: 90%;
        max-width: 320px;
        padding: 20px;
        margin: 0 auto;
      }

      .album-art {
        width: 180px;
        height: 180px;
      }

      h1 {
        font-size: 24px;
        margin-bottom: 20px;
      }

      .controls {
        margin: 15px 0;
      }

      .btn {
        padding: 8px;
      }

      .btn svg {
        width: 20px;
        height: 20px;
      }

      .btn-play-pause {
        width: 50px;
        height: 50px;
      }

      .btn-play-pause svg {
        width: 30px;
        height: 30px;
      }

      .volume-control {
        padding: 0 10px;
      }

      .volume-slider {
        width: 70%;
      }

      .volume-percentage {
        font-size: 12px;
        width: 35px;
      }

      .status-btn {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 10px;
      }

      .chat-menu,
      .schedule-menu {
        top: 10px;
      }

      .chat-toggle,
      .schedule-toggle {
        width: 40px;
        height: 40px;
      }

      .chat-toggle svg,
      .schedule-toggle svg {
        width: 20px;
        height: 20px;
      }

      .chat-dropdown,
      .schedule-dropdown {
        width: 280px;
        top: 50px;
      }

      body {
        padding: 10px;
      }
    }

    @media screen and (max-width: 480px) {
      .player {
        width: 95%;
        padding: 15px;
      }

      .album-art {
        width: 160px;
        height: 160px;
      }

      h1 {
        font-size: 20px;
      }

      .controls {
        margin: 10px 0;
      }

      .volume-slider {
        width: 60%;
      }
    }

    @media screen and (max-height: 600px) {
      .player {
        transform: scale(0.9);
      }

      .album-art {
        width: 140px;
        height: 140px;
      }
    }

    .chat-header {
      background: linear-gradient(135deg, rgba(39, 174, 96, 0.8), rgba(39, 174, 96, 0.6));
      color: #ffffff;
      padding: 15px;
      font-weight: bold;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }

    .chat-header:hover {
      background: linear-gradient(135deg, rgba(39, 174, 96, 0.9), rgba(39, 174, 96, 0.7));
      letter-spacing: 3px;
    }

    #chatMessages {
      padding: 15px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 0 0 10px 10px;
      max-height: 400px;
      overflow-y: auto;
    }

    #chatMessages::-webkit-scrollbar {
      width: 6px;
    }

    #chatMessages::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.05);
      border-radius: 3px;
    }

    #chatMessages::-webkit-scrollbar-thumb {
      background-color: rgba(39, 174, 96, 0.4);
      border-radius: 3px;
      transition: background-color 0.3s ease;
    }

    #chatMessages::-webkit-scrollbar-thumb:hover {
      background-color: rgba(39, 174, 96, 0.6);
    }

    #cboxdiv {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin: 0 !important;
      width: 100% !important;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
      padding: 10px;
    }

    .social-icon {
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--icon-color);
      transition: all 0.3s ease;
      z-index: 2;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .social-icon:hover svg {
      transform: scale(1.2);
    }

    .social-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .social-icon:hover::before {
      opacity: 1;
    }

    @media screen and (max-width: 480px) {
      .social-icons {
        gap: 10px;
      }
      
      .social-icon {
        width: 30px;
        height: 30px;
      }
      
      .social-icon svg {
        width: 16px;
        height: 16px;
      }
    }

    .logo {
        width: 230px; /* Ajusta el ancho según sea necesario */
        height: auto; /* Mantiene la proporción */
        /*  Ajusta la posición si es necesario */
        top: 10px;
        left: 10px;
    }

  @media (max-width:767px){
   .logo {
        display: block;
        width: 180px;
        max-width: 100%;
        margin: 0 auto;
    }
  }