body.vip-theme {
    background: #0a0a0a;
    color: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.site-header__shell {
    display: flex;
    justify-content: center;
    width: 100%;
}

.site-header__nav {
    width: min(100%, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    transition: width 0.3s ease, top 0.3s ease, border-radius 0.3s ease, padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    top: 0;
    z-index: 2;
    border-radius: 0;
    pointer-events: auto;
}

.site-header.is-scrolled .site-header__nav {
    width: min(1120px, calc(100% - 48px));
    top: 20px;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
}

.site-header__brand-mark-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #f7f0f5;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 45, 133, 0.14) 0%, rgba(0, 0, 0, 0) 42%), #040404;
    box-shadow:
        0 0 0 3px rgba(255, 45, 133, 0.72),
        0 14px 28px rgba(0, 0, 0, 0.24);
}

.site-header__brand-emblem {
    width: 26px;
    height: 26px;
    color: #d4af37;
}

.site-header__brand-mark-copy {
    position: absolute;
    right: 6px;
    bottom: 8px;
    left: 6px;
    display: grid;
    gap: 1px;
    text-align: center;
    line-height: 1;
}

.site-header__brand-mark-copy strong,
.site-header__brand-mark-copy small {
    display: block;
}

.site-header__brand-mark-copy strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 5px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.site-header__brand-mark-copy small {
    color: #ff2d85;
    font-size: 4px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.site-header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.site-header__brand-text strong {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.site-header__brand-text small {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.site-header__brand-text em {
    color: rgba(255, 255, 255, 0.56);
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.site-header__desktop {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.site-header__item {
    position: relative;
}

.site-header__item.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #ff2d85;
}

.site-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: color 0.25s ease;
}

.site-header__link:hover,
.site-header__item.is-current > .site-header__link {
    color: #fff;
}

.site-header__link--accent,
.site-header__item.is-current > .site-header__link--accent,
.site-header__item.is-current > .site-header__link {
    color: #ff2d85;
}

.site-header__chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
}

.site-header__item--dropdown:hover .site-header__chevron,
.site-header__item--dropdown:focus-within .site-header__chevron {
    transform: rotate(180deg);
}

.site-header__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 224px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: #0a0a0a;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__item--dropdown:hover .site-header__dropdown,
.site-header__item--dropdown:focus-within .site-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-header__dropdown-icon {
    width: 16px;
    height: 16px;
    color: #ff2d85;
    flex-shrink: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 8px;
}

.site-header__cta,
.site-header__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #ff2d85;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(255, 45, 133, 0.3);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.site-header__cta:hover,
.site-header__mobile-cta:hover {
    background: #e62577;
    transform: translateY(-1px);
}

.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(0, 0, 0, 0.24);
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header__toggle:hover {
    border-color: rgba(255, 45, 133, 0.45);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 42px rgba(0, 0, 0, 0.32);
}

.site-header__toggle-box {
    position: relative;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__toggle-line {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease, background-color 0.25s ease;
}

.site-header__toggle-line--top {
    top: 0;
}

.site-header__toggle-line--middle {
    top: 7px;
}

.site-header__toggle-line--bottom {
    top: 14px;
}

.site-header.is-menu-open .site-header__toggle {
    border-color: rgba(255, 45, 133, 0.55);
    background: rgba(18, 18, 18, 0.92);
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1002;
}

.site-header.is-menu-open .site-header__toggle-line {
    background: #ff2d85;
}

.site-header.is-menu-open .site-header__toggle-line--top {
    top: 7px;
    transform: rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle-line--middle {
    opacity: 0;
    transform: scaleX(0.2);
}

.site-header.is-menu-open .site-header__toggle-line--bottom {
    top: 7px;
    left: 0;
    width: 22px;
    transform: rotate(-45deg);
}

.site-header__mobile {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: #0a0a0a;
    padding: 124px 32px 32px;
    pointer-events: auto;
}

.site-header__mobile[hidden] {
    display: none;
}

.site-header__mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-header__mobile-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    transition: color 0.2s ease;
}

.site-header__mobile-link:hover,
.site-header__mobile-link.is-current {
    color: #ff2d85;
}

.site-header__mobile-link--accent {
    color: #ff2d85;
}

.site-header__mobile-cta {
    margin-top: 8px;
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.16em;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .site-header__nav {
        width: calc(100% - 24px);
        margin-top: 12px;
        padding: 0.95rem 1rem;
        border-radius: 24px;
        background: rgba(10, 10, 10, 0.92);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .site-header.is-scrolled .site-header__nav {
        width: calc(100% - 24px);
        top: 0;
        padding: 0.95rem 1rem;
        border-radius: 24px;
    }

    .site-header__desktop,
    .site-header__cta {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .site-header.is-menu-open .site-header__brand {
        opacity: 0;
        pointer-events: none;
    }

    .site-header__brand {
        gap: 10px;
    }

    .site-header__brand-mark {
        width: 46px;
        height: 46px;
    }

    .site-header__brand-emblem {
        width: 22px;
        height: 22px;
    }

    .site-header__brand-text strong {
        font-size: 1.15rem;
    }

    .site-header__brand-text small {
        font-size: 8px;
    }

    .site-header__brand-text em {
        font-size: 6px;
    }
}
