:root {
    --primary: #26468f;
}

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

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    color: #f0f0f0;
}

body>#shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    background: rgba(10, 10, 10, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

body>#shell-header>.shell-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

body>#shell-header>.shell-logo>.shell-logo-img {
    height: 1.1rem;
    margin-left: 0.15em;
    vertical-align: -0.1em;
}

body>#shell-header>.shell-menu-btn {
    background: none;
    border: none;
    color: rgba(240, 240, 240, 0.65);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

body>#shell-header>.shell-menu-btn:hover {
    color: #fff;
}

body>#shell-header>.shell-menu {
    position: absolute;
    top: 64px;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body>#shell-header>.shell-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body>#shell-header>.shell-menu>.shell-menu-link {
    color: rgba(240, 240, 240, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.15s, color 0.15s;
}

body>#shell-header>.shell-menu>.shell-menu-link>i {
    width: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
}

body>#shell-header>.shell-menu>.shell-menu-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

body>#shell-content {
    flex: 1;
}

body>#shell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body>#shell-footer>.shell-footer-socials {
    display: flex;
    gap: 1rem;
}

body>#shell-footer>.shell-footer-socials>.shell-footer-social {
    color: rgba(240, 240, 240, 0.4);
    font-size: 1.15rem;
    transition: color 0.2s;
    text-decoration: none;
}

body>#shell-footer>.shell-footer-socials>.shell-footer-social:hover {
    color: #fff;
}

body>#shell-footer>.shell-footer-copy {
    font-size: 0.75rem;
    color: rgba(240, 240, 240, 0.25);
}

body>#shell-footer>.shell-footer-legal {
    display: flex;
    gap: 1.25rem;
}

body>#shell-footer>.shell-footer-legal>.shell-footer-legal-link {
    color: rgba(240, 240, 240, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
}

body>#shell-footer>.shell-footer-legal>.shell-footer-legal-link:hover {
    color: #fff;
}