:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-300: #6ee7b7;
    --green-400: #34d399;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #064e3b;
    --yellow-50: #fffbeb;
    --yellow-100: #fef3c7;
    --yellow-300: #fde68a;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --orange-500: #f97316;
    --sky-500: #0ea5e9;
    --dark-950: #020617;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --muted: #64748b;
    --line: rgba(148, 163, 184, 0.30);
    --white: #ffffff;
    --danger: #ef4444;
    --radius-shell: 36px;
    --radius-card: 32px;
    --shadow-card: 0 34px 100px rgba(2, 6, 23, 0.34);
    --shadow-soft: 0 24px 64px rgba(15, 23, 42, 0.20);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

html {
    min-height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--dark-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    overflow-x: hidden;
}

button, input { font: inherit; }
button { border: 0; }
a { color: inherit; }

.login-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: max(18px, var(--safe-top)) 18px max(18px, var(--safe-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-shell {
    position: relative;
    width: min(1760px, 100%);
    min-height: calc(100vh - 36px);
    min-height: calc(100svh - 36px);
    display: grid;
    grid-template-columns: minmax(0, 1.26fr) minmax(420px, 0.74fr);
    overflow: hidden;
    border-radius: var(--radius-shell);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: var(--shadow-card);
    isolation: isolate;
    background: #052e2b;
}

.login-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.90), rgba(6, 78, 59, 0.72) 44%, rgba(2, 6, 23, 0.56)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.70)),
        var(--login-bg-image),
        linear-gradient(135deg, #052e2b 0%, #064e3b 46%, #14532d 100%);
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    transform: scale(1.02);
}

.login-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 15% 18%, rgba(34, 197, 94, 0.36), transparent 25%),
        radial-gradient(circle at 85% 12%, rgba(250, 204, 21, 0.34), transparent 28%),
        radial-gradient(circle at 64% 88%, rgba(14, 165, 233, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.08) 52%, rgba(2, 6, 23, 0.38));
    pointer-events: none;
}

.login-hero {
    position: relative;
    min-height: 720px;
    padding: clamp(30px, 3.5vw, 58px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #ffffff;
}

.login-hero-bg { display: none; }

.login-hero::before,
.login-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(110deg, black 0%, black 56%, transparent 92%);
}

.hero-bg-effects {
    position: absolute;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.energy-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.90;
}

.orb-one {
    width: 430px;
    height: 430px;
    left: -160px;
    top: -140px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.46), transparent 65%);
}

.orb-two {
    width: 540px;
    height: 540px;
    right: -220px;
    top: -130px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.34), transparent 63%);
}

.orb-three {
    width: 480px;
    height: 480px;
    right: 4%;
    bottom: -200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 62%);
}

.energy-line {
    position: absolute;
    width: 420px;
    height: 1px;
    opacity: 0.58;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.82), rgba(34, 197, 94, 0.45), transparent);
    transform: rotate(-18deg);
}

.line-one { top: 28%; right: -40px; }
.line-two { bottom: 28%; left: 32%; transform: rotate(22deg); }

.hero-top,
.system-badge,
.hero-content,
.hero-features {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.org-card {
    width: fit-content;
    max-width: 480px;
    min-height: 78px;
    padding: 14px 18px 14px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.org-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    color: #ffffff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.62), transparent 28%),
        linear-gradient(135deg, var(--green-500), var(--yellow-400));
    box-shadow:
        0 16px 36px rgba(34, 197, 94, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.org-logo span {
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.08em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.org-card strong,
.mobile-brand strong {
    display: block;
    line-height: 1.1;
    font-size: 17px;
    font-weight: 900;
}

.org-card small,
.mobile-brand small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 700;
}

.system-badge {
    width: fit-content;
    max-width: 650px;
    margin-top: clamp(34px, 5vw, 68px);
    padding: 12px 18px 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 850;
}

.status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.72);
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.72); }
    70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-content {
    width: min(880px, 100%);
    margin-top: clamp(34px, 5vw, 70px);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--yellow-100);
    background: rgba(250, 204, 21, 0.13);
    border: 1px solid rgba(250, 204, 21, 0.24);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow-400);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.72);
}

.hero-content h1 {
    max-width: 940px;
    margin: 24px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5.2vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.075em;
    text-wrap: balance;
}

.hero-content p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.7;
    font-weight: 740;
}

.hero-features {
    width: min(800px, 100%);
    margin-top: auto;
    padding-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-features article {
    min-height: 136px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
        rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-features article:hover {
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.38);
    background:
        linear-gradient(145deg, rgba(250, 204, 21, 0.18), rgba(34, 197, 94, 0.10)),
        rgba(15, 23, 42, 0.22);
}

.hero-features span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 950;
}

.hero-features b {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
}

.login-panel {
    position: relative;
    min-width: 0;
    padding: clamp(28px, 3.2vw, 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.16));
}

.mobile-brand { display: none; }

.login-card {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    padding: clamp(30px, 3.5vw, 52px);
    border-radius: var(--radius-card);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(248, 250, 252, 0.84)),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow:
        0 30px 88px rgba(2, 6, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
}

.login-card::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-500), var(--yellow-400), var(--green-600));
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.24);
}

.login-card-toolbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.language-dropdown {
    position: relative;
    width: max-content;
}

.lang-trigger {
    min-width: 112px;
    height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 15px;
    cursor: pointer;
    color: var(--dark-900);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    font-weight: 950;
    transition: 0.2s ease;
}

.lang-trigger:hover,
.language-dropdown.is-open .lang-trigger,
.language-dropdown:focus-within .lang-trigger {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.10), 0 16px 34px rgba(15, 23, 42, 0.10);
}

.lang-trigger svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.language-dropdown.is-open .lang-trigger svg,
.language-dropdown:hover .lang-trigger svg,
.language-dropdown:focus-within .lang-trigger svg {
    transform: rotate(180deg);
}

.lang-flag {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.72);
}

.lang-code { font-size: 13px; }

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 235px;
    padding: 8px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.98);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
    z-index: 30;
}

.language-dropdown:hover .lang-menu,
.language-dropdown:focus-within .lang-menu,
.language-dropdown.is-open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-item {
    min-height: 44px;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    color: var(--dark-800);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    transition: 0.18s ease;
}

.lang-item:hover {
    color: var(--green-800);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(250, 204, 21, 0.11));
}

.lang-item.is-active {
    color: var(--green-900);
    background: var(--green-50);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.16);
}

.lang-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lang-short {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
}

.login-card-head {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.login-card-head .login-pill {
    margin-left: auto;
    margin-right: auto;
}

.login-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--green-800);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.13), rgba(250, 204, 21, 0.16));
    border: 1px solid rgba(34, 197, 94, 0.16);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.login-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.login-card h2 {
    margin: 18px 0 10px;
    color: var(--dark-900);
    font-size: clamp(30px, 3.1vw, 42px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.login-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 650;
}

.alert-box {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 760;
}

.alert-box.is-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.alert-box.is-success {
    color: var(--green-800);
    background: var(--green-50);
    border: 1px solid var(--green-200);
}

.login-form { display: grid; gap: 18px; }
.field { display: grid; gap: 9px; }
.field > span { color: var(--dark-800); font-size: 14px; font-weight: 900; }
.input-box { position: relative; display: flex; align-items: center; }

.input-box svg {
    position: absolute;
    left: 18px;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #64748b;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transition: 0.2s ease;
}

.input-box input {
    width: 100%;
    height: 64px;
    padding: 0 58px 0 54px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    outline: none;
    background: rgba(255, 255, 255, 0.90);
    color: var(--dark-900);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 34px rgba(15, 23, 42, 0.045);
    font-size: 15px;
    font-weight: 800;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.input-box input::placeholder { color: #94a3b8; font-weight: 650; }
.input-box input:focus {
    border-color: rgba(34, 197, 94, 0.72);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13), 0 14px 38px rgba(15, 23, 42, 0.07);
}
.input-box:focus-within svg { stroke: var(--green-600); }

.field-error { min-height: 16px; color: #dc2626; font-size: 12px; font-weight: 850; }

.pass-toggle {
    position: absolute;
    right: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    cursor: pointer;
    background: transparent;
    color: #64748b;
    transition: 0.2s ease;
}
.pass-toggle:hover,
.pass-toggle.is-visible { color: var(--green-700); background: var(--green-50); }
.pass-toggle svg { position: static; width: 21px; height: 21px; }

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: -1px;
}

.remember {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dark-800);
    font-size: 14px;
    font-weight: 850;
    user-select: none;
    cursor: pointer;
}
.remember input { width: 18px; height: 18px; margin: 0; accent-color: var(--green-600); cursor: pointer; }

.forgot-link {
    color: var(--green-700);
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}
.forgot-link:hover { text-decoration: underline; }

.login-btn {
    position: relative;
    height: 64px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    overflow: hidden;
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(135deg, var(--green-600), var(--green-700) 56%, #0f766e);
    box-shadow: 0 18px 38px rgba(22, 163, 74, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.login-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(250, 204, 21, 0.35) 45%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(22, 163, 74, 0.30), 0 10px 28px rgba(234, 179, 8, 0.15); }
.login-btn:hover::before { transform: translateX(120%); }
.login-btn:active { transform: translateY(0); }
.login-btn[disabled] { opacity: 0.72; cursor: not-allowed; transform: none; filter: grayscale(0.1); }
.login-btn span, .login-btn svg { position: relative; z-index: 1; }
.login-btn svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.login-btn.is-loading span { display: inline-flex; align-items: center; gap: 10px; }
.login-btn.is-loading span::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.login-note { margin-top: 18px; text-align: center; color: #64748b; font-size: 13px; font-weight: 760; line-height: 1.55; }
.test-access {
    margin-top: 18px;
    padding: 15px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    border-radius: 18px;
    color: #334155;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.07), rgba(250, 204, 21, 0.10));
    border: 1px dashed rgba(34, 197, 94, 0.32);
    font-size: 13px;
    font-weight: 760;
}
.test-access b { color: var(--green-800); }
.test-access strong { color: var(--dark-900); }
.health-link { margin-top: 12px; display: block; color: #64748b; font-size: 12px; font-weight: 750; text-align: center; text-decoration: none; }
.health-link:hover { color: var(--green-700); text-decoration: underline; }

.shell-footer {
    position: absolute;
    left: clamp(18px, 3.2vw, 52px);
    right: clamp(18px, 3.2vw, 52px);
    bottom: clamp(16px, 2.2vw, 32px);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
}
.shell-footer p { margin: 0; }

@media (max-width: 1460px) {
    .login-shell { grid-template-columns: minmax(0, 1fr) minmax(405px, 0.72fr); }
    .hero-content h1 { font-size: clamp(38px, 4.7vw, 70px); }
    .hero-features { width: min(630px, 100%); grid-template-columns: 1fr; }
    .hero-features article { min-height: 92px; }
}

@media (max-width: 1120px) {
    .login-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .login-hero {
        min-height: auto;
        padding: 28px 28px 18px;
    }
    .hero-content { margin-top: 34px; }
    .hero-content h1 { max-width: 860px; font-size: clamp(35px, 7vw, 62px); }
    .hero-content p { max-width: 820px; }
    .hero-features {
        width: 100%;
        padding-top: 28px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-features article { min-height: 112px; }
    .login-panel {
        padding: 18px 28px 78px;
        align-items: flex-start;
        background: transparent;
    }
    .login-card { margin-left: auto; margin-right: auto; }
    .shell-footer { bottom: 22px; }
}

@media (max-width: 820px) {
    .login-page { padding: 0; }
    .login-shell {
        width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        border-radius: 0;
        border: 0;
    }
    .login-shell::before { transform: none; }
    .login-shell::after { background: linear-gradient(180deg, rgba(2,6,23,0.58), rgba(6,78,59,0.28) 46%, rgba(2,6,23,0.70)); }
    .login-hero {
        padding: max(18px, var(--safe-top)) 18px 0;
    }
    .org-card {
        max-width: 100%;
        min-height: 62px;
        padding: 10px 12px 10px 10px;
        border-radius: 19px;
    }
    .org-logo { width: 46px; height: 46px; flex-basis: 46px; border-radius: 16px; }
    .org-logo span { font-size: 15px; }
    .org-card strong, .mobile-brand strong { font-size: 15px; }
    .org-card small, .mobile-brand small { font-size: 12px; }
    .system-badge { display: none; }
    .hero-content { margin-top: 26px; }
    .hero-kicker { font-size: 10px; padding: 8px 11px; }
    .hero-content h1 { margin: 17px 0 12px; font-size: clamp(31px, 10vw, 48px); letter-spacing: -0.065em; }
    .hero-content p { font-size: 14px; line-height: 1.55; }
    .hero-features { display: none; }
    .login-panel { padding: 22px 16px 94px; }
    .login-card {
        padding: 26px 18px;
        border-radius: 26px;
        width: min(520px, 100%);
        background: rgba(255,255,255,0.90);
    }
    .login-card-toolbar { margin-bottom: 14px; }
    .login-card h2 { font-size: clamp(29px, 9vw, 36px); }
    .login-card p { font-size: 14px; }
    .input-box input { height: 58px; border-radius: 18px; padding-left: 50px; }
    .input-box svg { left: 16px; width: 20px; height: 20px; }
    .login-options { flex-direction: column; align-items: flex-start; gap: 10px; }
    .forgot-link { white-space: normal; }
    .login-btn { height: 60px; border-radius: 18px; }
    .test-access { display: grid; }
    .shell-footer {
        left: 16px;
        right: 16px;
        bottom: max(14px, var(--safe-bottom));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .login-hero { padding-left: 14px; padding-right: 14px; }
    .login-panel { padding-left: 12px; padding-right: 12px; }
    .login-card { padding-left: 14px; padding-right: 14px; }
    .login-pill { font-size: 11px; }
    .lang-menu { width: min(230px, calc(100vw - 36px)); right: 0; }
    .lang-trigger { min-width: 104px; }
}

/* =========================
   V5 FIX: one shared background for hero + login panel
   ========================= */
.login-shell {
    background: transparent !important;
}

.login-shell::before {
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.90), rgba(6, 78, 59, 0.64) 42%, rgba(2, 6, 23, 0.48) 68%, rgba(2, 6, 23, 0.70)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.68)),
        var(--login-bg-image),
        linear-gradient(135deg, #052e2b 0%, #064e3b 46%, #14532d 100%) !important;
    background-size: cover, cover, cover, cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.login-shell::after {
    background:
        radial-gradient(circle at 14% 18%, rgba(34, 197, 94, 0.34), transparent 25%),
        radial-gradient(circle at 84% 12%, rgba(250, 204, 21, 0.30), transparent 26%),
        radial-gradient(circle at 66% 88%, rgba(14, 165, 233, 0.16), transparent 24%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.08) 52%, rgba(2, 6, 23, 0.50)) !important;
}

.login-hero,
.login-panel {
    background: transparent !important;
}

.login-hero::before,
.login-panel::before {
    display: none !important;
}

.login-panel {
    isolation: isolate;
}

.login-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.84)),
        rgba(255, 255, 255, 0.76) !important;
    border-color: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

@media (max-width: 1120px) {
    .login-shell::before {
        background-image:
            linear-gradient(180deg, rgba(2, 6, 23, 0.78), rgba(6, 78, 59, 0.48) 44%, rgba(2, 6, 23, 0.76)),
            var(--login-bg-image),
            linear-gradient(135deg, #052e2b 0%, #064e3b 46%, #14532d 100%) !important;
    }
}

@media (max-width: 820px) {
    .login-shell::after {
        background:
            radial-gradient(circle at 14% 10%, rgba(34, 197, 94, 0.25), transparent 28%),
            radial-gradient(circle at 88% 4%, rgba(250, 204, 21, 0.22), transparent 30%),
            linear-gradient(180deg, rgba(2, 6, 23, 0.62), rgba(6, 78, 59, 0.30) 42%, rgba(2, 6, 23, 0.76)) !important;
    }
}

/* =========================
   V6 FINAL FIX: real image background + smaller shell
   ========================= */
.login-page {
    padding: clamp(28px, 3.4vw, 58px) !important;
    align-items: center !important;
    justify-content: center !important;
    
}

.login-shell {
   
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.70fr) !important;
    border-radius: 32px !important;
    box-shadow: 0 34px 110px rgba(2, 6, 23, 0.38) !important;
    background: #052e2b !important;
}

.login-shell::before {
    inset: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: saturate(1.08) contrast(1.05) !important;
}

.login-shell::after {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.76) 0%, rgba(5, 46, 43, 0.58) 39%, rgba(20, 83, 45, 0.32) 58%, rgba(2, 6, 23, 0.64) 100%),
        radial-gradient(circle at 22% 22%, rgba(34, 197, 94, 0.28), transparent 26%),
        radial-gradient(circle at 70% 12%, rgba(250, 204, 21, 0.23), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) !important;
    background-size: auto, auto, auto, 86px 86px, 86px 86px !important;
    pointer-events: none !important;
}

.login-hero,
.login-panel {
    background: transparent !important;
}

.login-hero {
    min-height: 0 !important;
    padding: clamp(32px, 3.2vw, 54px) !important;
}

.login-panel {
    min-height: 0 !important;
    padding: clamp(30px, 3.4vw, 60px) clamp(34px, 4vw, 72px) clamp(54px, 4vw, 74px) !important;
    align-items: center !important;
}

.org-card {
    max-width: 370px !important;
}

.system-badge {
    margin-top: clamp(34px, 5vh, 58px) !important;
    max-width: 520px !important;
}

.hero-content {
    width: min(700px, 100%) !important;
    margin-top: clamp(40px, 6vh, 68px) !important;
}

.hero-content h1 {
    max-width: 720px !important;
    font-size: clamp(42px, 4.2vw, 70px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.072em !important;
}

.hero-content p {
    max-width: 660px !important;
    font-size: clamp(15px, 1.05vw, 18px) !important;
    line-height: 1.72 !important;
}

.hero-features {
    width: min(690px, 100%) !important;
    gap: 16px !important;
    padding-top: clamp(26px, 4vh, 42px) !important;
}

.hero-features article {
    min-height: 120px !important;
    padding: 20px 18px !important;
}

.login-card {
    width: min(445px, 100%) !important;
    padding: clamp(34px, 3vw, 46px) clamp(28px, 3vw, 44px) !important;
    border-radius: 30px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.86)),
        rgba(255, 255, 255, 0.74) !important;
    box-shadow: 0 30px 88px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

.login-card h2 {
    font-size: clamp(31px, 2.5vw, 40px) !important;
}

.input-box input,
.login-btn {
    height: 58px !important;
    border-radius: 18px !important;
}

.shell-footer {
    left: clamp(26px, 3.2vw, 54px) !important;
    right: clamp(26px, 3.2vw, 54px) !important;
    bottom: clamp(18px, 2.2vw, 30px) !important;
}

@media (min-width: 1600px) {
    .login-shell {
        
    }
}

@media (max-width: 1280px) {
    .login-page {
        padding: 24px !important;
    }

    .login-shell {
        width: min(1120px, calc(100vw - 48px)) !important;
        height: auto !important;
        min-height: calc(100svh - 48px) !important;
        max-height: none !important;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr) !important;
    }

    .hero-content h1 {
        font-size: clamp(38px, 4.4vw, 58px) !important;
    }

    .hero-features {
        grid-template-columns: 1fr !important;
        width: min(460px, 100%) !important;
    }

    .hero-features article {
        min-height: 92px !important;
    }
}

@media (max-width: 980px) {
    .login-page {
        min-height: 100svh !important;
        padding: 18px !important;
    }

    .login-shell {
        width: min(720px, calc(100vw - 36px)) !important;
        min-height: calc(100svh - 36px) !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .login-shell::after {
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.72) 0%, rgba(6, 78, 59, 0.35) 40%, rgba(2, 6, 23, 0.70) 100%),
            radial-gradient(circle at 18% 12%, rgba(34, 197, 94, 0.28), transparent 30%),
            radial-gradient(circle at 84% 10%, rgba(250, 204, 21, 0.22), transparent 30%) !important;
    }

    .login-hero {
        display: flex !important;
        min-height: auto !important;
        padding: 26px 24px 10px !important;
    }

    .system-badge,
    .hero-features {
        display: none !important;
    }

    .hero-content {
        margin-top: 28px !important;
    }

    .hero-content h1 {
        margin-top: 14px !important;
        font-size: clamp(31px, 7.2vw, 48px) !important;
    }

    .hero-content p {
        display: none !important;
    }

    .login-panel {
        padding: 10px 22px 84px !important;
        align-items: stretch !important;
    }

    .mobile-brand {
        display: none !important;
    }

    .login-card {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 30px 22px !important;
        border-radius: 26px !important;
    }

    .shell-footer {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
        gap: 16px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 560px) {
    .login-page {
        padding: 0 !important;
    }

    .login-shell {
        width: 100% !important;
        min-height: 100svh !important;
        border-radius: 0 !important;
        border: 0 !important;
    }

    .login-hero {
        padding: max(18px, var(--safe-top)) 16px 8px !important;
    }

    .org-card {
        width: 100% !important;
        max-width: none !important;
        min-height: 64px !important;
        border-radius: 19px !important;
    }

    .org-logo {
        width: 48px !important;
        height: 48px !important;
        flex-basis: 48px !important;
        border-radius: 16px !important;
    }

    .hero-content {
        margin-top: 22px !important;
    }

    .hero-kicker {
        font-size: 10px !important;
    }

    .hero-content h1 {
        font-size: clamp(29px, 9.2vw, 40px) !important;
        line-height: 1.02 !important;
    }

    .login-panel {
        padding: 6px 14px 92px !important;
    }

    .login-card {
        padding: 24px 16px !important;
        border-radius: 24px !important;
    }

    .login-card-toolbar {
        margin-bottom: 16px !important;
    }

    .lang-trigger {
        min-width: 112px !important;
        height: 42px !important;
    }

    .lang-menu {
        right: 0 !important;
        width: min(250px, calc(100vw - 48px)) !important;
    }

    .login-card h2 {
        font-size: 30px !important;
    }

    .input-box input,
    .login-btn {
        height: 56px !important;
    }

    .login-options {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .shell-footer {
        left: 14px !important;
        right: 14px !important;
        bottom: max(12px, var(--safe-bottom)) !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 3px !important;
    }
}




/* SQL-driven logo image */
.org-logo.org-logo-image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.30);
}

.org-logo.org-logo-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 14px;
}

.mobile-brand .org-logo.org-logo-image {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(34, 197, 94, 0.18);
}

@media (max-width: 760px) {
    .org-logo.org-logo-image img {
        border-radius: 12px;
    }
}

/* =========================================================
   V8 SOFT CENTER LAYOUT
   - Fon bitta va ochroq
   - Hero yozuvlari va login karta o'rtaroqqa keltirildi
   - Footer: chapda muallif, o'ngda huquqlar
   - Ko'zni charchatmaydigan yumshoq kontrast
   ========================================================= */

body {
    background:
        radial-gradient(circle at 15% 12%, rgba(34, 197, 94, 0.16), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(250, 204, 21, 0.14), transparent 30%),
        linear-gradient(135deg, #eefaf3 0%, #f7fbf3 48%, #fff8e6 100%) !important;
}

.login-page {
    padding: clamp(24px, 3vw, 46px) !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-shell {
    width: min(1540px, calc(100vw - clamp(36px, 5vw, 92px))) !important;
    min-height: min(820px, calc(100svh - clamp(48px, 6vw, 92px))) !important;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.72fr) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(255, 255, 255, 0.48) !important;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22) !important;
    background: #edf7ef !important;
}

.login-shell::before {
    inset: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: saturate(0.88) contrast(0.92) brightness(1.18) !important;
}

.login-shell::after {
    background:
        linear-gradient(90deg,
            rgba(3, 39, 33, 0.58) 0%,
            rgba(5, 70, 54, 0.38) 38%,
            rgba(241, 253, 244, 0.10) 58%,
            rgba(4, 42, 36, 0.30) 100%),
        radial-gradient(circle at 18% 20%, rgba(52, 211, 153, 0.20), transparent 28%),
        radial-gradient(circle at 66% 14%, rgba(250, 204, 21, 0.16), transparent 26%),
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) !important;
    background-size: auto, auto, auto, 96px 96px, 96px 96px !important;
    pointer-events: none !important;
}

.login-hero,
.login-panel {
    background: transparent !important;
}

.login-hero {
    min-height: 0 !important;
    padding: clamp(44px, 4vw, 70px) clamp(42px, 4.2vw, 72px) clamp(88px, 7vw, 112px) !important;
    justify-content: center !important;
}

.hero-top {
    position: absolute !important;
    top: clamp(28px, 3vw, 46px) !important;
    left: clamp(42px, 4.2vw, 72px) !important;
    right: clamp(28px, 3vw, 46px) !important;
}

.org-card {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.26) !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14) !important;
}

.org-logo.org-logo-image {
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14) !important;
}

.system-badge {
    margin-top: 0 !important;
    max-width: 570px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.23) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12) !important;
}

.hero-content {
    width: min(760px, 100%) !important;
    margin-top: clamp(36px, 5vh, 54px) !important;
}

.hero-content h1 {
    max-width: 780px !important;
    margin: 22px 0 18px !important;
    font-size: clamp(44px, 4.8vw, 72px) !important;
    line-height: 0.99 !important;
    letter-spacing: -0.068em !important;
    text-shadow: 0 16px 36px rgba(2, 6, 23, 0.24) !important;
}

.hero-content p {
    max-width: 710px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 8px 22px rgba(2, 6, 23, 0.20) !important;
}

.hero-features {
    width: min(720px, 100%) !important;
    margin-top: clamp(32px, 5vh, 46px) !important;
    padding-top: 0 !important;
}

.hero-features article {
    min-height: 116px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.075)) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14) !important;
}

.login-panel {
    padding: clamp(48px, 4vw, 76px) clamp(38px, 4.2vw, 82px) clamp(94px, 6vw, 118px) !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-card {
    width: min(500px, 100%) !important;
    margin: 0 auto !important;
    padding: clamp(34px, 3.2vw, 50px) !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,250,252,0.80)), rgba(255,255,255,0.70) !important;
    border-color: rgba(255, 255, 255, 0.76) !important;
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255,255,255,0.90) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
}

.login-card::before {
    left: 34px !important;
    right: 34px !important;
    opacity: 0.86 !important;
}

.input-box input {
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
}

.login-btn {
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.20) !important;
}

.shell-footer,
.hero-footer {
    position: absolute !important;
    z-index: 6 !important;
    left: clamp(34px, 4vw, 72px) !important;
    right: clamp(34px, 4vw, 72px) !important;
    bottom: clamp(22px, 2.6vw, 34px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    text-shadow: 0 8px 22px rgba(2, 6, 23, 0.32) !important;
    pointer-events: none !important;
}

.shell-footer p,
.hero-footer p {
    margin: 0 !important;
}

.footer-left,
.shell-footer p:first-child,
.hero-footer p:first-child {
    text-align: left !important;
}

.footer-right,
.shell-footer p:last-child,
.hero-footer p:last-child {
    margin-left: auto !important;
    text-align: right !important;
}

@media (max-width: 1280px) {
    .login-shell {
        width: min(1180px, calc(100vw - 48px)) !important;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr) !important;
    }
    .hero-content h1 {
        font-size: clamp(38px, 4.7vw, 60px) !important;
    }
    .hero-features {
        grid-template-columns: 1fr !important;
        width: min(500px, 100%) !important;
    }
    .hero-features article {
        min-height: 88px !important;
    }
}

@media (max-width: 980px) {
    .login-page {
        padding: 18px !important;
    }
    .login-shell {
        width: min(760px, calc(100vw - 36px)) !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .login-shell::after {
        background:
            linear-gradient(180deg, rgba(3, 39, 33, 0.54) 0%, rgba(6, 78, 59, 0.24) 42%, rgba(2, 6, 23, 0.52) 100%),
            radial-gradient(circle at 18% 12%, rgba(34, 197, 94, 0.18), transparent 30%),
            radial-gradient(circle at 84% 10%, rgba(250, 204, 21, 0.16), transparent 30%) !important;
    }
    .login-hero {
        padding: 100px 26px 10px !important;
        justify-content: flex-start !important;
    }
    .hero-top {
        top: 24px !important;
        left: 24px !important;
        right: 24px !important;
    }
    .system-badge,
    .hero-features {
        display: none !important;
    }
    .hero-content {
        margin-top: 0 !important;
    }
    .hero-content h1 {
        font-size: clamp(31px, 7vw, 48px) !important;
    }
    .hero-content p {
        display: none !important;
    }
    .login-panel {
        padding: 16px 24px 84px !important;
    }
    .login-card {
        width: 100% !important;
        padding: 30px 22px !important;
    }
    .shell-footer,
    .hero-footer {
        left: 24px !important;
        right: 24px !important;
        bottom: 22px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 560px) {
    .login-page {
        padding: 0 !important;
    }
    .login-shell {
        width: 100% !important;
        min-height: 100svh !important;
        border-radius: 0 !important;
        border: 0 !important;
    }
    .login-shell::before {
        background-position: center top !important;
    }
    .login-shell::after {
        background: linear-gradient(180deg, rgba(3, 39, 33, 0.54), rgba(6, 78, 59, 0.20) 42%, rgba(2, 6, 23, 0.56)) !important;
    }
    .login-hero {
        padding: max(18px, var(--safe-top)) 16px 4px !important;
    }
    .hero-top {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    .org-card {
        width: 100% !important;
        max-width: none !important;
    }
    .hero-content {
        margin-top: 22px !important;
    }
    .hero-content h1 {
        font-size: clamp(28px, 8.8vw, 38px) !important;
        line-height: 1.03 !important;
    }
    .login-panel {
        padding: 8px 14px 92px !important;
    }
    .login-card {
        padding: 24px 16px !important;
        border-radius: 24px !important;
        background: rgba(255,255,255,0.88) !important;
    }
    .login-options {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .shell-footer,
    .hero-footer {
        left: 14px !important;
        right: 14px !important;
        bottom: max(14px, var(--safe-bottom)) !important;
        gap: 12px !important;
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 390px) {
    .shell-footer,
    .hero-footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3px !important;
    }
    .footer-right,
    .shell-footer p:last-child,
    .hero-footer p:last-child {
        margin-left: 0 !important;
        text-align: center !important;
    }
}


/* =========================
   V12.12 FIX: footer author Telegram link clickable
   Sabab: oldingi footer pointer-events:none bo'lgani uchun <a> bosilmayotgan edi.
   ========================= */
.shell-footer,
.hero-footer {
    pointer-events: auto !important;
}

.shell-footer p,
.hero-footer p {
    pointer-events: auto !important;
}

.shell-footer a,
.hero-footer a,
.footer-author-link {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 30 !important;
    color: rgba(255, 255, 255, 0.96) !important;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(250, 204, 21, 0.72) !important;
    cursor: pointer !important;
    transition: color 0.18s ease, border-color 0.18s ease, text-shadow 0.18s ease;
}

.shell-footer a:hover,
.hero-footer a:hover,
.footer-author-link:hover {
    color: #facc15 !important;
    border-bottom-color: #facc15 !important;
    text-shadow: 0 0 18px rgba(250, 204, 21, 0.38) !important;
}
