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: #B87040; }

.streams { margin: 40px 0; }

.stream-pair {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.stream-pair .stream {
    flex: 1;
    margin: 0;
}

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

.stream:hover { background: #1E3F66; }

.stream.archive { background: #1E3A5F; }
.stream.archive:hover { background: #132843; }

.stream.napi-hirek { background: #3D6B9A; }
.stream.napi-hirek:hover { background: #2E5380; }

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

.stream.yt-btn { background: #7A1F1F; }
.stream.yt-btn:hover { background: #5E1717; }

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

.schedule {
    background: #f9f9f9;
    border-left: 4px solid #B87040;
    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: #3D6B9A;
    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 #B87040;
    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: #B87040; }

.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; }


/* Support / donation section */
.support-section {
    margin: 24px 0 32px;
}

.support-label {
    font-size: 14px;
    color: #555;
    margin: 0 0 12px;
}

.support-buttons {
    display: flex;
    gap: 12px;
}

.support-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.support-btn.donably {
    background: linear-gradient(160deg, #3D2B1F, #5C4030);
}

.support-btn.revolut {
    background: linear-gradient(160deg, #131E35, #1E3050);
}

.support-btn-title {
    font-size: 17px;
    font-weight: bold;
    display: block;
}

.support-btn-sub {
    font-size: 12px;
    opacity: 0.85;
    display: block;
    margin-top: 4px;
}

/* Bottom action buttons */
.bottom-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bottom-btn {
    padding: 10px 20px;
    background: #2E5380;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
}
.bottom-btn:hover { background: #1E3F66; }
.bottom-btn.secondary { background: #1E3A5F; }
.bottom-btn.secondary:hover { background: #132843; }

/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
}
.modal-overlay.hidden { display: none; }

.modal-box {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px 24px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.modal-close:hover { color: #333; }

.modal-title {
    font-size: 17px;
    margin-bottom: 18px;
    color: #333;
}

.form-label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.form-input {
    display: block;
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 14px;
    font-family: inherit;
    box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: #2E5380; }

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 10px;
    background: #2E5380;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}
.form-submit:hover { background: #1E3F66; }
.form-submit:disabled { background: #aaa; cursor: default; }

.form-status {
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
    text-align: center;
}
.form-status.ok  { color: #2E5380; }
.form-status.err { color: #a03030; }