/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f0f23;
    --accent: #e94560;
    --accent-dim: #a63446;
    --text-primary: #eaeaea;
    --text-secondary: #a0a0a0;
    --border: #3a3a5c;
    --success: #4ade80;
    --warning: #fbbf24;
}

html, body {
    height: 100%;
}

body {
    font-family: 'VT323', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ==================== MAIN CONTAINER ==================== */
.radio-container {
    width: 100%;
    max-width: 380px;
    background: var(--bg-secondary);
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--warning), var(--success), var(--accent));
    z-index: 1;
}

/* Default: column wrapper flows normally in portrait */
.left-column {
    display: contents;
}

/* ==================== HEADER ==================== */
.header {
    padding: 16px 16px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.greeting {
    font-size: 22px;
    letter-spacing: 1px;
}

/* ==================== DISPLAY SECTION ==================== */
.display-section {
    padding: 16px;
    background: var(--bg-tertiary);
    margin: 0 12px;
    border: 2px solid var(--border);
    position: relative;
}

.display-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.album-art-container {
    width: 70px;
    height: 70px;
    border: 2px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-dim), var(--bg-secondary));
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.channel-details {
    flex: 1;
    min-width: 0;
}

.now-playing {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.channel-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    line-height: 1.5;
    color: var(--accent);
    word-wrap: break-word;
    max-height: 32px;
    overflow: hidden;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    transition: background 0.3s ease;
}

.status-dot.playing {
    background: var(--success);
    animation: pulse 1.5s infinite;
}

.status-dot.error {
    background: var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==================== CONTROLS ==================== */
.controls-section {
    padding: 14px 12px;
}

.main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* ==================== BUTTONS ==================== */
.icon-btn,
.ctrl-btn,
.play-btn,
.action-btn,
.modal-close,
.timer-btn,
.toggle {
    transition: all 0.15s ease;
    cursor: pointer;
}

.icon-btn:active,
.ctrl-btn:active,
.action-btn:active,
.modal-close:active,
.timer-btn:active {
    transform: scale(0.95);
}

.play-btn:active {
    transform: translate(2px, 2px) scale(0.98);
    box-shadow: 1px 1px 0 var(--bg-tertiary);
}

.icon-btn {
    width: 34px;
    height: 34px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.icon-btn:hover {
    background: var(--accent);
    color: var(--text-primary);
    border-color: var(--accent);
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border: 3px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 3px 3px 0 var(--bg-tertiary);
}

.play-btn:hover {
    background: var(--accent-dim);
}

.ctrl-btn {
    width: 42px;
    height: 42px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ctrl-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.ctrl-btn.active {
    color: var(--accent);
    background: rgba(233, 69, 96, 0.2);
    border-color: var(--accent);
}

.ctrl-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ctrl-btn:disabled:hover {
    color: var(--text-secondary);
    border-color: var(--border);
}

/* ==================== VOLUME CONTROL ==================== */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 12px;
}

.volume-box {
    flex: 1;
    height: 8px;
    background: var(--border);
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: var(--accent);
    width: 75%;
    transition: width 0.1s ease;
}

.volume-thumb {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: grab;
    transition: left 0.1s ease;
}

.volume-thumb:active {
    cursor: grabbing;
}

.volume-value {
    font-size: 18px;
    min-width: 42px;
    text-align: right;
}

/* ==================== ACTION BUTTONS ==================== */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
}

.action-btn {
    padding: 10px 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    font-family: 'VT323', monospace;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.action-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

.sleep-timer-display {
    color: var(--warning);
}

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px;
    z-index: 1000;
    transition: background 0.2s ease;
}

.modal-overlay.active {
    display: flex;
    background: rgba(0, 0, 0, 0.85);
}

.modal {
    width: 100%;
    max-width: 340px;
    max-height: 75vh;
    background: var(--bg-secondary);
    border: 3px solid var(--border);
    box-shadow: 6px 6px 0 var(--bg-tertiary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: all 0.2s ease;
}

.modal-overlay.active .modal {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 14px;
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-tertiary);
}

.modal-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: var(--accent);
}

.modal-header-actions {
    display: flex;
    gap: 6px;
}

.modal-close {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.modal-close:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.modal-body {
    padding: 14px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 14px;
    border-top: 2px solid var(--border);
}

/* ==================== CHANNEL LIST ==================== */
.channel-section {
    margin-bottom: 16px;
}

.channel-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.channel-item {
    padding: 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s ease;
}

.channel-item:hover {
    border-color: var(--accent);
    transform: translateX(2px);
}

.channel-item.active {
    border-color: var(--accent);
    background: rgba(233, 69, 96, 0.1);
}

.channel-item-name {
    font-size: 15px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.channel-item-fav {
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: all 0.15s ease;
}

.channel-item-fav:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.channel-item-fav.active {
    color: var(--accent);
}

.loading {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.loading i {
    margin-right: 8px;
}

/* ==================== TIMER OPTIONS ==================== */
.timer-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 14px;
}

.timer-option {
    padding: 14px 6px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'VT323', monospace;
    font-size: 18px;
    text-align: center;
    transition: all 0.15s ease;
}

.timer-option:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.timer-option:active {
    transform: scale(0.95);
}

.timer-option.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

.timer-actions {
    display: flex;
    gap: 6px;
}

.timer-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border);
    font-family: 'VT323', monospace;
    font-size: 18px;
}

.timer-btn.set {
    background: var(--accent);
    color: var(--text-primary);
    border-color: var(--accent);
}

.timer-btn.cancel {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.timer-btn:hover {
    opacity: 0.9;
}

/* ==================== STATS ==================== */
.stat-item {
    padding: 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item.total {
    border-color: var(--accent);
    background: rgba(233, 69, 96, 0.1);
}

.stat-label {
    font-size: 16px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.stat-value {
    font-size: 18px;
    color: var(--accent);
}

.empty-state {
    text-align: center;
    padding: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==================== SETTINGS ==================== */
.setting-item {
    padding: 12px 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.setting-label {
    font-size: 16px;
}

.toggle {
    width: 46px;
    height: 24px;
    background: var(--border);
    border: 2px solid var(--border);
    position: relative;
}

.toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    transition: all 0.2s ease;
}

.toggle.active {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle.active::after {
    left: 24px;
}

.setting-input {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    color: var(--text-primary);
    padding: 6px 10px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    width: 120px;
    outline: none;
    transition: border-color 0.15s ease;
}

.setting-input:focus {
    border-color: var(--accent);
}

/* ==================== AMBIENCE ==================== */
.ambience-item {
    padding: 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 6px;
    transition: border-color 0.15s ease;
}

.ambience-item.active {
    border-color: var(--accent);
}

.ambience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ambience-name {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ambience-toggle {
    width: 38px;
    height: 20px;
    background: var(--border);
    border: 2px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.ambience-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
}

.ambience-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    transition: all 0.2s ease;
}

.ambience-toggle.active::after {
    left: 20px;
}

.ambience-slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    outline: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.ambience-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.ambience-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.ambience-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    border-radius: 0;
}

.ambience-slider:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==================== MIXER ==================== */
.mixer-item {
    padding: 10px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    margin-bottom: 6px;
}

.mixer-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mixer-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mixer-slider {
    flex: 1;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    outline: none;
    cursor: pointer;
}

.mixer-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
}

.mixer-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    border-radius: 0;
}

.mixer-value {
    font-size: 16px;
    min-width: 38px;
    text-align: right;
}

/* ==================== ABOUT ==================== */
.about-content {
    font-size: 16px;
    line-height: 1.5;
}

.about-content p {
    margin-bottom: 10px;
}

.about-content .credits-title {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
}

.about-content .credits {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.about-content .credits a {
    color: var(--accent);
    text-decoration: none;
}

.about-content .credits a:hover {
    text-decoration: underline;
}

.about-content .version {
    color: var(--accent);
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    margin-top: 16px;
}

/* ==================== THEMES ==================== */
.modal-wide {
    max-width: 380px;
}

.theme-item {
    position: relative;
    height: 60px;
    margin-bottom: 8px;
    border: 3px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s ease;
}

.theme-item:hover {
    border-color: var(--accent);
    transform: translateX(2px);
}

.theme-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.theme-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.15s ease;
}

.theme-item:hover .theme-item-bg {
    filter: brightness(0.75);
}

.theme-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.theme-item-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.theme-item.active .theme-item-name::after {
    content: ' ✓';
}

/* ==================== EQUALIZER ==================== */
.eq-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.eq-preset {
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    font-family: 'VT323', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.eq-preset:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.eq-preset.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

.eq-sliders {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 4px;
    padding: 10px 0;
    height: 140px;
}

.eq-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
}

.eq-band-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: center;
}

.eq-slider-wrapper {
    height: 80px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eq-band-slider {
    width: 80px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    outline: none;
    cursor: pointer;
    transform: rotate(-90deg);
    transform-origin: center center;
}

.eq-band-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
}

.eq-band-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    border-radius: 0;
}

.eq-band-value {
    font-size: 11px;
    color: var(--accent);
    margin-top: 8px;
    min-width: 35px;
    text-align: center;
}

.eq-reset {
    margin-top: 12px;
}

/* ==================== SCROLLBAR ==================== */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--border);
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 400px) {
    .radio-container {
        max-width: 100%;
    }
    
    .greeting {
        font-size: 20px;
    }
    
    .channel-name {
        font-size: 9px;
    }
}

/* ==================== LANDSCAPE LAYOUT ==================== */
@media (orientation: landscape) and (max-height: 500px) {
    body {
        padding: 8px;
        align-items: center;
    }
    
    .radio-container {
        max-width: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto;
        grid-template-areas:
            "left right"
            "footer footer";
        gap: 0;
    }
    
    .left-column {
        display: flex;
        flex-direction: column;
        grid-area: left;
    }
    
    .header {
        padding: 10px 12px 6px;
    }
    
    .display-section {
        margin: 0 8px 8px 12px;
        padding: 10px;
    }
    
    .controls-section {
        padding: 6px 12px 8px;
    }
    
    .main-controls {
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .play-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
        box-shadow: 2px 2px 0 var(--bg-tertiary);
    }
    
    .ctrl-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .volume-control {
        margin-bottom: 0;
        padding: 8px;
    }
    
    /* Move action buttons to right column in landscape */
    .action-buttons {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 6px;
        padding: 12px;
        border-left: 1px solid var(--border);
        margin-bottom: 0;
    }
    
    .action-btn {
        padding: 10px 6px;
        font-size: 15px;
    }
    
    .footer {
        grid-area: footer;
        padding: 8px 12px;
    }
    
    .album-art-container {
        width: 55px;
        height: 55px;
    }
    
    .channel-name {
        font-size: 9px;
        max-height: 28px;
    }
    
    .greeting {
        font-size: 17px;
    }
    
    .now-playing {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .status-indicator {
        margin-top: 6px;
        font-size: 12px;
    }
    
    .volume-value {
        font-size: 15px;
        min-width: 36px;
    }
    
    .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .volume-thumb {
        width: 14px;
        height: 14px;
    }
}

/* Wider landscape screens */
@media (orientation: landscape) and (min-width: 650px) and (max-height: 500px) {
    .radio-container {
        max-width: 680px;
        margin: 0 auto;
    }
    
    .action-btn {
        padding: 12px 8px;
        font-size: 16px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .ctrl-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .album-art-container {
        width: 60px;
        height: 60px;
    }
    
    .greeting {
        font-size: 19px;
    }
}

/* Very wide landscape */
@media (orientation: landscape) and (min-width: 800px) and (max-height: 500px) {
    .radio-container {
        max-width: 750px;
    }
    
    .action-buttons {
        padding: 16px;
    }
    
    .action-btn {
        padding: 14px 10px;
        font-size: 17px;
    }
}
