/*
2026-06-02 - Added premium AAA WildFire Live landing page styling.
*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #f8f2e8;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: 4.8rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 3vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35));
    border-bottom: 1px solid rgba(214, 164, 80, 0.18);
    backdrop-filter: blur(1rem);
}

.brand {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    color: #d8a44f;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.08rem;
    text-transform: uppercase;
    line-height: 0.86;
}

.brand span {
    font-size: 1.75rem;
}

.brand small {
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
}

.nav {
    display: flex;
    gap: 1.8rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a {
    opacity: 0.78;
}

.nav a:hover {
    color: #d8a44f;
    opacity: 1;
}

.header-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0 1.4rem;
    border: 1px solid rgba(216, 164, 79, 0.75);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
}

.header-button,
.primary-button {
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
}

.secondary-button {
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3vw 5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 30%, rgba(255, 141, 45, 0.42), transparent 28rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.18) 100%),
        url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 60%, #050505 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 43rem;
}

.eyebrow,
.section-title p,
.contact p,
.featured article p {
    margin: 0 0 1rem;
    color: #d8a44f;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.hero h1 {
    margin: 0;
    max-width: 42rem;
    font-size: clamp(4rem, 8vw, 8.8rem);
    line-height: 0.82;
    text-transform: uppercase;
    letter-spacing: -0.35rem;
}

.hero h1 span {
    display: block;
    margin-top: 0.6rem;
    color: #d8a44f;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-style: italic;
    font-size: 0.52em;
    letter-spacing: 0;
    transform: rotate(-2deg);
}

.intro {
    max-width: 32rem;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-badge {
    position: absolute;
    z-index: 3;
    right: 4vw;
    bottom: 5rem;
    width: 11rem;
    height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem;
    border: 1px solid rgba(216, 164, 79, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(0.5rem);
    text-align: center;
}

.hero-badge strong {
    color: #d8a44f;
    text-transform: uppercase;
}

.hero-badge span {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    opacity: 0.78;
}

.services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(216, 164, 79, 0.16);
    border-bottom: 1px solid rgba(216, 164, 79, 0.16);
    background: #070707;
}

.services article {
    min-height: 15rem;
    padding: 2.4rem 2rem;
    border-right: 1px solid rgba(216, 164, 79, 0.16);
}

.services span {
    display: block;
    margin-bottom: 2rem;
    color: #d8a44f;
    font-size: 2rem;
    font-weight: 900;
}

.services h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.services p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.65;
}

.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 2rem 3vw;
    border: 1px solid rgba(216, 164, 79, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.stats div {
    padding: 1.8rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(216, 164, 79, 0.14);
}

.stats strong {
    display: block;
    color: #d8a44f;
    font-size: 2.4rem;
}

.stats span {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0.82;
}

.featured {
    padding: 4rem 3vw;
}

.section-title {
    margin-bottom: 1.8rem;
}

.section-title h2,
.contact h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.cards article {
    min-height: 25rem;
    padding: 1rem;
    border: 1px solid rgba(216, 164, 79, 0.18);
    background: #0a0a0a;
}

.card-image {
    height: 15rem;
    margin-bottom: 1.2rem;
    background-position: center;
    background-size: cover;
    filter: saturate(1.05) contrast(1.1);
}

.card-image.fire {
    background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=900&q=80");
}

.card-image.fighters {
    background-image: url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=900&q=80");
}

.card-image.stage {
    background-image: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=900&q=80");
}

.card-image.camera {
    background-image: url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.cards h3 {
    margin: 0.35rem 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.cards span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 3vw 3vw;
    padding: 3rem;
    border: 1px solid rgba(216, 164, 79, 0.18);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.42)),
        url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.contact span {
    display: block;
    max-width: 34rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-content: center;
    text-align: center;
}

.not-found h1 {
    color: #d8a44f;
    font-size: 6rem;
    margin: 0;
}

@media (max-width: 1000px) {
    .nav {
        display: none;
    }

    .services,
    .stats,
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header {
        height: 4.2rem;
    }

    .header-button {
        display: none;
    }

    .hero {
        padding-top: 7rem;
    }

    .services,
    .stats,
    .cards {
        grid-template-columns: 1fr;
    }

    .contact {
        align-items: flex-start;
        flex-direction: column;
        padding: 2rem;
    }
}

/* 2026-06-02 - Added premium login dialog styling. */
.login-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.78;
}

.login-link:hover {
    color: #d8a44f;
    opacity: 1;
}

.user-pill {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(216, 164, 79, 0.35);
    border-radius: 999px;
    color: #d8a44f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.login-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(0.75rem);
}

.login-modal.open {
    display: flex;
}

.login-panel {
    position: relative;
    width: min(28rem, 100%);
    padding: 2.4rem;
    border: 1px solid rgba(216, 164, 79, 0.38);
    background:
        radial-gradient(circle at top right, rgba(216, 164, 79, 0.22), transparent 14rem),
        linear-gradient(180deg, #111111, #050505);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.7);
}

.login-panel p {
    margin: 0 0 0.6rem;
    color: #d8a44f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.login-panel h2 {
    margin: 0 0 1.5rem;
    font-size: 2.8rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.login-close {
    position: absolute;
    top: 0.8rem;
    right: 0.9rem;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

.login-panel form {
    display: grid;
    gap: 1rem;
}

.login-panel label {
    display: grid;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.login-panel input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    border: 1px solid rgba(216, 164, 79, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
}

.login-panel input:focus {
    border-color: rgba(216, 164, 79, 0.8);
}

.login-message {
    min-height: 1.2rem;
    color: #d8a44f;
    font-size: 0.9rem;
}

/* 2026-06-02 - Added simple profile page styling. */
.profile-page {
    min-height: 100vh;
    padding: 8rem 3vw 3rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(216, 164, 79, 0.18), transparent 22rem),
        #050505;
}

.profile-panel {
    width: min(52rem, 100%);
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid rgba(216, 164, 79, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.38);
}

.profile-panel > p {
    margin: 0 0 0.7rem;
    color: #d8a44f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.profile-panel h1 {
    margin: 0 0 2rem;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-details div {
    padding: 1rem;
    border: 1px solid rgba(216, 164, 79, 0.18);
    background: rgba(0, 0, 0, 0.22);
}

.profile-details span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-details strong {
    color: #ffffff;
    font-size: 1rem;
}

.password-form {
    display: grid;
    gap: 1rem;
}

.password-form h2 {
    margin: 0.5rem 0;
    color: #d8a44f;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.password-form label {
    display: grid;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.password-form input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    border: 1px solid rgba(216, 164, 79, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
}

.password-form input:focus {
    border-color: rgba(216, 164, 79, 0.8);
}

@media (max-width: 760px) {
    .profile-details {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-02 - Added registration, verification and limited-functionality notice styling. */
.site-update-notice {
    margin: -0.8rem 0 1.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(216, 164, 79, 0.24);
    background: rgba(216, 164, 79, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.auth-tab {
    min-height: 2.5rem;
    border: 1px solid rgba(216, 164, 79, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.auth-tab.active {
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: grid;
    gap: 1rem;
}

/* 2026-06-02 - Fixed auth modal so only the selected login/register/verification form is visible. */
.login-panel form.auth-form {
    display: none;
}

.login-panel form.auth-form.active {
    display: grid;
    gap: 1rem;
}

/* 2026-06-02 - Added distinctive role-based menu links for staff, admin and super-admin users. */
.role-menu-link {
    padding: 0.55rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 999rem;
    opacity: 1 !important;
    letter-spacing: 0.06rem;
}

.admin-menu-link {
    border-color: rgba(216, 164, 79, 0.62);
    background: rgba(216, 164, 79, 0.16);
    color: #e7b45c;
}

.super-menu-link {
    border-color: rgba(255, 82, 82, 0.72);
    background: rgba(255, 82, 82, 0.16);
    color: #ff9a9a;
}

.staff-menu-link {
    border-color: rgba(95, 178, 255, 0.72);
    background: rgba(95, 178, 255, 0.16);
    color: #9fd2ff;
}

/* 2026-06-02 - Added Admin portal user search and user-type editor styling. */
.admin-portal-page {
    width: min(1100px, calc(100% - 2rem));
    margin: 3rem auto;
}

.admin-portal-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-portal-header p {
    margin: 0 0 0.35rem;
    color: #e7b45c;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
}

.admin-portal-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-action-panel,
.admin-user-card {
    border: 1px solid rgba(216, 164, 79, 0.25);
    background: rgba(255, 255, 255, 0.035);
    padding: 1.25rem;
}

.admin-action-panel {
    margin-bottom: 1.2rem;
}

.admin-action-panel h2,
.admin-user-card h3 {
    margin: 0 0 0.5rem;
}

.admin-action-panel p,
.admin-user-main p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.admin-search-form,
.admin-user-type-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    align-items: end;
}

.admin-search-form input,
.admin-user-type-form select {
    min-height: 3rem;
    border: 1px solid rgba(216, 164, 79, 0.3);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    padding: 0 0.85rem;
}

.admin-search-form button,
.admin-user-type-form button {
    min-height: 3rem;
    border: 0;
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
    padding: 0 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-results-list {
    display: grid;
    gap: 1rem;
}

.admin-user-card {
    display: grid;
    gap: 1rem;
}

.admin-user-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.admin-user-meta span {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.45rem 0.65rem;
    color: rgba(255, 255, 255, 0.72);
}

.admin-user-type-form label {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .admin-search-form,
    .admin-user-type-form {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-02 - Added tabbed Admin Portal navigation and section styling. */
.admin-tab-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
}

.admin-tab-menu a {
    border: 1px solid rgba(216, 164, 79, 0.28);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06rem;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-tab-menu a.active,
.admin-tab-menu a:hover {
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
}

.admin-user-card.compact {
    grid-template-columns: 1fr;
}

.admin-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.admin-chip-list span {
    border: 1px solid rgba(216, 164, 79, 0.24);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.82);
    padding: 0.55rem 0.75rem;
    font-weight: 800;
}

/* 2026-06-02 - Upgraded Admin Portal to premium header, compact filtered tables and pagination. */
.admin-body {
    background: #050505;
    color: #f6f0e8;
}

.admin-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(216, 164, 79, 0.18);
    background: linear-gradient(180deg, rgba(9, 12, 12, 0.98), rgba(5, 5, 5, 0.94));
    backdrop-filter: blur(14px);
}

.admin-site-header .brand {
    display: grid;
    color: #e7b45c;
    font-style: italic;
    font-weight: 1000;
    line-height: 0.82;
    text-decoration: none;
}

.admin-site-header .brand strong {
    font-size: 1.95rem;
}

.admin-site-header .brand span {
    color: #fff5dc;
    font-size: 0.95rem;
}

.admin-site-header .site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-site-header .site-nav a {
    border: 1px solid rgba(216, 164, 79, 0.28);
    border-radius: 999rem;
    color: #e7b45c;
    padding: 0.72rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-site-header .site-nav a.active,
.admin-site-header .site-nav a:hover {
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
}

.admin-filter-panel {
    display: grid;
    gap: 1rem;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr)) auto;
    gap: 0.75rem;
    align-items: end;
}

.admin-filter-form label {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-filter-form input,
.admin-filter-form select,
.admin-inline-type-form select {
    min-height: 2.8rem;
    border: 1px solid rgba(216, 164, 79, 0.28);
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    padding: 0 0.75rem;
}

.admin-filter-form button,
.admin-inline-type-form button {
    min-height: 2.8rem;
    border: 0;
    background: linear-gradient(135deg, #e7b45c, #8f5d21);
    color: #080808;
    padding: 0 1rem;
    font-weight: 1000;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-table-panel {
    border: 1px solid rgba(216, 164, 79, 0.22);
    background: rgba(255, 255, 255, 0.025);
}

.admin-table-summary {
    display: flex;
    gap: 0.45rem;
    align-items: baseline;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(216, 164, 79, 0.16);
}

.admin-table-summary strong {
    color: #e7b45c;
    font-size: 1.35rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-user-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.admin-user-table th,
.admin-user-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.72rem 0.85rem;
    text-align: left;
    vertical-align: middle;
}

.admin-user-table th {
    color: #e7b45c;
    font-size: 0.72rem;
    font-weight: 1000;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.admin-user-table td {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.admin-user-table td strong {
    color: #fff5dc;
}

.admin-status-pill {
    display: inline-flex;
    border: 1px solid rgba(216, 164, 79, 0.18);
    background: rgba(0, 0, 0, 0.22);
    padding: 0.3rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-inline-type-form {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto;
    gap: 0.45rem;
}

.admin-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
}

.admin-pagination a,
.admin-pagination span {
    border: 1px solid rgba(216, 164, 79, 0.22);
    color: #e7b45c;
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .admin-filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .admin-filter-form button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .admin-site-header,
    .admin-site-header .site-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-filter-form {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-02 - Added compact admin controls for verification, status and delete actions. */
.admin-user-table-wide {
    min-width: 1320px;
}

.admin-mini-form {
    margin: 0;
}

.admin-mini-form button,
.admin-danger-button,
.admin-warning-button,
.admin-positive-button {
    min-height: 2.35rem;
    border: 1px solid rgba(216, 164, 79, 0.24);
    padding: 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 1000;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-positive-button {
    background: rgba(72, 201, 120, 0.14);
    color: #8df0b2;
}

.admin-warning-button {
    background: rgba(255, 178, 72, 0.14);
    color: #ffd28a;
}

.admin-danger-button {
    border-color: rgba(255, 82, 82, 0.42);
    background: rgba(255, 82, 82, 0.14);
    color: #ff9a9a;
}

.admin-muted-action {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.status-active {
    color: #8df0b2;
}

.status-pending_verification {
    color: #ffd28a;
}

.status-disabled {
    color: #b6b6b6;
}

.status-banned {
    color: #ff9a9a;
}

/* 2026-06-02 - Compacted admin user table to fit page width using narrow controls and SVG icon buttons. */
.admin-table-wrap {
    overflow-x: visible;
}

.admin-user-table,
.admin-user-table-wide {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.admin-user-table th,
.admin-user-table td {
    padding: 0.55rem 0.45rem;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-user-table th:nth-child(1),
.admin-user-table td:nth-child(1) {
    width: 13%;
}

.admin-user-table th:nth-child(2),
.admin-user-table td:nth-child(2) {
    width: 18%;
}

.admin-user-table th:nth-child(3),
.admin-user-table td:nth-child(3) {
    width: 12%;
}

.admin-user-table th:nth-child(4),
.admin-user-table td:nth-child(4) {
    width: 7%;
    text-align: center;
}

.admin-user-table th:nth-child(5),
.admin-user-table td:nth-child(5) {
    width: 11%;
}

.admin-user-table th:nth-child(6),
.admin-user-table td:nth-child(6) {
    width: 17%;
}

.admin-user-table th:nth-child(7),
.admin-user-table td:nth-child(7) {
    width: 17%;
}

.admin-user-table th:nth-child(8),
.admin-user-table td:nth-child(8) {
    width: 5%;
    text-align: center;
}

.admin-status-pill {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.28rem 0.4rem;
    font-size: 0.66rem;
}

.admin-inline-type-form {
    grid-template-columns: minmax(0, 1fr) 2.35rem;
    gap: 0.35rem;
}

.admin-inline-type-form select {
    min-width: 0;
    width: 100%;
    min-height: 2.35rem;
    padding: 0 0.45rem;
    font-size: 0.74rem;
}

.admin-inline-type-form button,
.admin-mini-form button {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
    min-height: 2.35rem;
    padding: 0;
}

.admin-inline-type-form button svg,
.admin-mini-form button svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.admin-positive-button,
.admin-warning-button,
.admin-danger-button {
    width: 2.35rem;
    min-width: 2.35rem;
}

.admin-muted-action {
    font-size: 0.62rem;
}

.admin-pagination {
    padding: 0.7rem;
}

@media (max-width: 980px) {
    .admin-table-wrap {
        overflow-x: auto;
    }

    .admin-user-table,
    .admin-user-table-wide {
        min-width: 980px;
    }
}

/* 2026-06-02 - Expanded Admin Portal to use desktop/laptop full-width layout. */
.admin-portal-page {
    width: 100%;
    max-width: none;
    margin: 2rem 0 0;
    padding: 0 2rem 2rem;
}

.admin-portal-header,
.admin-tab-menu,
.admin-action-panel,
.admin-table-panel {
    width: 100%;
}

.admin-user-table th,
.admin-user-table td {
    font-size: 0.86rem;
}

.admin-user-table th:nth-child(1),
.admin-user-table td:nth-child(1) {
    width: 12%;
}

.admin-user-table th:nth-child(2),
.admin-user-table td:nth-child(2) {
    width: 18%;
}

.admin-user-table th:nth-child(6),
.admin-user-table td:nth-child(6),
.admin-user-table th:nth-child(7),
.admin-user-table td:nth-child(7) {
    width: 18%;
}

.admin-filter-form {
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
}





/* 2026-06-02 - Fixed header menu to use compact scalable icon+label buttons and username profile link. */
.site-nav {
    display: flex !important;
    align-items: center !important;
    gap: clamp(0.25rem, 0.8vw, 0.9rem) !important;
    min-width: 0 !important;
}

.site-nav a,
.login-link,
#logoutButton {
    display: inline-grid !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
    place-items: center !important;
    gap: 0.15rem !important;
    width: clamp(3.1rem, 5.2vw, 5.2rem) !important;
    min-width: clamp(3.1rem, 5.2vw, 5.2rem) !important;
    height: clamp(2.8rem, 5vw, 4.4rem) !important;
    min-height: 0 !important;
    padding: clamp(0.25rem, 0.55vw, 0.55rem) !important;
    border-radius: 999rem !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.site-nav a img,
.login-link img,
#logoutButton img {
    display: block !important;
    width: clamp(1.05rem, 2.15vw, 2rem) !important;
    height: clamp(1.05rem, 2.15vw, 2rem) !important;
    max-width: 70% !important;
    max-height: 70% !important;
    object-fit: contain !important;
}

.site-nav a span,
.login-link span,
#logoutButton span {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: clamp(0.48rem, 0.72vw, 0.7rem) !important;
    font-weight: 1000 !important;
    letter-spacing: 0.035rem !important;
    line-height: 1 !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.header-user-name {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: clamp(5.5rem, 10vw, 11rem) !important;
    height: clamp(2.5rem, 4vw, 3.7rem) !important;
    overflow: hidden !important;
    border: 1px solid rgba(216, 164, 79, 0.42) !important;
    border-radius: 999rem !important;
    color: #e7b45c !important;
    padding: 0 0.9rem !important;
    font-size: clamp(0.6rem, 0.85vw, 0.82rem) !important;
    font-weight: 1000 !important;
    letter-spacing: 0.04rem !important;
    text-decoration: none !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.site-nav a[href*="profile"]:not(.header-user-name) {
    display: none !important;
}

@media (max-width: 720px) {
    .site-header,
    .admin-site-header {
        padding: 0.55rem 0.65rem !important;
    }

    .site-nav {
        gap: 0.22rem !important;
    }

    .site-nav a,
    .login-link,
    #logoutButton {
        width: 2.75rem !important;
        min-width: 2.75rem !important;
        height: 2.85rem !important;
        padding: 0.22rem !important;
    }

    .site-nav a img,
    .login-link img,
    #logoutButton img {
        width: 1.2rem !important;
        height: 1.2rem !important;
    }

    .site-nav a span,
    .login-link span,
    #logoutButton span {
        font-size: 0.46rem !important;
    }

    .header-user-name {
        max-width: 4.8rem !important;
        height: 2.65rem !important;
        padding: 0 0.45rem !important;
        font-size: 0.52rem !important;
    }
}

/* 2026-06-02 - Rebuilt public/header navigation as real SVG icon buttons and removed top Let's Create action. */
.header-button {
    display: none !important;
}

.site-header {
    overflow: visible !important;
}

.nav,
.site-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(0.25rem, 0.7vw, 0.85rem) !important;
    min-width: 0 !important;
}

.nav-icon-link,
.nav a.nav-icon-link,
.site-nav a.nav-icon-link,
.login-link.nav-icon-link {
    display: inline-grid !important;
    grid-template-rows: minmax(1rem, 1fr) auto !important;
    place-items: center !important;
    gap: 0.15rem !important;
    width: clamp(3.1rem, 5vw, 5rem) !important;
    min-width: clamp(3.1rem, 5vw, 5rem) !important;
    height: clamp(2.9rem, 4.5vw, 4rem) !important;
    min-height: 0 !important;
    padding: 0.35rem 0.25rem !important;
    border: 1px solid rgba(216, 164, 79, 0.28) !important;
    border-radius: 999rem !important;
    background: rgba(0, 0, 0, 0.22) !important;
    color: #e7b45c !important;
    opacity: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.nav-icon-link img,
.nav a.nav-icon-link img,
.site-nav a.nav-icon-link img,
.login-link.nav-icon-link img {
    display: block !important;
    width: clamp(1rem, 1.85vw, 1.75rem) !important;
    height: clamp(1rem, 1.85vw, 1.75rem) !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-icon-link span,
.nav a.nav-icon-link span,
.site-nav a.nav-icon-link span,
.login-link.nav-icon-link span {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    color: currentColor !important;
    font-size: clamp(0.45rem, 0.62vw, 0.68rem) !important;
    font-weight: 1000 !important;
    letter-spacing: 0.025rem !important;
    line-height: 1 !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.header-user-name {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: clamp(5rem, 10vw, 12rem) !important;
    height: clamp(2.5rem, 4vw, 3.5rem) !important;
    border: 1px solid rgba(216, 164, 79, 0.45) !important;
    border-radius: 999rem !important;
    background: rgba(0, 0, 0, 0.22) !important;
    color: #e7b45c !important;
    padding: 0 0.8rem !important;
    overflow: hidden !important;
    font-size: clamp(0.58rem, 0.78vw, 0.84rem) !important;
    font-weight: 1000 !important;
    letter-spacing: 0.03rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .site-header,
    .admin-site-header {
        height: auto !important;
        min-height: 4rem !important;
        gap: 0.35rem !important;
        padding: 0.45rem 0.55rem !important;
    }

    .brand span,
    .admin-site-header .brand strong {
        font-size: 1.05rem !important;
    }

    .brand small,
    .admin-site-header .brand span {
        font-size: 0.52rem !important;
    }

    .nav,
    .site-nav {
        gap: 0.22rem !important;
        flex: 1 1 auto !important;
    }

    .nav-icon-link,
    .nav a.nav-icon-link,
    .site-nav a.nav-icon-link,
    .login-link.nav-icon-link {
        width: clamp(2.35rem, 10vw, 3rem) !important;
        min-width: clamp(2.35rem, 10vw, 3rem) !important;
        height: clamp(2.45rem, 10vw, 3rem) !important;
        padding: 0.22rem 0.12rem !important;
    }

    .nav-icon-link img,
    .nav a.nav-icon-link img,
    .site-nav a.nav-icon-link img,
    .login-link.nav-icon-link img {
        width: clamp(0.95rem, 4.2vw, 1.2rem) !important;
        height: clamp(0.95rem, 4.2vw, 1.2rem) !important;
    }

    .nav-icon-link span,
    .nav a.nav-icon-link span,
    .site-nav a.nav-icon-link span,
    .login-link.nav-icon-link span {
        font-size: clamp(0.38rem, 1.7vw, 0.48rem) !important;
    }

    .header-user-name {
        max-width: clamp(3.9rem, 16vw, 5.4rem) !important;
        height: clamp(2.35rem, 9vw, 2.9rem) !important;
        padding: 0 0.35rem !important;
        font-size: clamp(0.42rem, 1.8vw, 0.55rem) !important;
    }
}




/* 2026-06-02 - Final single-scale header sizing: no mobile breakpoint resizing. */
.site-header {
    --header-height: 5.25rem;
    --header-padding: 0.45rem;
    --header-inner-height: calc(var(--header-height) - (var(--header-padding) * 2));
    --header-button-size: var(--header-inner-height);
    --header-icon-size: calc(var(--header-button-size) * 0.34);
    --header-label-size: calc(var(--header-button-size) * 0.125);

    display: flex !important;
    align-items: center !important;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    max-height: var(--header-height) !important;
    padding: var(--header-padding) 0.75rem !important;
    gap: 0.55rem !important;
    overflow: hidden !important;
}

.site-header .brand,
.brand {
    display: grid !important;
    align-content: center !important;
    flex: 0 0 auto !important;
    width: calc(var(--header-inner-height) * 2.05) !important;
    min-width: calc(var(--header-inner-height) * 2.05) !important;
    max-width: calc(var(--header-inner-height) * 2.05) !important;
    height: var(--header-inner-height) !important;
    min-height: var(--header-inner-height) !important;
    max-height: var(--header-inner-height) !important;
    line-height: 0.78 !important;
    overflow: hidden !important;
}

.site-header .brand span,
.brand span {
    font-size: calc(var(--header-inner-height) * 0.43) !important;
    line-height: 0.78 !important;
}

.site-header .brand small,
.brand small {
    font-size: calc(var(--header-inner-height) * 0.2) !important;
    line-height: 0.8 !important;
}

.site-header .nav,
.site-header .site-nav,
.nav,
.site-nav {
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.45rem !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.site-header .nav-icon-link,
.site-header .nav a.nav-icon-link,
.site-header .site-nav a.nav-icon-link,
.site-header .login-link.nav-icon-link,
.site-header #logoutButton.nav-icon-link {
    display: inline-grid !important;
    grid-template-rows: 1fr auto !important;
    place-items: center !important;
    flex: 0 0 var(--header-button-size) !important;
    width: var(--header-button-size) !important;
    min-width: var(--header-button-size) !important;
    max-width: var(--header-button-size) !important;
    height: var(--header-button-size) !important;
    min-height: var(--header-button-size) !important;
    max-height: var(--header-button-size) !important;
    padding: calc(var(--header-button-size) * 0.11) calc(var(--header-button-size) * 0.08) !important;
    gap: calc(var(--header-button-size) * 0.035) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.site-header .nav-icon-link::before,
.site-header .nav-icon-link::after,
.site-header .login-link::before,
.site-header .login-link::after,
.site-header #logoutButton::before,
.site-header #logoutButton::after {
    content: none !important;
    display: none !important;
}

.site-header .nav-icon-link img,
.site-header .nav a.nav-icon-link img,
.site-header .site-nav a.nav-icon-link img,
.site-header .login-link.nav-icon-link img,
.site-header #logoutButton.nav-icon-link img {
    display: block !important;
    width: var(--header-icon-size) !important;
    min-width: var(--header-icon-size) !important;
    max-width: var(--header-icon-size) !important;
    height: var(--header-icon-size) !important;
    min-height: var(--header-icon-size) !important;
    max-height: var(--header-icon-size) !important;
    object-fit: contain !important;
}

.site-header .nav-icon-link span,
.site-header .nav a.nav-icon-link span,
.site-header .site-nav a.nav-icon-link span,
.site-header .login-link.nav-icon-link span,
.site-header #logoutButton.nav-icon-link span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: var(--header-label-size) !important;
    font-weight: 1000 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-overflow: clip !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.site-header .header-user-name {
    flex: 0 0 auto !important;
    height: var(--header-button-size) !important;
    max-height: var(--header-button-size) !important;
}

/* 2026-06-02 - Premium styled header icon circles with coloured glow centres. */
.site-header {
    background:
        radial-gradient(circle at 18% 50%, rgba(160, 90, 255, 0.16), transparent 22%),
        radial-gradient(circle at 88% 50%, rgba(255, 155, 30, 0.16), transparent 26%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(16, 14, 11, 0.96), rgba(5, 5, 5, 0.98)) !important;
    border-bottom: 1px solid rgba(231, 180, 92, 0.32) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 24px rgba(0, 0, 0, 0.55) !important;
}

.site-header .nav-icon-link,
.site-header .login-link.nav-icon-link,
.site-header #logoutButton.nav-icon-link {
    position: relative !important;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 26%),
        radial-gradient(circle at 50% 58%, var(--nav-glow, rgba(231, 180, 92, 0.34)), transparent 62%),
        linear-gradient(145deg, rgba(28, 20, 8, 0.92), rgba(4, 4, 4, 0.98)) !important;
    border: 1px solid rgba(231, 180, 92, 0.68) !important;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.16),
        inset 0 -10px 18px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.65),
        0 8px 22px rgba(0, 0, 0, 0.45) !important;
}

.site-header .nav-icon-link::before,
.site-header .login-link.nav-icon-link::before,
.site-header #logoutButton.nav-icon-link::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 8% !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.22), transparent 22%),
        radial-gradient(circle at 50% 55%, var(--nav-core, rgba(231, 180, 92, 0.22)), transparent 68%) !important;
    opacity: 0.75 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.site-header .nav-icon-link img,
.site-header .nav-icon-link span,
.site-header .login-link.nav-icon-link img,
.site-header .login-link.nav-icon-link span,
.site-header #logoutButton.nav-icon-link img,
.site-header #logoutButton.nav-icon-link span {
    position: relative !important;
    z-index: 1 !important;
}

.site-header .nav-icon-link img,
.site-header .login-link.nav-icon-link img,
.site-header #logoutButton.nav-icon-link img {
    filter:
        drop-shadow(0 0 4px rgba(255, 220, 130, 0.75))
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)) !important;
}

.site-header .nav-icon-link span,
.site-header .login-link.nav-icon-link span,
.site-header #logoutButton.nav-icon-link span {
    color: #ffd36a !important;
    text-shadow:
        0 0 6px rgba(255, 211, 106, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.9) !important;
}

.site-header .nav-icon-link[href*="services"] {
    --nav-glow: rgba(255, 155, 30, 0.36);
    --nav-core: rgba(255, 155, 30, 0.28);
}

.site-header .nav-icon-link[href*="work"] {
    --nav-glow: rgba(255, 190, 80, 0.36);
    --nav-core: rgba(255, 190, 80, 0.28);
}

.site-header .nav-icon-link[href*="stats"],
.site-header .nav-icon-link[href*="impact"] {
    --nav-glow: rgba(70, 220, 95, 0.34);
    --nav-core: rgba(70, 220, 95, 0.25);
}

.site-header .nav-icon-link[href*="contact"] {
    --nav-glow: rgba(0, 175, 255, 0.36);
    --nav-core: rgba(0, 175, 255, 0.26);
}

.site-header .admin-menu-link {
    --nav-glow: rgba(130, 55, 255, 0.4);
    --nav-core: rgba(130, 55, 255, 0.3);
}

.site-header .super-menu-link {
    --nav-glow: rgba(255, 40, 130, 0.46);
    --nav-core: rgba(255, 40, 130, 0.34);
}

.site-header #logoutButton.nav-icon-link {
    --nav-glow: rgba(255, 55, 35, 0.4);
    --nav-core: rgba(255, 55, 35, 0.3);
}

.site-header .nav-icon-link:hover,
.site-header .login-link.nav-icon-link:hover,
.site-header #logoutButton.nav-icon-link:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(255, 224, 140, 0.95) !important;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.22),
        inset 0 -10px 18px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.65),
        0 10px 24px rgba(0, 0, 0, 0.58),
        0 0 24px var(--nav-glow, rgba(231, 180, 92, 0.55)) !important;
}

.site-header .header-user-name {
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(32, 22, 8, 0.95), rgba(4, 4, 4, 0.98)) !important;
    border-color: rgba(231, 180, 92, 0.78) !important;
    color: #ffd36a !important;
    text-shadow: 0 0 6px rgba(255, 211, 106, 0.38) !important;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.14),
        inset 0 -10px 18px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(231, 180, 92, 0.24) !important;
}

/* 2026-06-02 - Refined premium header icons with deeper coloured centres, sharper gold rim, and brighter icon/text contrast. */
.site-header .nav-icon-link,
.site-header .login-link.nav-icon-link,
.site-header #logoutButton.nav-icon-link {
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.28), transparent 18%),
        radial-gradient(circle at 50% 54%, var(--nav-core, rgba(231, 180, 92, 0.55)), transparent 58%),
        radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0.92), transparent 78%),
        linear-gradient(145deg, rgba(28, 20, 8, 0.98), rgba(2, 2, 2, 1)) !important;
    border: 1px solid rgba(255, 205, 92, 0.9) !important;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.22),
        inset 0 -13px 18px rgba(0, 0, 0, 0.75),
        inset 0 0 18px var(--nav-glow, rgba(231, 180, 92, 0.35)),
        0 0 0 1px rgba(0, 0, 0, 0.85),
        0 7px 18px rgba(0, 0, 0, 0.6),
        0 0 14px var(--nav-glow, rgba(231, 180, 92, 0.28)) !important;
}

.site-header .nav-icon-link::before,
.site-header .login-link.nav-icon-link::before,
.site-header #logoutButton.nav-icon-link::before {
    inset: 10% !important;
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.32), transparent 18%),
        radial-gradient(circle at 50% 48%, var(--nav-core, rgba(231, 180, 92, 0.45)), transparent 58%),
        radial-gradient(circle at 50% 82%, rgba(0, 0, 0, 0.96), transparent 76%) !important;
    opacity: 1 !important;
}

.site-header .nav-icon-link img,
.site-header .login-link.nav-icon-link img,
.site-header #logoutButton.nav-icon-link img {
    transform: scale(1.08) !important;
    filter:
        brightness(1.18)
        saturate(1.2)
        drop-shadow(0 0 5px rgba(255, 220, 120, 0.9))
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.9)) !important;
}

.site-header .nav-icon-link span,
.site-header .login-link.nav-icon-link span,
.site-header #logoutButton.nav-icon-link span {
    color: #ffd96f !important;
    text-shadow:
        0 0 7px rgba(255, 217, 111, 0.7),
        0 1px 2px rgba(0, 0, 0, 1) !important;
}

.site-header .nav-icon-link[href*="services"] {
    --nav-glow: rgba(255, 156, 26, 0.62);
    --nav-core: rgba(255, 149, 20, 0.68);
}

.site-header .nav-icon-link[href*="work"] {
    --nav-glow: rgba(255, 190, 80, 0.58);
    --nav-core: rgba(255, 177, 50, 0.62);
}

.site-header .nav-icon-link[href*="stats"],
.site-header .nav-icon-link[href*="impact"] {
    --nav-glow: rgba(70, 230, 95, 0.56);
    --nav-core: rgba(45, 175, 65, 0.62);
}

.site-header .nav-icon-link[href*="contact"] {
    --nav-glow: rgba(0, 175, 255, 0.58);
    --nav-core: rgba(0, 145, 215, 0.64);
}

.site-header .admin-menu-link {
    --nav-glow: rgba(130, 55, 255, 0.72);
    --nav-core: rgba(105, 42, 220, 0.66);
}

.site-header .super-menu-link {
    --nav-glow: rgba(255, 35, 135, 0.75);
    --nav-core: rgba(220, 25, 105, 0.7);
}

.site-header #logoutButton.nav-icon-link {
    --nav-glow: rgba(255, 70, 30, 0.7);
    --nav-core: rgba(215, 48, 22, 0.68);
}

.site-header .header-user-name {
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 56%, rgba(255, 180, 60, 0.28), transparent 62%),
        linear-gradient(145deg, rgba(24, 16, 6, 0.98), rgba(2, 2, 2, 1)) !important;
    border-color: rgba(255, 205, 92, 0.9) !important;
    color: #ffd96f !important;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.18),
        inset 0 -13px 18px rgba(0, 0, 0, 0.72),
        0 0 16px rgba(255, 190, 70, 0.34) !important;
}

/* 2026-06-02 - Made premium nav buttons slightly smaller and oblong so text fits and hover no longer clips. */
.site-header {
    --header-button-width: calc(var(--header-button-size) * 1.16) !important;
    overflow: visible !important;
}

.site-header .nav,
.site-header .site-nav {
    overflow: visible !important;
}

.site-header .nav-icon-link,
.site-header .login-link.nav-icon-link,
.site-header #logoutButton.nav-icon-link {
    flex-basis: var(--header-button-width) !important;
    width: var(--header-button-width) !important;
    min-width: var(--header-button-width) !important;
    max-width: var(--header-button-width) !important;
    height: calc(var(--header-button-size) * 0.9) !important;
    min-height: calc(var(--header-button-size) * 0.9) !important;
    max-height: calc(var(--header-button-size) * 0.9) !important;
    border-radius: 999rem !important;
    padding: calc(var(--header-button-size) * 0.09) calc(var(--header-button-size) * 0.13) !important;
}

.site-header .nav-icon-link img,
.site-header .login-link.nav-icon-link img,
.site-header #logoutButton.nav-icon-link img {
    width: calc(var(--header-icon-size) * 0.92) !important;
    min-width: calc(var(--header-icon-size) * 0.92) !important;
    max-width: calc(var(--header-icon-size) * 0.92) !important;
    height: calc(var(--header-icon-size) * 0.92) !important;
    min-height: calc(var(--header-icon-size) * 0.92) !important;
    max-height: calc(var(--header-icon-size) * 0.92) !important;
}

.site-header .nav-icon-link span,
.site-header .login-link.nav-icon-link span,
.site-header #logoutButton.nav-icon-link span {
    font-size: calc(var(--header-label-size) * 0.92) !important;
    text-overflow: clip !important;
}

.site-header .nav-icon-link:hover,
.site-header .login-link.nav-icon-link:hover,
.site-header #logoutButton.nav-icon-link:hover {
    transform: translateY(0) scale(1.025) !important;
}

/* 2026-06-02 - Mobile header uses swipe/tap expandable two-row icon menu. */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 760px) {
    .site-header {
        height: 4.9rem !important;
        min-height: 4.9rem !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        height: 3rem;
        min-width: 4.4rem;
        margin-left: auto;
        border: 1px solid rgba(255, 205, 92, 0.8);
        border-radius: 999rem;
        background: radial-gradient(circle at 50% 45%, rgba(255, 190, 70, 0.26), rgba(0, 0, 0, 0.95));
        color: #ffd96f;
        font-size: 0.7rem;
        font-weight: 1000;
        letter-spacing: 0.06rem;
        text-transform: uppercase;
        box-shadow: 0 0 14px rgba(255, 190, 70, 0.28);
        z-index: 30;
    }

    .site-header .nav {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 4.9rem !important;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 0.45rem !important;
        padding: 0.55rem !important;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(8, 6, 3, 0.96)) !important;
        border-bottom: 1px solid rgba(255, 205, 92, 0.35) !important;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.75) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-0.6rem) !important;
        transition: opacity 0.18s ease, transform 0.18s ease !important;
        z-index: 25 !important;
    }

    body.mobile-menu-open .site-header .nav {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .site-header .nav-icon-link,
    .site-header .login-link.nav-icon-link,
    .site-header #logoutButton.nav-icon-link {
        justify-self: center !important;
        width: 4.4rem !important;
        min-width: 4.4rem !important;
        max-width: 4.4rem !important;
        height: 3.85rem !important;
        min-height: 3.85rem !important;
        max-height: 3.85rem !important;
        border-radius: 1.25rem !important;
    }

    .site-header .nav-icon-link span,
    .site-header .login-link.nav-icon-link span,
    .site-header #logoutButton.nav-icon-link span {
        font-size: 0.5rem !important;
    }
}
