 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        height: 100vh;
        overflow: hidden;
        background: radial-gradient(
          circle at center,
          #1a1a2e,
          #16213e,
          #0f0f23
        );
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .container {
        position: relative;
        width: 100vw;
        height: 100vh;
      }

      .background-patterns {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .pattern-layer {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: spiralRotate 30s linear infinite;
      }

      .pattern-layer:nth-child(2) {
        animation-duration: 45s;
        animation-direction: reverse;
      }

      .pattern-layer:nth-child(3) {
        animation-duration: 60s;
        transform: translate(-50%, -50%) scale(1.5);
      }

      @keyframes spiralRotate {
        from {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }

      .sacred-geometry {
        width: 1000px;
        height: 1000px;
        opacity: 0.3;
      }

      .figure-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
      }

      .human-silhouette {
        width: 200px;
        height: 300px;
        background: linear-gradient(180deg, #000 0%, #111 50%, #000 100%);
        clip-path: polygon(
          50% 0%,
          45% 8%,
          42% 15%,
          38% 22%,
          35% 30%,
          32% 38%,
          30% 45%,
          28% 55%,
          25% 65%,
          22% 75%,
          18% 82%,
          15% 88%,
          12% 92%,
          8% 96%,
          5% 100%,
          25% 100%,
          25% 95%,
          30% 90%,
          35% 85%,
          40% 80%,
          45% 75%,
          47% 70%,
          48% 65%,
          49% 60%,
          49.5% 55%,
          49.5% 50%,
          50% 45%,
          50.5% 50%,
          50.5% 55%,
          51% 60%,
          52% 65%,
          53% 70%,
          55% 75%,
          60% 80%,
          65% 85%,
          70% 90%,
          75% 95%,
          75% 100%,
          95% 100%,
          92% 96%,
          88% 92%,
          85% 88%,
          82% 82%,
          78% 75%,
          75% 65%,
          72% 55%,
          70% 45%,
          68% 38%,
          65% 30%,
          62% 22%,
          58% 15%,
          55% 8%
        );
        position: relative;
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
      }

      .heart-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: -20px; /* Adjust to position at chest level */
        z-index: 20;
      }

      .heart {
        width: 20px;
        height: 20px;
        background: #ff4757;
        position: relative;
        transform: rotate(45deg);
        animation: heartGrow 10s ease-in-out infinite;
        filter: drop-shadow(0 0 20px rgba(255, 71, 87, 0.8));
      }

      .heart::before,
      .heart::after {
        content: "";
        width: 20px;
        height: 20px;
        background: #ff4757;
        border-radius: 50%;
        position: absolute;
      }

      .heart::before {
        top: -10px;
        left: 0;
      }

      .heart::after {
        top: 0;
        left: -10px;
      }

      @keyframes heartGrow {
        0%,
        100% {
          transform: rotate(45deg) scale(1);
          filter: drop-shadow(0 0 20px rgba(255, 71, 87, 0.8));
        }
        50% {
          transform: rotate(45deg) scale(4);
          filter: drop-shadow(0 0 60px rgba(255, 71, 87, 1));
        }
      }

      .pulse-wave {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 215, 0, 0.6);
        border-radius: 50%;
        animation: pulseExpand 2s ease-out infinite;
        z-index: 15;
      }

      .pulse-wave:nth-child(2) {
        animation-delay: 0.7s;
      }
      .pulse-wave:nth-child(3) {
        animation-delay: 1.4s;
      }

      @keyframes pulseExpand {
        0% {
          width: 20px;
          height: 20px;
          opacity: 1;
        }
        100% {
          width: 300px;
          height: 300px;
          opacity: 0;
        }
      }

      .particles-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 5;
      }

      .floating-orbs {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .orb {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(255, 215, 0, 0.8),
          rgba(255, 107, 107, 0.3)
        );
        animation: float 20s ease-in-out infinite;
        filter: blur(1px);
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) translateX(0) scale(1);
          opacity: 0.7;
        }
        25% {
          transform: translateY(-50px) translateX(30px) scale(1.2);
          opacity: 1;
        }
        50% {
          transform: translateY(-20px) translateX(-40px) scale(0.8);
          opacity: 0.8;
        }
        75% {
          transform: translateY(-80px) translateX(20px) scale(1.1);
          opacity: 0.9;
        }
      }

      /* Audio Player Styles */
      .audio-player {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 80px;
        background: linear-gradient(
          135deg,
          rgba(26, 26, 46, 0.9),
          rgba(22, 33, 62, 0.8)
        );
        backdrop-filter: blur(15px);
        border-radius: 40px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
          0 0 20px rgba(255, 215, 0, 0.1);
        display: flex;
        align-items: center;
        padding: 15px 25px;
        z-index: 50;
        transition: all 0.3s ease;
      }

      .audio-player:hover {
        transform: translateX(-50%) translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
          0 0 30px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.5);
      }

      .play-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff4757, #ffd700);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
      }

      .play-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
      }

      .play-button.playing::after {
        content: "";
        width: 12px;
        height: 12px;
        border-left: 4px solid white;
        border-right: 4px solid white;
        margin-left: 0;
      }

      .play-button:not(.playing)::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 16px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 3px;
      }

      .player-info {
        flex: 1;
        color: #ffd700;
        font-family: "Arial", sans-serif;
      }

      .song-title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 4px;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
      }

      .song-artist {
        font-size: 12px;
        opacity: 0.8;
        color: #40e0d0;
      }

      .progress-container {
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        margin-top: 8px;
        overflow: hidden;
      }

      .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #ff4757, #ffd700);
        width: 0%;
        transition: width 0.1s ease;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
      }
      @media (max-width: 600px) {
        .audio-player {
          width: 80%;
          height: 70px;
          margin: 30px auto;
        }

        .play-button {
          width: 40px;
          height: 40px;
          margin-right: 15px;
        }

        .song-title {
          font-size: 12px;
        }

        .song-artist {
          font-size: 10px;
        }
      }

      /* Player responsive - Agregar al CSS */
/* Solución específica para Oppo y pantallas problemáticas */
@media screen and (max-width: 430px) {
  .audio-player {
    width: calc(100vw - 8px) !important;
    left: 4px !important;
    right: 4px !important;
    transform: none !important;
    height: 50px !important;
    padding: 4px 8px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .play-button {
    width: 32px !important;
    height: 32px !important;
    margin-right: 6px !important;
    flex-shrink: 0 !important;
  }
  
  .player-info {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  
  .song-title,
  .song-artist {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  
  .song-title {
    font-size: 10px !important;
    max-width: 200px !important;
  }
  
  .song-artist {
    font-size: 8px !important;
    max-width: 180px !important;
  }
  
  .progress-container {
    margin-top: 3px !important;
    height: 3px !important;
  }
}

/* Para Oppo con resoluciones específicas */
@media screen and (max-width: 393px) {
  .audio-player {
    width: calc(100vw - 6px) !important;
    left: 3px !important;
    right: 3px !important;
  }
}

@media screen and (max-width: 412px) and (max-height: 915px) {
  .audio-player {
    width: calc(100vw - 10px) !important;
    left: 5px !important;
    right: 5px !important;
  }
}