body {
    --seasonal-emojis: '⭐';
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    position: relative;
}

.seasonal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    gap: 2rem;
    padding: 2rem;
    pointer-events: none;
    opacity: 0.31337;
    font-size: 5rem;
    overflow: hidden;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-2.5rem) rotate(-7.5deg);
    }

    50% {
        transform: translateY(-5rem) rotate(0deg);
    }

    75% {
        transform: translateY(-2.5rem) rotate(7.5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.seasonal-background span {
    display: block;
    /* font-size: 2.5rem; */
    /* opacity: 0.2; */
    will-change: transform;
}

header {
    background-color: #222;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    background: linear-gradient(45deg, #ff4d4d, #ffff4d, #4dff4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    background-color: #111;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 40px;
}

a {
    color: #add8e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

.construction-message {
    margin-top: 20px;
    font-size: 1.2em;
    color: #f39c12;
}

.playlist {
    margin-top: 30px;
    font-size: 1.2em;
    text-align: left;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.playlist.christmas {
    color: #ff3535;
    /* Red for Christmas */
    border: 1px solid #ff3535;
}

.playlist.christmas ul {
    list-style: none;
    padding: 0;
}

.playlist.christmas li {
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(204, 0, 0, 0.3);
    padding-bottom: 5px;
}

.playlist.halloween {
    color: #ffa500;
    /* Orange for Halloween */
    border: 1px solid #ffa500;
}

.playlist.halloween ul {
    list-style: none;
    padding: 0;
}

.playlist.halloween li {
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 165, 0, 0.3);
    padding-bottom: 5px;
}

.new {
    background: linear-gradient(-45deg, white 0 20%, rgb(255, 100, 100) 20% 40%, white 40% 60%, rgb(255, 100, 100) 60% 80%, white 80%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.off-season-message {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.off-season-message h2 {
    color: #ff4d4d;
    margin-bottom: 20px;
}

.upcoming-shows {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.upcoming-shows h3 {
    color: #4dff4d;
    margin-bottom: 15px;
}

.upcoming-shows ul {
    list-style: none;
    padding: 0;
}

.upcoming-shows li {
    margin: 10px 0;
    font-size: 1.2em;
}

.countdown {
    margin: 20px 0;
    font-size: 2em;
    font-weight: bold;
    color: #4dff4d;
}

.countdown a {
    text-decoration: underline;
}

.weather-widget {
    margin: 20px auto;
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), linear-gradient(45deg, #304352, #d7d2cc);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-icon {
    font-size: 3em;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-details {
    text-align: left;
}

.temperature {
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.temperature {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 5px;
}

.extra-info {
    font-size: 1em;
    color: #fff;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.gallery {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.gallery h3 {
    color: #4dff4d;
    margin-bottom: 15px;
}

.gallery a {
    display: inline-block;
    margin: 10px;
    border: 2px solid #4dff4d;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery a:hover {
    transform: scale(1.05);
    border-color: #ffffff;
}

.gallery img {
    width: 200px;
    height: auto;
    display: block;
}

/* Social media links styles hidden for now
.social-links {
    margin: 20px 0;
}

.social-icon {
    margin: 0 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}
*/



iframe {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    section {
        padding: 15px;
    }

    .weather-widget {
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 10px;
    }

    .weather-details {
        text-align: center;
    }

    .playlist {
        width: 90%;
        margin: 20px auto;
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .playlist {
        margin: 20px 10px;
        padding: 15px;
        font-size: 1em;
        width: calc(100% - 50px);
    }

    .playlist ul {
        padding-left: 15px;
        margin: 10px 0;
    }

    .playlist li {
        margin-bottom: 15px;
        line-height: 1.4;
        border-bottom: 1px solid rgba(13, 209, 255, 0.2);
        padding-bottom: 10px;
    }

    .playlist li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .playlist iframe {
        width: 100%;
        height: 200px;
    }

    .seasonal-background {
        font-size: 3rem;
        gap: 1rem;
        padding: 1rem;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        25% {
            transform: translateY(-1rem) rotate(-5deg);
        }

        50% {
            transform: translateY(-2rem) rotate(0deg);
        }

        75% {
            transform: translateY(-1rem) rotate(5deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    .temperature {
        font-size: 1.6em;
    }

    .description {
        font-size: 1.1em;
    }

    .off-season-message {
        padding: 20px;
        margin: 15px auto;
    }

    .upcoming-shows li {
        font-size: 1.1em;
    }
}