* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

h1 {
    font-size: 2.5rem;
    color: #4285f4;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.installation-guide {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.installation-guide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.install-prompt {
    font-weight: bold;
    color: #4285f4;
    margin-bottom: 15px;
}

.download-button, .install-now-button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
    margin: 0 10px;
}

.download-button:hover, .install-now-button:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(66, 133, 244, 0.4);
}

.download-button:active, .install-now-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.3);
}

.install-now-button {
    background-color: #0F9D58;
    box-shadow: 0 4px 8px rgba(15, 157, 88, 0.3);
}

.install-now-button:hover {
    background-color: #0B8043;
    box-shadow: 0 6px 12px rgba(15, 157, 88, 0.4);
}

.download-icon, .install-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.apk-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
    margin-bottom: 15px;
    font-style: italic;
}

.install-status {
    margin-top: 10px;
    font-weight: bold;
    color: #0F9D58;
    min-height: 1.5em;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: 10px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4285f4;
}

.feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.stream-button {
    background-color: #DB4437;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(219, 68, 55, 0.3);
    margin: 10px 10px;
    width: 100%;
    justify-content: center;
}

.stream-button:hover {
    background-color: #C53929;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(219, 68, 55, 0.4);
}

.stream-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(219, 68, 55, 0.3);
}

.stream-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.audio-player-container {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.play-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.play-pause-btn svg {
    width: 24px;
    height: 24px;
}

.stream-info {
    flex-grow: 1;
    text-align: center;
}

.now-playing {
    margin: 0;
    font-weight: bold;
    color: #333;
}

.volume-control {
    display: flex;
    align-items: center;
    width: 120px;
}

.volume-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

#volumeControl {
    width: 80px;
}

.equalizer {
    display: flex;
    justify-content: center;
    height: 12px;
    gap: 2px;
    margin-top: 5px;
}

.equalizer span {
    display: inline-block;
    width: 3px;
    background-color: #4285f4;
    animation: equalize 1s infinite;
}

.equalizer span:nth-child(1) {
    animation-delay: 0.1s;
    height: 8px;
}

.equalizer span:nth-child(2) {
    animation-delay: 0.3s;
    height: 10px;
}

.equalizer span:nth-child(3) {
    animation-delay: 0.5s;
    height: 6px;
}

.equalizer span:nth-child(4) {
    animation-delay: 0.7s;
    height: 9px;
}

@keyframes equalize {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
    100% { transform: scaleY(1); }
}

/* Para ocultar los elementos cuando no son relevantes */
.hidden {
    display: none !important;
}

.app-store-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 0 10px;
}

.app-store-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.app-store-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.appstore-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    
    .feature {
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
}