body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    padding-bottom: 80px;
    text-align: center;
    overscroll-behavior: none;
}

h1 { color: #333; }

.now-playing {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.now-playing strong { color: #e74c3c; }

.streams { margin: 40px 0; }

.stream {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 15px 30px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.stream:hover { background: #c0392b; }

.stream.archive { background: #3498db; }
.stream.archive:hover { background: #2980b9; }

.stream.napi-hirek { background: #e67e22; }
.stream.napi-hirek:hover { background: #d35400; }

.stream small { display: block; font-size: 12px; opacity: 0.8; }

.stats { color: #666; font-size: 14px; }

.schedule {
    background: #f9f9f9;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 30px 0;
    text-align: left;
    font-size: 14px;
}

.schedule strong { display: block; margin-bottom: 8px; }
.schedule small { color: #888; display: block; margin-top: 8px; }

.schedule-items {
    margin: 0;
}

.schedule-item {
    padding: 4px 0;
    color: #444;
}

.schedule-item.schedule-weekly {
    color: #3498db;
    font-style: italic;
}

.admin-news {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin: 12px 0;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.admin-news::-webkit-scrollbar { display: none; }

.admin-news-entry {
    flex: 0 0 80%;
    max-width: 280px;
    background: #f9f9f9;
    border-left: 3px solid #27ae60;
    padding: 8px 12px;
    font-size: 13px;
    text-align: left;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.admin-news-date {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 3px;
}

.admin-news-content { color: #444; line-height: 1.4; }
.admin-news-content a { color: #27ae60; }

.hidden { display: none; }

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.player.hidden { display: none; }

.player audio { height: 35px; }

.player button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.player button:hover { color: #e74c3c; }