/* === FONTS === */
@font-face { font-family: 'Seeker'; src: url('seeker-font-family/seeker-extrabolditalic.otf') format('opentype'); font-weight: 800; font-style: italic; }
@font-face { font-family: 'Seeker'; src: url('seeker-font-family/seeker-mediumitalic.otf') format('opentype'); font-weight: 500; font-style: italic; }
@font-face { font-family: 'Seeker'; src: url('seeker-font-family/seeker-bold.otf') format('opentype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Seeker'; src: url('seeker-font-family/seeker-regular.otf') format('opentype'); font-weight: 400; font-style: normal; }

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === VARIABLES === */
:root {
    --accent: #6c3cbe; --accent-glow: rgba(108,60,190,.45);
    --red: #c41e3a; --red-glow: rgba(196,30,58,.42);
    --green: #00e676; --gold: #f9ca24;
    --panel: rgba(12,12,35,.85); --border: rgba(255,255,255,.08);
}

/* === BODY === */
body {
    font-family: 'Seeker', sans-serif; font-weight: 500; font-style: italic;
    background: url('fond site.png') no-repeat center center fixed;
    background-size: cover; background-color: #151530;
    color: #e0e0e0; min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a1c; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e63350; }
* { scrollbar-width: thin; scrollbar-color: var(--red) #0a0a1c; }

/* === NAV === */
nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 30px;
    background: rgba(8, 8, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--red);
}
nav .brand {
    font-family: 'Seeker', sans-serif; font-weight: 800; font-style: italic;
    font-size: 16px; color: #fff;
    letter-spacing: 3px;
}
nav .links { display: flex; gap: 6px; align-items: center; }
nav .links a {
    font-family: 'Seeker', sans-serif; font-weight: 800; font-style: italic;
    color: #9ca3c2; text-decoration: none; font-size: 11px;
    padding: 7px 16px; border-radius: 4px; transition: all .2s;
    border: 1px solid transparent; letter-spacing: 1px;
}
nav .links a:hover { color: #fff; }
nav .links a.active {
    color: #fff; border-color: var(--red); background: transparent;
}
