body {
    background: url('/web_images/nunuproductions.png') no-repeat center center fixed;
    background-size: cover;
    color: #B0F5E5;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.content-container {
    background: rgba(20, 25, 50, 0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    text-align: center;
    border: 2px solid #9D7AE0;
}

/* Success/Error Messages */
#success-message, #email-error {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    font-size: 14px;
    text-align: center;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between success and error messages */
    margin-top: 10px;
    text-align: center;
}

.message {
    font-size: 14px;
    margin: 0;
    padding: 5px 10px;
    white-space: nowrap; /* Prevents line wrapping */
}

.success {
    color: #B0F5E5; /* Light turquoise success message */
}

.error {
    color: red; /* Error message in red */
}

#success-message, #email-error {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 1;
    visibility: visible;
}

/* Ensure messages are hidden when needed */
.hidden {
    opacity: 0;
    visibility: hidden;
}

#email-error, #success-message {
    display: none; /* Ensures they are hidden by default */
}

h1 {
    color: #9D7AE0;
    font-size: 36px;
}

.hero h2 {
    margin-bottom: 10px;
}

.subscribe {
    margin-top: 20px;
}

#rj-player {
    margin-top: 30px;
    margin-bottom: 20px;
}

input[type="email"] {
    padding: 10px;
    width: 80%;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #B0F5E5;
    color: #1D1B3E;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

button:hover {
    background-color: #9D7AE0;
}

#rj-player {
    margin-top: 6em; /* Adds space above the player */
    margin-bottom: 3em; /* Adds space below the player */
}

.radio-link {
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    background: none !important; /* Remove background */
    color: #9D7AE0 !important; /* Light turquoise text */
    padding: 0;
    border-radius: 5px;
    width: fit-content;
    margin: 20px auto 10px auto;
    transition: color 0.3s;
}

.radio-link:hover {
    background: none !important; /* Ensure background remains transparent */
    color: #B0F5E5 !important; /* Purple text on hover */
}

footer {
    margin-top: 20px;
    padding-top: 10px;
    color: #B0F5E5;
}