.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header.nav-hidden {
    transform: translateY(-150%);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    background: transparent;
    border: 0;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-brand__title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.header-brand__title span {
    color: #b86dff;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-menu .nav-link {
    color: rgba(255,255,255,0.62) !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-menu .nav-link:hover,
.header-menu .nav-link.is-active {
    color: #fff !important;
}

.header-menu .nav-link:hover {
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63ffb0;
    box-shadow: 0 0 12px rgba(99, 255, 176, 0.7);
}

.header-status__text {
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    font-weight: 600;
}

.header-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #8c27ff 0%, #6710da 100%);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-discord:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(92, 0, 196, 0.28);
}

.header-discord i {
    font-size: 15px;
}

@media (max-width: 1199px) {
    .header-status {
        display: none;
    }
}

@media (max-width: 991px) {
    .header {
        top: 12px;
    }

    .header-nav {
        gap: 14px;
        padding: 8px 0;
    }

    .header-brand__title {
        font-size: 20px;
    }

    .header-discord {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .header-discord span {
        display: none;
    }
}
