* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #09070f;
    color: #ffffff;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}


/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(9, 7, 15, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
}

.navbar-inner {
    width: min(1200px, calc(100% - 40px));
    min-height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;

    color: #ffffff;

    font-weight: 800;
    font-size: 18px;

    text-decoration: none;
}

.navbar-brand-text {
    white-space: nowrap;
}

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.navbar-link {
    color: #cfcbd8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: #ffffff;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.navbar-actions .btn {
    min-width: unset;

    padding: 11px 18px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;
}

.navbar-actions .btn.primary {
    border: 0;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #9333ea
        );

    color: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(124, 58, 237, 0.22);
}

.navbar-actions .btn.primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(124, 58, 237, 0.35);
}

.navbar-actions .btn.secondary {
    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    background:
        rgba(255, 255, 255, 0.05);

    color: #dedbe5;
}

.navbar-actions .btn.secondary:hover {
    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.20);
}

#staffPanelNav[hidden],
#logoutButton[hidden] {
    display: none !important;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 140px 20px 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(124, 58, 237, 0.24),
            transparent 38%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(147, 51, 234, 0.17),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #0d0916 0%,
            #09070f 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.hero-overlay {
    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.08);

    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;
    margin-bottom: 24px;

    border:
        1px solid
        rgba(168, 85, 247, 0.35);

    border-radius: 999px;

    background:
        rgba(124, 58, 237, 0.10);

    color: #c084fc;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.hero h1 {
    font-size:
        clamp(50px, 8vw, 92px);

    line-height: 0.98;

    letter-spacing: -4px;

    margin-bottom: 26px;
}

.hero h1 span {
    display: inline-block;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #b46cff 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;

    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 700px;

    margin: 0 auto;

    color: #aaa5b7;

    font-size: 18px;
}

.hero-buttons {
    margin-top: 34px;

    display: flex;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* ========================================
   BUTTONS
======================================== */

.btn {
    min-width: 155px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 14px 22px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #9333ea
        );

    box-shadow:
        0 12px 35px
        rgba(124, 58, 237, 0.25);
}

.btn.secondary {
    border:
        1px solid
        rgba(255,255,255,0.14);

    background:
        rgba(255,255,255,0.05);

    color: #dedbe5;
}


/* ========================================
   FEATURES
======================================== */

.features {
    padding: 110px 20px;

    background: #09070f;
}

.section-heading {
    width: min(700px, 100%);

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading span,
.cta-content > span {
    color: #a855f7;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.section-heading h2,
.cta h2 {
    margin-top: 10px;

    font-size:
        clamp(34px, 5vw, 54px);

    letter-spacing: -2px;
}

.section-heading p,
.cta p {
    margin-top: 15px;

    color: #9993a5;
}

.feature-grid {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    overflow: hidden;
}

.feature-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -50px;
    bottom: -70px;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.12);

    filter: blur(18px);
}

.feature-number {
    margin-bottom: 40px;

    color: #a855f7;

    font-size: 13px;
    font-weight: 900;
}

.feature-card h3 {
    margin-bottom: 10px;

    font-size: 23px;
}

.feature-card p {
    position: relative;
    z-index: 2;

    color: #9892a4;

    font-size: 15px;
}


/* ========================================
   CTA
======================================== */

.cta {
    padding: 40px 20px 110px;

    background: #09070f;
}

.cta-content {
    width: min(1050px, 100%);

    margin: 0 auto;

    padding: 70px 30px;

    text-align: center;

    border-radius: 24px;

    border:
        1px solid
        rgba(168, 85, 247, 0.24);

    background:
        radial-gradient(
            circle at center top,
            rgba(124, 58, 237, 0.20),
            transparent 55%
        ),
        rgba(255,255,255,0.025);
}

.cta-content .btn {
    margin-top: 28px;
}


/* ========================================
   FOOTER
======================================== */

footer {
    border-top:
        1px solid
        rgba(255,255,255,0.07);

    background: #07050b;
}

.footer-container {
    width:
        min(
            1200px,
            calc(100% - 40px)
        );

    min-height: 120px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    font-weight: 800;
}

.footer-brand img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

footer p {
    color: #777180;

    font-size: 13px;
}


/* ========================================
   DASHBOARD
======================================== */

.dashboard-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top left,
            rgba(124, 58, 237, 0.16),
            transparent 34%
        ),
        #09070f;

    padding-top: 76px;
}

.dashboard-header {
    padding: 85px 20px 35px;
}

.dashboard-container {
    width: min(1180px, 100%);

    margin: 0 auto;
}

.dashboard-eyebrow,
.card-label {
    color: #a855f7;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.dashboard-header h1 {
    margin-top: 8px;

    font-size:
        clamp(38px, 6vw, 62px);

    letter-spacing: -2px;
}

.dashboard-header p {
    margin-top: 12px;

    max-width: 620px;

    color: #9c96a8;
}

.dashboard-content {
    padding: 20px 20px 100px;
}

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.dashboard-card {
    min-height: 260px;

    padding: 28px;

    border-radius: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.dashboard-card h2 {
    margin-top: 24px;

    font-size: 26px;
}

.dashboard-card p {
    margin-top: 10px;

    color: #928c9d;
}

.dashboard-link {
    display: inline-block;

    margin-top: 28px;

    color: #c084fc;

    font-weight: 700;
}

.profile-placeholder {
    display: flex;
    align-items: center;

    gap: 16px;

    margin: 24px 0;
}

.profile-avatar {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #9333ea
        );

    font-weight: 900;
    font-size: 20px;
}

.profile-placeholder h2 {
    margin: 0;

    font-size: 20px;
}

.profile-placeholder p {
    margin-top: 4px;
}


/* ========================================
   DASHBOARD - RECENT APPLICATIONS
======================================== */

.dashboard-applications-panel {
    margin-top: 24px;

    padding: 28px;

    border-radius: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
}

.dashboard-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 20px;
}

.dashboard-panel-heading h2 {
    margin-top: 6px;

    font-size: 25px;

    letter-spacing: -0.6px;
}

.dashboard-panel-heading p {
    margin-top: 6px;

    color: #8e8899;

    font-size: 13px;
}

.dashboard-panel-heading .dashboard-link {
    margin-top: 0;

    flex-shrink: 0;
}

.dashboard-application-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.018);

    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.dashboard-application-row:hover {
    background:
        rgba(255, 255, 255, 0.028);

    border-color:
        rgba(124, 92, 255, 0.16);
}

.dashboard-application-row + .dashboard-application-row {
    margin-top: 9px;
}

.dashboard-application-main {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;
}

.dashboard-application-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    border:
        1px solid
        rgba(124, 92, 255, 0.18);

    background:
        rgba(124, 92, 255, 0.09);

    color: #c7b9ff;

    font-size: 13px;
    font-weight: 900;
}

.dashboard-application-main h3 {
    margin: 0;

    color: #f0eef5;

    font-size: 14px;
    font-weight: 800;
}

.dashboard-application-main p {
    margin-top: 4px;

    color: #777180;

    font-size: 11px;
}

.dashboard-application-status {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.dashboard-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.45px;

    text-transform: uppercase;
}

.dashboard-status-badge.pending {
    color: #c4b5fd;

    background:
        rgba(124, 92, 255, 0.08);

    border:
        1px solid
        rgba(124, 92, 255, 0.17);
}

.dashboard-status-badge.interview {
    color: #fde68a;

    background:
        rgba(234, 179, 8, 0.07);

    border:
        1px solid
        rgba(234, 179, 8, 0.15);
}

.dashboard-status-badge.on-hold {
    color: #cbd5e1;

    background:
        rgba(148, 163, 184, 0.06);

    border:
        1px solid
        rgba(148, 163, 184, 0.14);
}

.dashboard-status-badge.accepted {
    color: #9ae6b4;

    background:
        rgba(34, 197, 94, 0.07);

    border:
        1px solid
        rgba(34, 197, 94, 0.16);
}

.dashboard-status-badge.declined {
    color: #fca5a5;

    background:
        rgba(239, 68, 68, 0.06);

    border:
        1px solid
        rgba(239, 68, 68, 0.16);
}

.dashboard-applications-loading,
.dashboard-applications-empty {
    padding: 28px;

    border:
        1px dashed
        rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.01);

    color: #777180;

    text-align: center;

    font-size: 13px;
}

.dashboard-applications-empty h3 {
    color: #d8d4df;

    font-size: 16px;
}

.dashboard-applications-empty p {
    margin-top: 5px;

    color: #777180;

    font-size: 12px;
}


/* ========================================
   STAFF PANEL
======================================== */

.staff-shell {
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        250px 1fr;

    padding-top: 76px;

    background: #09090d;

    color: #f5f5f7;
}

.staff-sidebar {
    border-right:
        1px solid
        rgba(255, 255, 255, 0.07);

    background: #0d0d12;

    padding: 28px 18px;

    position: sticky;

    top: 76px;

    height:
        calc(100vh - 76px);

    overflow-y: auto;
}

.staff-sidebar-header {
    padding: 0 10px 24px;
}

.staff-sidebar-label,
.staff-eyebrow,
.staff-nav-section > span,
.staff-section-heading > span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #8b8b95;
}

.staff-sidebar-header h2 {
    margin: 6px 0 0;

    font-size: 20px;
}

.staff-sidebar-nav {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.staff-nav-section {
    margin-top: 22px;

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.staff-nav-section > span {
    padding: 0 10px 8px;
}

.staff-nav-item {
    width: 100%;

    border: 0;

    background: transparent;

    color: #b6b6c0;

    text-align: left;

    padding: 11px 12px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.18s ease;
}

.staff-nav-item:hover {
    background:
        rgba(255, 255, 255, 0.05);

    color: #ffffff;
}

.staff-nav-item.active {
    background:
        rgba(139, 92, 246, 0.12);

    color: #ffffff;

    box-shadow:
        inset 3px 0 0 #8b5cf6;
}

.staff-main {
    min-width: 0;

    padding: 34px 38px 60px;
}

.staff-access-state {
    padding-top: 60px;
}

.staff-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 28px;
}

.staff-topbar h1 {
    margin: 6px 0 0;

    font-size: 34px;

    letter-spacing: -1px;
}

.staff-topbar-actions input {
    width: 280px;
    max-width: 100%;

    padding: 12px 14px;

    border-radius: 10px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background: #121218;

    color: #ffffff;

    outline: none;
}

.staff-topbar-actions input:focus {
    border-color:
        rgba(139, 92, 246, 0.7);
}

.staff-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 24px;
}

.staff-stat {
    padding: 20px;

    border-radius: 14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    background: #111117;
}

.staff-stat span {
    display: block;

    color: #8d8d98;

    font-size: 12px;

    margin-bottom: 10px;
}

.staff-stat strong {
    font-size: 30px;

    line-height: 1;
}

.staff-dashboard-panel,
#staffQueueView {
    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background: #101015;

    padding: 22px;
}

.staff-section-heading {
    margin-bottom: 18px;
}

.staff-section-heading h2 {
    margin: 5px 0 0;

    font-size: 22px;
}

.staff-section-heading p {
    margin-top: 6px;

    color: #8f8f99;

    font-size: 14px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .staff-shell {
        grid-template-columns:
            210px 1fr;
    }

    .staff-stat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .navbar-inner {
        width:
            min(
                100% - 24px,
                1200px
            );

        gap: 16px;
    }

    .navbar-links {
        gap: 16px;
    }

    .navbar-link {
        font-size: 13px;
    }

    .navbar-actions .btn {
        padding: 10px 13px;

        font-size: 12px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 760px) {

    .staff-shell {
        grid-template-columns: 1fr;
    }

    .staff-sidebar {
        position: static;

        height: auto;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.07);
    }

    .staff-main {
        padding: 24px 18px 50px;
    }

    .staff-topbar {
        align-items: stretch;

        flex-direction: column;
    }

    .staff-topbar-actions input {
        width: 100%;
    }

    .staff-stat-grid {
        grid-template-columns:
            1fr 1fr;
    }
}


@media (max-width: 720px) {

    .navbar-links {
        display: none;
    }

    .navbar-brand {
        font-size: 16px;
    }
}


@media (max-width: 600px) {

    .navbar-inner {
        width:
            min(
                100% - 24px,
                1200px
            );
    }

    .navbar-brand-text {
        font-size: 15px;
    }

    .navbar-actions {
        gap: 6px;
    }

    .navbar-actions .btn {
        padding: 10px 12px;

        font-size: 12px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        padding: 28px 0;

        flex-direction: column;

        text-align: center;
    }

    .dashboard-applications-panel {
        padding: 18px;
    }

    .dashboard-application-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-application-status {
        padding-left: 56px;
    }
}
/* ==========================================================
   UNION ROLEPLAY - PREMIUM VISUAL POLISH
========================================================== */

:root {
    --union-purple: #8b5cf6;
    --union-purple-bright: #a855f7;
    --union-purple-soft: rgba(139, 92, 246, 0.14);

    --union-surface: #111117;
    --union-border: rgba(255, 255, 255, 0.075);

    --mouse-x: 50vw;
    --mouse-y: 50vh;
}


/* ==========================================================
   GLOBAL SELECTION
========================================================== */

::selection {
    background: rgba(139, 92, 246, 0.38);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(139, 92, 246, 0.38);
    color: #ffffff;
}


/* ==========================================================
   CUSTOM SCROLLBAR
========================================================== */

html {
    scrollbar-width: thin;
    scrollbar-color:
        rgba(139, 92, 246, 0.55)
        #09070f;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #09070f;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #09070f;
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #7c3aed,
            #9333ea
        );
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(
            180deg,
            #8b5cf6,
            #a855f7
        );
}


/* ==========================================================
   BACKGROUND DEPTH
========================================================== */

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(124, 58, 237, 0.055),
            transparent 26%
        ),
        radial-gradient(
            circle at 85% 45%,
            rgba(168, 85, 247, 0.035),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(124, 58, 237, 0.045),
            transparent 35%
        );
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: 0.32;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 82%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 82%
        );
}


/* ==========================================================
   NAVBAR POLISH
========================================================== */

.navbar {
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -1px;

    width: min(850px, 80%);
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 92, 246, 0.35),
            transparent
        );

    opacity: 0.55;
}

.navbar.scrolled {
    background:
        rgba(8, 6, 13, 0.97);

    border-color:
        rgba(139, 92, 246, 0.10);

    box-shadow:
        0 12px 45px
        rgba(0, 0, 0, 0.28);
}


/* NAV LINKS */

.navbar-link {
    position: relative;
}

.navbar-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #a855f7
        );

    box-shadow:
        0 0 12px
        rgba(139, 92, 246, 0.5);

    transition:
        width 0.2s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 18px;
}


/* BRAND */

.navbar-brand-text {
    background:
        linear-gradient(
            100deg,
            #ffffff 20%,
            #ffffff 45%,
            #c4a5ff 55%,
            #ffffff 70%
        );

    background-size:
        220% auto;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation:
        unionBrandShimmer
        7s linear infinite;
}

@keyframes unionBrandShimmer {
    0% {
        background-position:
            200% center;
    }

    100% {
        background-position:
            -20% center;
    }
}


/* ==========================================================
   BUTTON POLISH
========================================================== */

.btn {
    position: relative;
    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.btn::before {
    content: "";

    position: absolute;

    top: -40%;
    left: -80%;

    width: 50%;
    height: 180%;

    transform:
        rotate(20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent
        );

    transition:
        left 0.55s ease;

    pointer-events: none;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.05);
}

.btn:active {
    transform:
        translateY(0)
        scale(0.985);
}

.btn.primary:hover {
    box-shadow:
        0 14px 42px
        rgba(124, 58, 237, 0.34),
        0 0 0 1px
        rgba(168, 85, 247, 0.08);
}

.btn.secondary:hover {
    background:
        rgba(255, 255, 255, 0.075);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   HERO POLISH
========================================================== */

.hero-overlay {
    animation:
        unionHeroGlow
        9s ease-in-out infinite;
}

@keyframes unionHeroGlow {
    0%,
    100% {
        transform:
            translate3d(
                -20px,
                10px,
                0
            )
            scale(1);
    }

    50% {
        transform:
            translate3d(
                25px,
                -18px,
                0
            )
            scale(1.08);
    }
}


.hero-badge {
    position: relative;

    box-shadow:
        0 0 35px
        rgba(124, 58, 237, 0.08);

    animation:
        unionBadgeFloat
        5s ease-in-out infinite;
}

@keyframes unionBadgeFloat {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-4px);
    }
}


.hero h1 {
    text-shadow:
        0 12px 40px
        rgba(0, 0, 0, 0.25);
}

.hero h1 span {
    background-size:
        180% auto;

    animation:
        unionHeroText
        7s ease-in-out infinite;
}

@keyframes unionHeroText {
    0%,
    100% {
        background-position:
            0% center;
    }

    50% {
        background-position:
            100% center;
    }
}


/* ==========================================================
   PREMIUM CARD EFFECT
========================================================== */

.feature-card,
.dashboard-card,
.dashboard-applications-panel,
.dashboard-application-row,
.staff-stat,
.staff-dashboard-panel {
    position: relative;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}


/* FEATURE CARDS */

.feature-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(139, 92, 246, 0.24);

    box-shadow:
        0 22px 55px
        rgba(0, 0, 0, 0.22),
        0 0 35px
        rgba(124, 58, 237, 0.055);
}

.feature-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(
            500px circle
            at var(--card-x, 50%)
            var(--card-y, 50%),
            rgba(139, 92, 246, 0.10),
            transparent 45%
        );

    transition:
        opacity 0.25s ease;
}

.feature-card:hover::before {
    opacity: 1;
}


/* DASHBOARD CARDS */

.dashboard-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(139, 92, 246, 0.22);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.18);
}

.dashboard-applications-panel:hover {
    border-color:
        rgba(139, 92, 246, 0.16);
}

.dashboard-application-row:hover {
    transform:
        translateX(3px);

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.14);
}


/* STAFF STATS */

.staff-stat:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(139, 92, 246, 0.18);

    box-shadow:
        0 14px 38px
        rgba(0, 0, 0, 0.16);
}


/* ==========================================================
   LINKS
========================================================== */

.dashboard-link {
    position: relative;

    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.dashboard-link:hover {
    color: #d8b4fe;

    transform:
        translateX(3px);
}


/* ==========================================================
   PROFILE AVATAR
========================================================== */

.profile-avatar {
    position: relative;

    box-shadow:
        0 0 0 4px
        rgba(124, 58, 237, 0.05),
        0 10px 30px
        rgba(124, 58, 237, 0.16);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.profile-avatar:hover {
    transform:
        scale(1.05);

    box-shadow:
        0 0 0 5px
        rgba(124, 58, 237, 0.08),
        0 12px 38px
        rgba(124, 58, 237, 0.25);
}


/* ==========================================================
   STATUS BADGES
========================================================== */

.dashboard-status-badge {
    position: relative;

    transition:
        transform 0.18s ease,
        filter 0.18s ease;
}

.dashboard-status-badge:hover {
    transform:
        translateY(-1px);

    filter:
        brightness(1.12);
}


/* ==========================================================
   INPUT POLISH
========================================================== */

input,
textarea,
select {
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow:
        0 0 0 3px
        rgba(139, 92, 246, 0.07);
}


/* ==========================================================
   CTA PREMIUM EFFECT
========================================================== */

.cta-content {
    position: relative;
    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-content::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -280px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(139, 92, 246, 0.18);

    filter:
        blur(80px);

    pointer-events: none;
}

.cta-content:hover {
    border-color:
        rgba(168, 85, 247, 0.35);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   FOOTER
========================================================== */

footer {
    position: relative;
}

footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: min(700px, 70%);
    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 92, 246, 0.32),
            transparent
        );
}


/* ==========================================================
   PAGE LOAD ANIMATION
========================================================== */

@keyframes unionPageEntrance {
    from {
        opacity: 0;
        transform:
            translateY(8px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

main {
    animation:
        unionPageEntrance
        0.5s ease both;
}


/* ==========================================================
   SUBTLE HEADING ENTRANCE
========================================================== */

.hero-content,
.dashboard-header > .dashboard-container,
.section-heading {
    animation:
        unionHeadingEntrance
        0.65s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        )
        both;
}

@keyframes unionHeadingEntrance {
    from {
        opacity: 0;

        transform:
            translateY(14px)
            scale(0.995);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* ==========================================================
   FEATURE CARD LOAD STAGGER
========================================================== */

.feature-card {
    animation:
        unionCardEntrance
        0.6s ease both;
}

.feature-card:nth-child(1) {
    animation-delay:
        0.05s;
}

.feature-card:nth-child(2) {
    animation-delay:
        0.12s;
}

.feature-card:nth-child(3) {
    animation-delay:
        0.19s;
}

@keyframes unionCardEntrance {
    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ==========================================================
   LOADING SHIMMER UTILITY
========================================================== */

.union-skeleton {
    position: relative;

    overflow: hidden;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.035);
}

.union-skeleton::after {
    content: "";

    position: absolute;
    inset: 0;

    transform:
        translateX(-100%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.055),
            transparent
        );

    animation:
        unionSkeleton
        1.5s infinite;
}

@keyframes unionSkeleton {
    100% {
        transform:
            translateX(100%);
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.001ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.001ms !important;
    }
}
/* ==========================================================
   UNION ROLEPLAY - DARK NEUTRAL THEME OVERRIDES
========================================================== */

:root {
    --union-bg: #08090c;
    --union-bg-soft: #0c0d11;

    --union-surface: #111216;
    --union-surface-raised: #15161b;
    --union-surface-hover: #191a20;

    --union-border: rgba(255, 255, 255, 0.07);
    --union-border-strong: rgba(255, 255, 255, 0.11);

    --union-text: #f4f4f5;
    --union-text-soft: #c7c8ce;
    --union-muted: #858791;

    --union-accent: #8b5cf6;
    --union-accent-bright: #a78bfa;
    --union-accent-soft: rgba(139, 92, 246, 0.10);
}


/* GLOBAL */

body {
    background: var(--union-bg);
    color: var(--union-text);
}

body::before {
    opacity: 0.16;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 255, 255, 0.035),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(139, 92, 246, 0.025),
            transparent 30%
        );
}

body::after {
    opacity: 0.14;
}


/* NAVBAR */

.navbar {
    background:
        rgba(8, 9, 12, 0.92);

    border-bottom:
        1px solid
        var(--union-border);

    box-shadow: none;
}

.navbar.scrolled {
    background:
        rgba(8, 9, 12, 0.98);

    border-color:
        var(--union-border);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.22);
}

.navbar::after {
    opacity: 0.2;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );
}

.navbar-brand-text {
    background: none;

    color: #ffffff;
    -webkit-text-fill-color: currentColor;

    animation: none;
}

.navbar-link {
    color: #a7a8b0;
}

.navbar-link:hover,
.navbar-link.active {
    color: #ffffff;
}

.navbar-link::after {
    background: var(--union-accent);

    box-shadow: none;
}


/* HERO */

.hero {
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(255, 255, 255, 0.035),
            transparent 34%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(139, 92, 246, 0.04),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #0b0c10 0%,
            #08090c 100%
        );
}

.hero-overlay {
    opacity: 0.22;

    background:
        rgba(139, 92, 246, 0.06);

    filter: blur(110px);
}

.hero-badge {
    background:
        rgba(255, 255, 255, 0.025);

    border-color:
        rgba(255, 255, 255, 0.09);

    color:
        #b7b9c2;

    box-shadow: none;
}

.hero h1 {
    color: #ffffff;

    text-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.22);
}

.hero h1 span {
    background:
        linear-gradient(
            135deg,
            #ffffff 15%,
            #d7d8dd 85%
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: none;
}

.hero p {
    color: #989aa4;
}


/* BUTTONS */

.btn.primary,
.navbar-actions .btn.primary {
    background:
        #7c3aed;

    box-shadow:
        0 10px 24px
        rgba(124, 58, 237, 0.16);
}

.btn.primary:hover,
.navbar-actions .btn.primary:hover {
    background:
        #8b5cf6;

    box-shadow:
        0 12px 28px
        rgba(124, 58, 237, 0.22);
}

.btn.secondary,
.navbar-actions .btn.secondary {
    background:
        rgba(255, 255, 255, 0.025);

    border-color:
        rgba(255, 255, 255, 0.10);

    color:
        #d0d1d7;
}

.btn.secondary:hover,
.navbar-actions .btn.secondary:hover {
    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.16);
}


/* FEATURES */

.features {
    background:
        var(--union-bg);
}

.feature-card {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.022),
            rgba(255, 255, 255, 0.008)
        ),
        var(--union-surface);

    border-color:
        var(--union-border);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.10);
}

.feature-card:hover {
    border-color:
        rgba(255, 255, 255, 0.13);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.20);

    transform:
        translateY(-4px);
}

.feature-card::before {
    opacity: 0 !important;
}

.feature-card::after {
    background:
        rgba(139, 92, 246, 0.055);
}

.feature-number {
    color:
        #9f86e8;
}

.feature-card h3 {
    color:
        #f4f4f5;
}

.feature-card p {
    color:
        #8f919a;
}


/* SECTION HEADINGS */

.section-heading span,
.cta-content > span,
.dashboard-eyebrow,
.card-label {
    color:
        #9d85df;
}

.section-heading h2,
.cta h2 {
    color:
        #f4f4f5;
}

.section-heading p,
.cta p {
    color:
        #8b8d96;
}


/* CTA */

.cta {
    background:
        var(--union-bg);
}

.cta-content {
    border-color:
        var(--union-border);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.008)
        ),
        #0f1014;

    box-shadow:
        0 16px 45px
        rgba(0, 0, 0, 0.12);
}

.cta-content::before {
    opacity: 0.18;
}

.cta-content:hover {
    border-color:
        rgba(255, 255, 255, 0.11);

    box-shadow:
        0 22px 55px
        rgba(0, 0, 0, 0.18);
}


/* DASHBOARD */

.dashboard-page {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(255, 255, 255, 0.025),
            transparent 28%
        ),
        var(--union-bg);
}

.dashboard-card,
.dashboard-applications-panel {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.007)
        ),
        var(--union-surface);

    border-color:
        var(--union-border);
}

.dashboard-card:hover,
.dashboard-applications-panel:hover {
    border-color:
        var(--union-border-strong);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.17);
}

.dashboard-link {
    color:
        #a78bfa;
}

.dashboard-link:hover {
    color:
        #c4b5fd;
}


/* APPLICATION ROWS */

.dashboard-application-row {
    background:
        #121318;

    border-color:
        rgba(255, 255, 255, 0.055);
}

.dashboard-application-row:hover {
    background:
        #16171c;

    border-color:
        rgba(255, 255, 255, 0.09);
}


/* STAFF */

.staff-shell {
    background:
        var(--union-bg);
}

.staff-sidebar {
    background:
        #0d0e12;

    border-color:
        var(--union-border);
}

.staff-nav-item.active {
    background:
        rgba(139, 92, 246, 0.08);

    box-shadow:
        inset 3px 0 0
        var(--union-accent);
}

.staff-stat,
.staff-dashboard-panel,
#staffQueueView {
    background:
        var(--union-surface);

    border-color:
        var(--union-border);
}

.staff-stat:hover {
    border-color:
        rgba(255, 255, 255, 0.11);

    box-shadow:
        0 14px 36px
        rgba(0, 0, 0, 0.16);
}


/* INPUTS */

input,
textarea,
select {
    background:
        #0e0f13;

    border-color:
        rgba(255, 255, 255, 0.07);

    color:
        #ffffff;
}

input:focus,
textarea:focus,
select:focus {
    border-color:
        rgba(139, 92, 246, 0.35);

    box-shadow:
        0 0 0 3px
        rgba(139, 92, 246, 0.045);
}


/* FOOTER */

footer {
    background:
        #07080a;

    border-color:
        var(--union-border);
}

footer::before {
    opacity:
        0.25;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );
}
/* ==========================================================
   UNION ROLEPLAY - ADVANCED HOMEPAGE HERO
========================================================== */

.hero {
    min-height: 100vh;

    padding:
        150px 20px
        100px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 255, 255, 0.045),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #0b0c0f 0%,
            #08090c 100%
        );
}


/* CENTRAL LIGHT */

.hero::after {
    content: "";

    position: absolute;

    width: 1px;
    height: 420px;

    left: 50%;
    top: 90px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent
        );

    opacity: 0.6;

    pointer-events: none;
}


/* SIDE ATMOSPHERE */

.hero-decoration {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(100px);

    opacity: 0.35;
}

.hero-decoration-left {
    left: -250px;
    top: 30%;

    background:
        rgba(255, 255, 255, 0.055);
}

.hero-decoration-right {
    right: -260px;
    top: 20%;

    background:
        rgba(139, 92, 246, 0.055);
}


/* CONTENT WIDTH */

.hero-content {
    width:
        min(
            980px,
            100%
        );
}


/* BADGE */

.hero-badge {
    margin-bottom: 18px;

    color: #b8bac2;

    background:
        rgba(255, 255, 255, 0.025);

    border-color:
        rgba(255, 255, 255, 0.08);
}


/* RELEASE LINE */

.hero-release {
    width: fit-content;

    margin:
        0 auto
        28px;

    display: flex;
    align-items: center;
    gap: 8px;

    color:
        #747781;

    font-size: 11px;
    font-weight: 700;

    letter-spacing:
        0.5px;
}

.hero-release-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #22c55e;

    box-shadow:
        0 0 10px
        rgba(34, 197, 94, 0.35);
}


/* TITLE */

.hero h1 {
    max-width: 880px;

    margin:
        0 auto
        25px;

    font-size:
        clamp(
            54px,
            7.6vw,
            94px
        );

    line-height: 0.96;

    letter-spacing:
        -4px;
}

.hero h1 span {
    display: block;

    margin-top: 5px;
}


/* DESCRIPTION */

.hero p {
    max-width: 660px;

    font-size: 17px;

    color:
        #94969f;
}


/* BUTTON AREA */

.hero-buttons {
    margin-top:
        32px;
}


/* ==========================================================
   HERO HIGHLIGHT STRIP
========================================================== */

.hero-highlights {
    width:
        min(
            760px,
            100%
        );

    margin:
        55px auto
        0;

    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr;

    align-items: center;

    padding:
        18px
        24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.065);

    border-radius:
        16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.008)
        ),
        rgba(10, 11, 14, 0.75);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.18);
}

.hero-highlight {
    display: flex;
    align-items: center;

    gap: 12px;

    text-align: left;
}

.hero-highlight-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius:
        9px;

    background:
        rgba(255, 255, 255, 0.025);

    color:
        #8f919a;

    font-size:
        10px;

    font-weight:
        900;
}

.hero-highlight strong {
    display: block;

    color:
        #f4f4f5;

    font-size:
        13px;
}

.hero-highlight small {
    display: block;

    margin-top: 2px;

    color:
        #73757e;

    font-size:
        10px;
}

.hero-highlight-divider {
    width: 1px;
    height: 34px;

    background:
        rgba(255, 255, 255, 0.06);
}


/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.hero-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 27px;

    transform:
        translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color:
        #555861;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;
}

.hero-scroll-line {
    width: 1px;
    height: 28px;

    position: relative;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.07);
}

.hero-scroll-line::after {
    content: "";

    position: absolute;

    top: -12px;
    left: 0;

    width: 100%;
    height: 12px;

    background:
        #8b5cf6;

    animation:
        heroScrollPulse
        2.1s ease-in-out
        infinite;
}

@keyframes heroScrollPulse {

    0% {
        top: -12px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 760px) {

    .hero-highlights {
        grid-template-columns:
            1fr;

        gap: 15px;

        padding:
            18px;
    }

    .hero-highlight-divider {
        width: 100%;
        height: 1px;
    }

    .hero-highlight {
        justify-content:
            flex-start;
    }

    .hero h1 {
        letter-spacing:
            -2px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
/* ==========================================================
   RELEASE COUNTDOWN
========================================================== */

.hero-release-block {
    width: fit-content;
    max-width: 100%;

    margin:
        0 auto
        30px;
}


/* STATUS LINE */

.hero-release-status {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 13px;

    color:
        #72747d;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.2px;
}

.hero-release-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius:
        50%;

    background:
        #22c55e;

    box-shadow:
        0 0 10px
        rgba(34, 197, 94, 0.38);
}

.hero-release-separator {
    color:
        #42444c;
}


/* COUNTDOWN CONTAINER */

.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        12px
        18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius:
        13px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.008)
        ),
        rgba(13, 14, 18, 0.88);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.14);
}


/* INDIVIDUAL NUMBER */

.hero-countdown-item {
    min-width: 52px;

    text-align:
        center;
}

.hero-countdown-item strong {
    display: block;

    color:
        #f5f5f6;

    font-size:
        20px;

    line-height:
        1;

    letter-spacing:
        -0.5px;

    font-variant-numeric:
        tabular-nums;
}

.hero-countdown-item span {
    display: block;

    margin-top:
        6px;

    color:
        #64666f;

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


/* DIVIDERS */

.hero-countdown-divider {
    margin-top:
        -13px;

    color:
        #44464e;

    font-size:
        18px;

    font-weight:
        700;
}


/* SUBTLE NUMBER CHANGE EFFECT */

.hero-countdown-item strong {
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}

.hero-countdown-item strong.countdown-tick {
    opacity: 0.55;

    transform:
        translateY(-2px);
}


/* MOBILE */

@media (max-width: 600px) {

    .hero-release-status {
        flex-wrap: wrap;

        line-height:
            1.5;
    }

    .hero-countdown {
        gap: 6px;

        padding:
            11px 12px;
    }

    .hero-countdown-item {
        min-width:
            42px;
    }

    .hero-countdown-item strong {
        font-size:
            17px;
    }

    .hero-countdown-divider {
        font-size:
            15px;
    }
}
/* ==========================================================
   HOMEPAGE INFO STRIP
========================================================== */

.home-info-strip {
    position: relative;

    padding:
        0 20px;

    background:
        #08090c;
}

.home-info-strip::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width:
        min(
            1100px,
            calc(100% - 40px)
        );

    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.10),
            transparent
        );
}

.home-info-strip-inner {
    width:
        min(
            1100px,
            100%
        );

    min-height:
        120px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr
        1px
        1fr;

    align-items:
        center;

    gap:
        20px;
}

.home-info-item {
    min-width: 0;

    display:
        grid;

    grid-template-columns:
        32px
        1fr;

    column-gap:
        10px;
}

.home-info-item > span {
    grid-row:
        1 / 3;

    width:
        30px;
    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    align-self:
        center;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius:
        8px;

    background:
        rgba(255, 255, 255, 0.025);

    color:
        #696b73;

    font-size:
        9px;

    font-weight:
        900;
}

.home-info-item strong {
    color:
        #f0f0f2;

    font-size:
        12px;

    line-height:
        1.3;
}

.home-info-item small {
    margin-top:
        3px;

    color:
        #666870;

    font-size:
        9px;

    line-height:
        1.4;
}

.home-info-divider {
    width:
        1px;

    height:
        34px;

    background:
        rgba(255, 255, 255, 0.055);
}


/* HOVER DETAIL */

.home-info-item {
    transition:
        transform 0.18s ease;
}

.home-info-item:hover {
    transform:
        translateY(-2px);
}

.home-info-item:hover > span {
    color:
        #a78bfa;

    border-color:
        rgba(139, 92, 246, 0.18);

    background:
        rgba(139, 92, 246, 0.05);
}


/* MOBILE */

@media (max-width: 800px) {

    .home-info-strip-inner {
        grid-template-columns:
            1fr
            1fr;

        gap:
            0;
    }

    .home-info-divider {
        display: none;
    }

    .home-info-item {
        padding:
            18px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.05);
    }

    .home-info-item:nth-of-type(odd) {
        border-right:
            1px solid
            rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 520px) {

    .home-info-strip-inner {
        grid-template-columns:
            1fr;
    }

    .home-info-item {
        border-right:
            0 !important;
    }
}
/* ==========================================================
   ADVANCED FEATURE CARDS
========================================================== */

.feature-card {
    min-height: 300px;

    padding:
        24px;

    display:
        flex;

    flex-direction:
        column;

    border-radius:
        16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.024),
            rgba(255, 255, 255, 0.008)
        ),
        #101115;

    border:
        1px solid
        rgba(255, 255, 255, 0.065);

    overflow:
        hidden;
}


/* TOP ROW */

.feature-topline {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        42px;
}


/* ICON */

.feature-icon {
    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius:
        10px;

    background:
        rgba(255, 255, 255, 0.025);

    color:
        #f0f0f2;

    font-size:
        14px;

    font-weight:
        900;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.feature-card:hover .feature-icon {
    transform:
        translateY(-2px);

    border-color:
        rgba(139, 92, 246, 0.18);

    background:
        rgba(139, 92, 246, 0.055);
}


/* NUMBER */

.feature-number {
    margin:
        0;

    color:
        #54565f;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


/* EYEBROW */

.feature-eyebrow {
    margin-bottom:
        8px;

    color:
        #777983;

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        1.4px;
}


/* TITLE */

.feature-card h3 {
    margin:
        0 0 12px;

    color:
        #f5f5f6;

    font-size:
        22px;

    line-height:
        1.15;

    letter-spacing:
        -0.5px;
}


/* DESCRIPTION */

.feature-card p {
    margin:
        0;

    color:
        #858791;

    font-size:
        13px;

    line-height:
        1.7;
}


/* FOOTER */

.feature-footer {
    margin-top:
        auto;

    padding-top:
        22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    color:
        #666872;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.3px;
}


/* SUBTLE CORNER DETAIL */

.feature-card::after {
    content: "";

    position:
        absolute;

    width:
        90px;

    height:
        90px;

    right:
        -45px;

    bottom:
        -45px;

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.025);

    filter:
        blur(6px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.feature-card:hover::after {
    transform:
        scale(1.25);

    background:
        rgba(139, 92, 246, 0.035);
}


/* HOVER */

.feature-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255, 255, 255, 0.105);

    box-shadow:
        0 22px 50px
        rgba(0, 0, 0, 0.18);
}
/* ==========================================================
   ADVANCED FINAL CTA
========================================================== */

.cta {
    padding: 70px 20px 110px;
    background: #090a0d;
}

.cta-content {
    position: relative;

    width: min(1100px, 100%);
    min-height: 330px;

    margin: 0 auto;
    padding: 55px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    align-items: center;

    gap: 70px;

    overflow: hidden;

    text-align: left;

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.035),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #101115,
            #0c0d10
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.22);
}

.cta-watermark {
    position: absolute;

    right: -25px;
    bottom: -65px;

    color:
        rgba(255, 255, 255, 0.018);

    font-size:
        clamp(120px, 18vw, 240px);

    font-weight: 900;

    line-height: 1;

    letter-spacing:
        -12px;

    user-select: none;

    pointer-events: none;
}

.cta-main {
    position: relative;

    z-index: 2;
}

.cta-status {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #777a83;

    font-size: 9px;

    font-weight: 900;

    letter-spacing:
        1.3px;
}

.cta-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px
        rgba(34, 197, 94, 0.35);
}

.cta h2 {
    max-width: 590px;

    margin: 0;

    color: #f5f5f6;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.02;

    letter-spacing:
        -2.5px;
}

.cta h2 strong {
    display: block;

    color: #a78bfa;

    font-weight: inherit;
}

.cta p {
    max-width: 540px;

    margin-top: 20px;

    color: #858790;

    font-size: 14px;

    line-height: 1.75;
}

.cta-action-area {
    position: relative;

    z-index: 2;

    padding-left: 35px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.cta-release {
    margin-bottom: 24px;
}

.cta-release span {
    display: block;

    margin-bottom: 6px;

    color: #666972;

    font-size: 9px;

    font-weight: 900;

    letter-spacing:
        1.4px;
}

.cta-release strong {
    color: #eeeeef;

    font-size: 25px;

    font-weight: 800;

    letter-spacing:
        -0.7px;
}

.cta-buttons {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.cta-buttons .btn {
    width: 100%;

    min-width: 0;

    justify-content: space-between;

    padding: 13px 16px;

    font-size: 12px;
}

.cta-buttons .btn.primary span {
    font-size: 16px;

    transition:
        transform 0.18s ease;
}

.cta-buttons .btn.primary:hover span {
    transform:
        translateX(3px);
}

.cta-content::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 55px;

    width: 110px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(167, 139, 250, 0.75),
            transparent
        );
}

@media (max-width: 800px) {

    .cta-content {
        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            38px 30px;
    }

    .cta-action-area {
        padding:
            25px 0 0;

        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.06);
    }

    .cta-watermark {
        font-size: 130px;
    }
}
/* ==========================================================
   ADVANCED MEMBER DASHBOARD
========================================================== */

.dashboard-header {
    padding:
        120px 20px
        38px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);

    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(255, 255, 255, 0.04),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 0%,
            rgba(139, 92, 246, 0.035),
            transparent 28%
        ),
        #090a0d;
}

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.dashboard-hero-main {
    max-width: 700px;
}

.dashboard-hero-main h1 {
    margin-top: 8px;

    font-size:
        clamp(
            44px,
            6vw,
            68px
        );

    line-height: 1;

    letter-spacing:
        -3px;
}

.dashboard-hero-main p {
    margin-top: 14px;

    max-width: 600px;

    color: #868891;

    font-size: 15px;
}

.dashboard-hero-status {
    min-width: 260px;

    padding-left: 28px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.dashboard-status-line {
    display: flex;
    align-items: center;

    gap: 11px;
}

.dashboard-live-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px
        rgba(34, 197, 94, 0.35);
}

.dashboard-status-line span,
.dashboard-hero-reference span {
    display: block;

    color: #676972;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.dashboard-status-line strong {
    display: block;

    margin-top: 3px;

    color: #d7d8dc;

    font-size: 12px;
}

.dashboard-hero-reference {
    margin-top: 18px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);
}

.dashboard-hero-reference strong {
    display: block;

    margin-top: 4px;

    color: #868892;

    font-size: 10px;

    letter-spacing: 0.8px;
}


/* ==========================================================
   DASHBOARD OVERVIEW STRIP
========================================================== */

.dashboard-overview-strip {
    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr;

    align-items: center;

    margin-bottom: 18px;

    padding:
        15px
        18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.015);
}

.dashboard-overview-item {
    display: flex;
    align-items: center;

    gap: 11px;

    padding:
        0
        12px;
}

.dashboard-overview-item > span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.02);

    color: #666872;

    font-size: 9px;
    font-weight: 900;
}

.dashboard-overview-item small {
    display: block;

    color: #62646d;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.dashboard-overview-item strong {
    display: block;

    margin-top: 2px;

    color: #d7d8dc;

    font-size: 11px;
}

.dashboard-overview-divider {
    width: 1px;
    height: 30px;

    background:
        rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   DASHBOARD CARDS
========================================================== */

.dashboard-grid {
    gap: 14px;
}

.dashboard-card {
    min-height: 300px;

    padding: 22px;

    display: flex;
    flex-direction: column;

    border-radius: 15px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.006)
        ),
        #101115;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    overflow: hidden;
}

.dashboard-card-featured {
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(255, 255, 255, 0.03),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #121318,
            #0f1014
        );
}

.dashboard-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;
}

.dashboard-card-number {
    color: #555760;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.dashboard-card h2 {
    margin-top: 16px;

    color: #f1f1f3;

    font-size: 24px;

    letter-spacing:
        -0.6px;
}

.dashboard-card p {
    color: #858790;

    font-size: 12px;

    line-height: 1.7;
}

.dashboard-card-footer {
    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);
}

.dashboard-card-footer .btn {
    min-width: 0;

    padding:
        11px
        15px;

    font-size: 11px;
}


/* WHITELIST ICON */

.dashboard-card-status-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.025);
}

.dashboard-card-status-icon span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #7b7d86;

    box-shadow:
        0 0 0 5px
        rgba(255, 255, 255, 0.025);
}


/* APPLICATION ICON */

.dashboard-card-app-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #b3b4ba;

    font-size: 17px;

    font-weight: 400;
}


/* PROFILE */

.profile-placeholder {
    margin:
        0
        0
        20px;
}

.profile-avatar {
    width: 62px;
    height: 62px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            135deg,
            #22232a,
            #15161b
        );

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   RECENT APPLICATIONS PANEL
========================================================== */

.dashboard-applications-panel {
    margin-top: 16px;

    padding: 24px;

    border-radius: 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            rgba(255, 255, 255, 0.005)
        ),
        #101115;
}

.dashboard-panel-heading {
    margin-bottom: 0;
}

.dashboard-panel-heading h2 {
    color: #f1f1f3;

    font-size: 24px;
}

.dashboard-panel-link {
    padding:
        9px
        12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.02);

    color: #aa9adf;

    font-size: 10px;
}

.dashboard-panel-divider {
    width: 100%;
    height: 1px;

    margin:
        19px 0;

    background:
        rgba(255, 255, 255, 0.05);
}


/* LOADING STATE */

.dashboard-applications-loading {
    position: relative;

    overflow: hidden;

    min-height: 95px;

    padding: 20px;

    text-align: left;

    background:
        rgba(255, 255, 255, 0.01);
}

.dashboard-loading-line {
    width: 210px;
    height: 9px;

    margin-bottom: 9px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.045);
}

.dashboard-loading-line.short {
    width: 140px;
}

.dashboard-applications-loading span {
    display: block;

    margin-top: 16px;

    color: #5e6069;

    font-size: 10px;
}


/* ==========================================================
   RESPONSIVE DASHBOARD
========================================================== */

@media (max-width: 850px) {

    .dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-hero-status {
        width: 100%;

        padding:
            20px 0 0;

        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.055);
    }

    .dashboard-overview-strip {
        grid-template-columns:
            1fr;
    }

    .dashboard-overview-divider {
        width: 100%;
        height: 1px;

        margin:
            12px 0;
    }

    .dashboard-overview-item {
        padding: 0;
    }
}
/* ==========================================================
   DASHBOARD FINAL POLISH
========================================================== */

.dashboard-card {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(255, 255, 255, 0.11);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.18);
}

.dashboard-card-status-icon {
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.dashboard-card:hover
.dashboard-card-status-icon {
    transform:
        translateY(-2px);
}

.dashboard-card-app-icon {
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.dashboard-card:hover
.dashboard-card-app-icon {
    transform:
        translateY(-2px);

    border-color:
        rgba(255, 255, 255, 0.11);

    background:
        rgba(255, 255, 255, 0.035);
}


/* ACCEPTED WHITELIST STATE */

.dashboard-card:has(
    #dashboardWhitelistStatus
) .dashboard-card-status-icon span {
    background:
        #22c55e;

    box-shadow:
        0 0 0 5px
        rgba(34, 197, 94, 0.06),
        0 0 14px
        rgba(34, 197, 94, 0.22);
}

.dashboard-card:has(
    #dashboardWhitelistStatus
) .dashboard-card-status-icon {
    border-color:
        rgba(34, 197, 94, 0.12);

    background:
        rgba(34, 197, 94, 0.035);
}


/* PROFILE CONNECTED DETAIL */

.profile-card .profile-avatar {
    position:
        relative;

    box-shadow:
        0 0 0 4px
        rgba(255, 255, 255, 0.02),
        0 12px 28px
        rgba(0, 0, 0, 0.22);
}

.profile-card .profile-placeholder::after {
    content:
        "CONNECTED";

    margin-left:
        auto;

    padding:
        5px 8px;

    border:
        1px solid
        rgba(34, 197, 94, 0.12);

    border-radius:
        999px;

    background:
        rgba(34, 197, 94, 0.035);

    color:
        #86efac;

    font-size:
        8px;

    font-weight:
        900;

    letter-spacing:
        0.7px;
}


/* APPLICATION ROWS */

.dashboard-application-row {
    position:
        relative;

    overflow:
        hidden;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.dashboard-application-row::before {
    content: "";

    position:
        absolute;

    left:
        0;

    top:
        50%;

    width:
        2px;

    height:
        0;

    transform:
        translateY(-50%);

    border-radius:
        999px;

    background:
        rgba(139, 92, 246, 0.75);

    transition:
        height 0.18s ease;
}

.dashboard-application-row:hover {
    transform:
        translateX(3px);

    border-color:
        rgba(255, 255, 255, 0.10);

    background:
        #16171c;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.14);
}

.dashboard-application-row:hover::before {
    height:
        55%;
}


/* OVERVIEW STRIP */

.dashboard-overview-item {
    transition:
        transform 0.18s ease;
}

.dashboard-overview-item:hover {
    transform:
        translateY(-2px);
}

.dashboard-overview-item:hover > span {
    color:
        #a78bfa;

    border-color:
        rgba(139, 92, 246, 0.16);

    background:
        rgba(139, 92, 246, 0.04);
}


/* SUBTLE DASHBOARD ENTRANCE */

.dashboard-overview-strip,
.dashboard-grid,
.dashboard-applications-panel {
    animation:
        dashboardFadeUp
        0.5s ease both;
}

.dashboard-grid {
    animation-delay:
        0.06s;
}

.dashboard-applications-panel {
    animation-delay:
        0.12s;
}

@keyframes dashboardFadeUp {

    from {
        opacity:
            0;

        transform:
            translateY(10px);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0);
    }
}