* {
    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-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-align: left;
}

.app-icon {
    width: 120px;
    height: 120px;
    margin: 0 20px 0 0;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.app-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-info h1 {
    margin-bottom: 5px;
    text-align: left;
}

.app-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
}

.stars {
    color: #FFC107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.downloads {
    color: #777;
    font-size: 0.9rem;
}

@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, h2, h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #4285f4;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

h3 {
    font-size: 1.3rem;
}

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;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    background-color: #0F9D58;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(15, 157, 88, 0.3);
    animation: pulse 2s infinite;
}

.app-screenshot {
    margin: 20px auto 30px;
    max-width: 35%;
    text-align: center;
    cursor: pointer;
}

.screenshot-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.screenshot-img {
    max-width: 48%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.02);
}

.secure-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.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 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;
}

.enlarged-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
}

.enlarged-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.comments-section {
    margin-top: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
    color: #4285f4;
    margin-bottom: 20px;
    text-align: center;
}

.comments-container {
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.comment {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-user {
    font-weight: bold;
    color: #333;
}

.comment-rating {
    color: #FFC107;
}

.comment-text {
    color: #555;
    line-height: 1.4;
}

.comment-date {
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-top: 5px;
}

.add-comment h3 {
    margin-bottom: 15px;
    color: #4285f4;
}

.rating-input {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-input p {
    margin: 0 15px 0 0;
}

.star-rating {
    display: flex;
}

.star {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover, .star.selected {
    color: #FFC107;
}

textarea#commentText {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    resize: vertical;
    font-family: inherit;
}

input#userName {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: inherit;
}

.submit-comment {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

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

.g-recaptcha {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.empty-comments {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px 0;
}

.add-comment button:disabled,
.add-comment textarea:disabled,
.add-comment input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.star.disabled {
    pointer-events: none;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    
    .feature {
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .app-header {
        flex-direction: column;
        text-align: center;
    }
    
    .app-icon {
        margin: 0 0 15px 0;
        width: 150px;
        height: 150px;
    }
    
    .app-info {
        align-items: center;
    }
    
    .app-rating {
        align-items: center;
    }
}