    @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
    @font-face {
    font-family: 'LedDotMatrix';
    src: url('fonts/led-dot-matrix.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

        body {
            font-family: Arial, sans-serif;
            text-align: center;
	    background: url('/logos/background.webp') no-repeat center center fixed;
            background-size: cover;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: auto;
            padding-top: 10px;
            position: relative;
        }
        .radio-container, .station-info-container {
            background: #654321;
            width: 90%;
            max-width: 350px;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            color: white;
            border: 5px solid #3e2723;
            background: linear-gradient(145deg, #5d4037, #3e2723);
        }
        .radio-container {
            margin-bottom: 0;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .station-info-container {
            margin-top: 0;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .radio-label {
            font-family: 'Press Start 2P', cursive;
            font-size: 8px;
            color: #ffcc00; text-shadow: 0 0 5px rgba(255, 204, 0, 0.8);
            position: absolute;
            top: 10px;
            left: 10px;
            text-transform: uppercase;
            opacity: 0.8;
        }

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fade-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

.weather-display {
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    ), #000;    
width: 71%;
    height: 35px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #FFD700; 
    border: 2px solid #555;
    font-family: 'Orbitron', sans-serif;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.9), 
                inset 0 -2px 12px rgba(255, 255, 255, 0.2), 
                0 0 6px rgba(0, 0, 0, 0.6),
                0 0 17px rgba(0, 0, 0, 0.75); 
    text-transform: uppercase;
    overflow: hidden;
    margin-top: 8px;
}

#weatherInfo {
    font-family: 'LedDotMatrix', sans-serif;
    font-size: 12px;
    color: #00FF00;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: bold;
}


.weather-display span {
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
 
	.frequency-scale {
	    background: repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 2px
            ), #000;
	    width: 90%;
            height: 25px;
            margin: 10px auto;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            font-size: 12px;
            padding: 0 10px;
            color: #00FF00; text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
            border: 2px solid #3e2723;
	    font-family: 'LedDotMatrix', sans-serif;
	    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8), inset 0 0 5px rgba(0, 255, 0, 0.6);
	    position: relative;
	    font-weight: bold;
        }
        
        .station-description, .station-website {
            font-family: 'Press Start 2P', cursive;
            font-size: 7px;
            color: #ffcc00;
            text-transform: uppercase;
            text-align: justify;
            margin-top: 5px;
	    display: block;
	    line-height: 1.6;
        }
        .station-website {
            text-decoration: none;
            display: inline-block;
            padding: 5px 10px;
            border-radius: 5px;
            background: #3e2723;
            color: #ffcc00;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .station-website:hover {
            background: #5d4037;
        }
            .retro-button {
            background: #3e2723;
            color: #ffcc00;
            font-family: 'Press Start 2P', cursive;
            font-size: 12px;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            margin-left: 10px;
        }
        .retro-button:hover {
            background: #5d4037;
        }
        .square-button {
            width: 40px;
            height: 34px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            font-size: 14px;
        }
        .digital-clock {
	    background: repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 2px
            ), #000;
	    width: 25%;
            height: 35px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #00FF00;
            border: 2px solid black;
	    font-family: 'LedDotMatrix', sans-serif;
	    box-shadow: 0 0 3px rgba(0, 255, 0, 0.8), inset 0 0 5px rgba(0, 255, 0, 0.6);
            text-transform: uppercase;
            font-weight: bold;
	    margin-top: 8px;
        }
	    #stationSelect {
	    background: #3e2723;
            color: #ffcc00;
	}
      #stationSelect:hover {
       background: #5d4037;
}
.control-button {
    background: #3e2723;
    color: #ffcc00;
}
.control-button:hover {
    background: #5d4037;
}
.station-logo {
    visibility: hidden;
}
.legal-links-inline {
    font-family: 'Press Start 2P', cursive;
    font-size: 6px;
    color: #ffcc00;
    opacity: 0.8;
    text-align: center;
    margin-top: 17px;
}
.legal-links-inline a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 3px;
}
.legal-links-inline a:hover {
    text-decoration: underline;
}


