* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #080808;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #f0f0f0;
}

.lx {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.tt {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
}

.lx h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.08;
    max-width: 700px;
}

.lx h1 strong {
    font-weight: 600;
}

.lx p {
    margin-top: 1.4rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 380px;
    line-height: 1.75;
    font-weight: 300;
}

.lx .bg {
    margin-top: 2.2rem;
    display: flex;
    gap: 10px;
}

.bt {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    display: inline-block;
}

.bt:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.bw {
    background: white;
    color: #080808;
}

.bo {
    background: transparent;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nv {
    position: fixed;
    top: clamp(10px, 2.5vw, 20px);
    left: 0;
    right: 0;
    z-index: 100;
    justify-content: center;
    pointer-events: none;
    padding-inline: clamp(8px, 3vw, 16px);
}

nav {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.5vw, 6px);
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    padding: clamp(4px, 0.6vw, 6px) clamp(4px, 0.8vw, 8px);
    position: relative;
}

nav a {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: clamp(8px, 1.2vw, 12px) clamp(10px, 2.5vw, 17px);
    border-radius: 99px;
    transition: color 0.15s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

nav a:hover {
    color: #f0f0f0;
}

nav a.active {
    color: #f0f0f0;
}

.nb {
    position: absolute;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
    transition:
        left 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        top 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
    opacity: 0;
    z-index: 0;
}

.nc {
    background: white !important;
    color: #080808 !important;
    font-weight: 600 !important;
    margin-left: clamp(2px, 0.5vw, 4px);
}

.nc:hover {
    background: #e0e0e0 !important;
}

.mn {
    position: fixed;
    top: clamp(10px, 2.5vw, 20px);
    left: 0;
    right: 0;
    z-index: 100;
    justify-content: center;
    padding-inline: 20px;
    display: none;
}

.mb {
    position: fixed;
    inset: 0;
    z-index: 99;
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition:
        backdrop-filter 0.35s ease,
        -webkit-backdrop-filter 0.35s ease,
        background 0.35s ease;
}

.mb.ac {
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    background: rgba(0, 0, 0, 0.35);
    pointer-events: all;
}

.nm {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(88px) saturate(180%);
    -webkit-backdrop-filter: blur(88px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 5px;
    width: fit-content;
    min-width: 180px;
    max-width: 240px;
    overflow: hidden;
    max-height: 46px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 101;
}

.nm.op {
    max-height: 600px;
}

.nt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 15px;
    cursor: pointer;
    color: #f0f0f0;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 13px;
    user-select: none;
    height: 36px;
    background: rgba(255, 255, 255, 0.09);
    flex-shrink: 0;
    white-space: nowrap;
}

.ar {
    font-style: normal;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.nm.op .ar {
    transform: rotate(180deg);
}

.nm a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 11px 15px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.15s, background 0.15s;
    display: block;
    white-space: nowrap;
    margin-top: 2px;
}

.nm.op a {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nm.op a:nth-child(2) {
    transition-delay: 0.03s;
}

.nm.op a:nth-child(3) {
    transition-delay: 0.06s;
}

.nm.op a:nth-child(4) {
    transition-delay: 0.09s;
}

.nm.op a:nth-child(5) {
    transition-delay: 0.12s;
}

.nm.op a:nth-child(6) {
    transition-delay: 0.15s;
}

.nm.op a:nth-child(7) {
    transition-delay: 0.18s;
}

.nm.op a:nth-child(8) {
    transition-delay: 0.21s;
}

.nm.op a:nth-child(9) {
    transition-delay: 0.24s;
}

.nm a:hover {
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.06);
}

.nm a.active {
    background: rgba(255, 255, 255, 0.09);
    color: #f0f0f0;
}

.nm .nc {
    background: white !important;
    color: #080808 !important;
    font-weight: 600 !important;
    margin-top: 3px;
    border-radius: 10px !important;
    opacity: 0;
    pointer-events: none;
}

.nm.op .nc {
    opacity: 1;
    pointer-events: all;
}

.nm .nc:hover {
    background: #e0e0e0 !important;
    color: #080808 !important;
}

