body {
    font-family: Arial, sans-serif;
    background-color: #2f2f2f;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

main {
    text-align: center;
}

#player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

#play-pause-button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    margin-top: 5px;
}

#play-pause-button img {
    width: 50px;
    height: 50px;
}

#playing-img, #paused-img {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

#loading-text {
    color: #d3d3d3;
    text-align: center;
    display: none;
}

.message {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    color: #d3d3d3;
    text-decoration: none;
    margin-top: 10px;
}

.whatsapp-logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.phone-number {
    font-size: 16px;
    color: #e0e0e0;
}

.social-media {
    margin-top: 20px;
    text-align: center;
}

#social-media-text {
    margin-bottom: 10px;
    color: #d3d3d3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: auto;
}

.social-icon img {
    width: 100%;
    height: auto;
}

#ios-instructions {
    background-color: #444;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    color: #d3d3d3;
    border: 2px solid #666;
    width: 80%;
    max-width: 600px;
}

#install-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #f3f3f3;
    border: 2px solid #888;
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

#install-message .install-content {
    position: relative;
}

#install-message p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#install-message #install-app-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#install-message #install-app-button:hover {
    background-color: #0056b3;
}

#install-message #close-install-message {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#install-message #close-install-message:hover {
    background-color: #0056b3;
}
