body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Renaissance', sans-serif;
    background-color: #000;
    color: #d4af37;
}

#top-footer, #bottom-footer {
    height: 56px;
    background-size: cover;
    background-repeat: repeat-x;
}

#content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr;
    height: calc(100vh - 112px); /* Минус высота обоих футеров */
}

.side-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
    position: relative;
}

#left-content {
    position: relative;
    overflow: hidden;
}

.wave-effect {
    position: relative;
    display: inline-block;
    animation: waveAnimation 8s linear infinite;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), white, rgba(0, 0, 0, 0.35));
    background-size: 200% 100%;
    background-position: 100% center;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes waveAnimation {
    from {
        background-position: -200% center;
    }
    to {
        background-position: 200% center;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#countdown {
    margin-top: 20px;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px #fff;
    text-align: center;
    margin-bottom: 20px;
}

#radio-image {
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 20px;
}

#radio-image:hover {
    transform: scale(1.05);
}

#streams a, #streams span {
    text-align: center;
    font-size: 1.2em;
    text-shadow: 2px 2px 4px #fff;
    margin: 10px 0;
}