@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

body {
    margin: 0;
    background-color: #000;
    color: #cfd2d6;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.main {
    width: 700px;
    padding: 20px;
    background-color: #001122;
    border: 1px solid #334455;
    border-radius: 4px;
}

.main h1 {
    font-size: 3rem;
}

.logo {
    max-width: 500px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* Tabs */
.tab {
    display: none;
}

.tab.active {
    display: block;
}

.tab-nav {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #000;
    border: 1px solid #334455;
    padding: 6px 14px;
    color: #cfd2d6;
    cursor: pointer;
    font-size: 0.95rem;
    margin: 4px;
}

.tab-button.active {
    background-color: #112233;
    border-color: #ff0050;
    color: #ff0050;
    font-weight: 700;
}

red {
    color: #f00;
}

/* Links */
a {
    color: #ff0050;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Selection */
::selection {
    background: #ff0050;
    color: #000;
}

/* Player bar */
.player-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    border: 1px solid #334455;
    padding: 6px 10px;
    margin: 8px 0;
    border-radius: 4px;
}

.player-button {
    background-color: #000;
    border: 1px solid #334455;
    color: #cfd2d6;
    font-family: 'IBM Plex Mono', monospace;
    padding: 4px 12px;
    cursor: pointer;
}

.player-button:hover {
    background-color: #112233;
}

.player-button:focus {
    outline: none;
    border-color: #ff0050;
}

/* Volume slider */
.player-bar input[type="range"] {
    -webkit-appearance: none;
    width: 220px;
    height: 6px;
    background: #334455;
    border-radius: 3px;
    cursor: pointer;
}

.player-bar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff0050;
    border: none;
}

.player-bar input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff0050;
    border: none;
}