body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #0e0e10;
    color: #efeff1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #18181b;
    border-bottom: 1px solid #2a2a2d;
}

nav a {
    margin-left: 16px;
    color: #bf94ff;
    text-decoration: none;
}

    nav a:hover {
        text-decoration: underline;
    }

main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    padding: 16px;
}

.player iframe,
.chat iframe {
    border: none;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 16px;
    border-top: 1px solid #2a2a2d;
    margin-top: 16px;
}

    footer .links a {
        margin: 0 8px;
        color: #bf94ff;
    }
