#recent-banner {
    margin-top: 40px;
    padding: 20px;
    background: var(--ep-bg-alt);
    border-top: 2px solid var(--ep-border);
}

#recent-banner h2 {
    margin-bottom: 10px;
    color: var(--ep-accent);
}

#sort-controls {
    margin-bottom: 15px;
}

#sort-controls button {
    background: var(--ep-bg);
    border: 1px solid var(--ep-border);
    color: var(--ep-text);
    padding: 6px 12px;
    margin-right: 8px;
    border-radius: 4px;
    cursor: pointer;
}

#sort-controls button:hover {
    background: var(--ep-accent);
    color: #000;
}

#recent-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.recent-item {
    background: #111;
    border: 1px solid var(--ep-border);
    border-radius: 6px;
    padding: 5px;
    min-width: 150px;
    text-align: center;
}

.recent-item img {
    width: 150px;
    height: auto;
    border-radius: 4px;
}
body {
    margin: 0;
    background: #111;
    color: #eee;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #222;
    border-bottom: 2px solid #444;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

main {
    display: flex;
    height: calc(100vh - 100px);
}

#video-section {
    flex: 3;
    position: relative;
    background: black;
}

#video-player {
    width: 100%;
    height: 100%;
    background: black;
}

#offline {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    color: #ccc;
}

.hidden {
    display: none;
}

#chat-section {
    flex: 1;
    background: #1a1a1a;
    border-left: 2px solid #333;
    display: flex;
    flex-direction: column;
}

#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

#chat-input {
    padding: 10px;
    border: none;
    outline: none;
    background: #333;
    color: #fff;
}
