/* General Styles */
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #0b111a;
    color: #e6edf3;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Title */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #0dcaf0;
}

/* Categories Menu */
.categories-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.categories-menu a {
    padding: 8px 15px;
    border-radius: 8px;
    background: #0e141b;
    color: #00d97e;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.categories-menu a:hover,
.categories-menu a.active {
    background: #00d97e;
    color: #000;
}

/* Channel Rows */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0e141b;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    flex-wrap: wrap;
}

.row div {
    margin-bottom: 5px;
}

.hd-link {
    background: #00d97e;
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.hd-link:hover {
    background: #00b767;
}

/* Iframe Player */
iframe#player {
    width: 100%;
    height: 480px;
    margin-top: 20px;
    border-radius: 8px;
    border: 0;
}

/* Responsive */
@media (max-width: 720px) {
    .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-menu {
        justify-content: flex-start;
    }
}

.hd-link.secondary {
    background: #0dcaf0;
    margin-left: 8px;
}
.hd-link.secondary:hover {
    background: #0bb5d6;
}

/* Site message bar */
.site-msg {
    background:#0dcaf0;
    color:#001018;
    padding:10px 15px;
    border-radius:6px;
    margin-bottom:20px;
    font-weight:bold;
}

/* Channel row colors */
.ch-date {
    color:#ffcc00; /* yellow-ish for date */
    font-weight:bold;
}
.ch-category {
    color:#00d97e; /* green for category */
    font-weight:bold;
}
.ch-name {
    color:#ffffff; /* channel name stays white */
    font-weight:normal;
}
