@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');
@import "https://www.nerdfonts.com/assets/css/webfont.css";

* {
    scrollbar-color: #fe951d #0f0f0f;
}

body {
    background-color: #0a0a0a;
    color: white;
    padding: 15px;
    padding-top: 80px;
    background: #0f0f0f;
}

.nav {
    background: linear-gradient(135deg, rgba(39, 39, 39, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(34, 34, 34, 0.25);
    box-shadow: inset 0 1px 1px rgba(97, 97, 97, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.nav-right {
    text-align: right;
}

.nav-light {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    filter: blur(40px);
    z-index: 0;
}

.content {
    align-items: center;
    text-align: center;
    font-family: 'SN Pro';
}

a {
    color: #fe951d;
    font-family: 'SN Pro';
    font-weight: bold;
    transition: 0.2s;
    text-decoration: none;
    margin-right: 10px;
    font-size: 19px;
}
