html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    background-image: url("../../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #fff;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient( circle at 68% 48%, rgba(255, 255, 255, 0.035), transparent 42%), linear-gradient( 90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 28%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.80) 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(22px) saturate(115%);
    -webkit-backdrop-filter: blur(22px) saturate(115%);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
    z-index: 20;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
}

.nav-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.06);
}

.nav-brand span {
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 45px;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-1px);
}

.nav-link.active {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.055);
}

.staff {
    position: fixed;
    top: 76px;
    left: 0;
    width: 340px;
    height: calc(100vh - 76px);
    padding: 55px 30px 42px;
    background: linear-gradient( 180deg, rgba(8, 8, 8, 0.86), rgba(4, 4, 4, 0.76));
    border-right: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: 25px 0 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px) saturate(110%);
    -webkit-backdrop-filter: blur(24px) saturate(110%);
    z-index: 10;
}

.staff-title {
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -0.3px;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.2;
}

.staff-subtitle {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.32);
}

.staff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 38px;
    padding: 13px 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.26);
}

.staff-member {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
    padding: 11px 9px;
    border-radius: 9px;
    transition: background 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.staff-member:hover {
    background: rgba(255, 255, 255, 0.035);
    transform: translateX(3px);
}

.staff-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.staff-user img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.018);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-member:hover .staff-user img {
    transform: scale(1.035);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.035);
}

.staff-user span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.staff-member:hover .staff-user span {
    color: rgba(255, 255, 255, 0.98);
}

.staff-member>span {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.27);
    white-space: nowrap;
    transition: color 0.25s ease;
}

.staff-member:hover>span {
    color: rgba(255, 255, 255, 0.42);
}

.staff-apply {
    position: absolute;
    left: 30px;
    bottom: 29px;
    width: calc(100% - 60px);
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 8px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.staff-apply:hover {
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero {
    position: fixed;
    top: 50%;
    left: calc(50% + 125px);
    transform: translate(-50%, -50%);
    width: 760px;
    text-align: left;
    z-index: 2;
    animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero::before {
    content: "THE STAFF TEAM";
    display: block;
    margin-bottom: 15px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.27);
}

.hero h1 {
    margin: 0;
    font-size: clamp(52px, 5vw, 68px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 12px 45px rgba(0, 0, 0, 0.42);
}

.hero p {
    max-width: 610px;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.05px;
    color: rgba(255, 255, 255, 0.46);
}

.hero p+p {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.27);
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 14px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 1000px) {
    .staff {
        width: 300px;
    }
    .hero {
        left: calc(50% + 100px);
        width: 650px;
    }
    .hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 750px) {
    body {
        overflow: auto;
    }
    .navbar {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    .staff {
        position: relative;
        top: 76px;
        width: 100%;
        height: auto;
        min-height: calc(100vh - 76px);
        padding-bottom: 100px;
        border-right: none;
    }
    .staff-apply {
        position: absolute;
    }
    .hero {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding: 80px 30px;
        transform: none;
    }
    .hero h1 {
        font-size: 46px;
    }
}