/* Reset default styles and set background */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Main container */
.radio-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Rainbow Colors */
.red { color: #d32f2f; }
.orange { color: #f57c00; }
.yellow { color: #fbc02d; }
.green { color: #388e3c; }
.blue { color: #1976d2; }
.indigo { color: #512da8; }
.violet { color: #7b1fa2; }

/* Title and Slogan */
.radio-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.slogan {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* Player Section */
.player-section {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.player-section:hover {
    transform: scale(1.02);
}

.player-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cassette-image {
    width: 400px; /* Increased from 200px to 400px (2x) */
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.radio-player {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    outline: none;
}

/* Quotes Section */
.quotes-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quotes-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.quote-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    transition: color 0.5s ease;
}

/* Responsive Design */
@media (max-width: 600px) {
    .radio-container {
        padding: 15px;
        width: 95%;
    }

    .radio-title {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.1rem;
    }

    .quotes-title {
        font-size: 1.5rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .radio-player {
        max-width: 100%;
    }

    .cassette-image {
        width: 300px; /* Increased from 150px to 300px (2x) */
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}