@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
 
:root {
    --primary: #ffffff;
    --primary-hover: #cccccc;
    --bg-dark: #0b0c10;
    --card-bg: rgba(255,255,255,0.045);
    --border: rgba(255,255,255,0.12);
    --font-head: 'DM Serif Display', Georgia, serif;
    --font-body: 'Libre Baskerville', Georgia, serif;
}
 
* { box-sizing: border-box; }
 
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: #edeae2;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
 
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11,12,16,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}
 
main {
    flex: 1;
    width: 100%;
    padding-top: 1.5rem;
}
 
header h1 {
    margin: 0;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    color: #edeae2;
    letter-spacing: 0.04em;
}
 
.nav ul {
    list-style: none;
    margin: 0.6rem 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
 
.nav a {
    text-decoration: none;
    color: #b8b4aa;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: color 0.2s;
}
 
.nav a:hover {
    color: #edeae2;
    text-decoration: none;
}
 
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
 
input, select, textarea {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    color: #edeae2;
    padding: 0.6rem 1rem;
    border-radius: 3px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}
 
input:focus, select:focus {
    background-color: rgba(255,255,255,0.055);
    border-color: rgba(255,255,255,0.28);
}
 
input::placeholder {
    color: rgba(255,255,255,0.28);
    font-style: italic;
}
 
button, .buttons a {
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.12);
    background-color: rgba(255,255,255,0.04);
    color: #b8b4aa;
    padding: 9px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.18s ease;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
}
 
button:hover, .buttons a:hover {
    background-color: rgba(201,185,138,0.10);
    border-color: rgba(201,185,138,0.55);
    color: #c9b98a;
}
 
button:active { transform: translateY(1px); }
 
.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }
 
.channel {
    position: relative;
    cursor: help;
}
 
.details {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 0;
    background: rgba(11,12,16,0.97);
    backdrop-filter: blur(20px);
    color: #b8b4aa;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.20);
    z-index: 50;
    width: 250px;
    font-size: 0.85rem;
    border-radius: 3px;
    line-height: 1.5;
}
 
.channel:hover .details { display: block; }
.channel:hover { color: #c9b98a; }