body.lg-page.lg-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 100vh;
    background: #07140c;
}

.lg-gate-shell {
    width: min(1080px, 100%);
    min-height: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(196, 160, 86, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.lg-gate-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 36px 40px;
    color: #e8f0e4;
    background:
        radial-gradient(90% 60% at 0% 0%, rgba(196, 160, 86, 0.14), transparent 55%),
        linear-gradient(180deg, #164a28 0%, #0b1c12 100%);
    overflow: hidden;
}

.lg-gate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 181, 66, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 181, 66, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at 20% 10%, #000 10%, transparent 72%);
    pointer-events: none;
}

.lg-gate-hero > * {
    position: relative;
    z-index: 1;
}

.lg-gate-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #e4c98a;
    text-decoration: none;
    font-family: Sora, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.lg-gate-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.lg-gate-kicker {
    margin: 4px 0 0;
    color: #c4a056;
    font-family: Sora, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lg-gate-hero h1 {
    margin: 0;
    font-family: Sora, sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.lg-gate-hero h1 span {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c4a056;
    letter-spacing: 0;
}

.lg-gate-seats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.lg-gate-seats li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(196, 160, 86, 0.25);
    background: rgba(7, 20, 12, 0.3);
    font-size: 11px;
    font-weight: 600;
}

.lg-gate-seats .material-icons {
    font-size: 13px;
    color: #c4a056;
}

.lg-gate-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px 32px;
    background: #fff;
    color: #1a2416;
}

.lg-gate-panel-kicker {
    margin: 0 0 4px;
    color: #846d46;
    font-family: Sora, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lg-gate-panel h2 {
    margin: 0 0 12px;
    font-family: Sora, sans-serif;
    font-size: 1.25rem;
    color: #164a28;
}

.lg-gate-form {
    max-width: none;
}

.lg-gate-panel .lg-form {
    gap: 10px;
}

.lg-gate-form .lg-gate-forgot {
    justify-self: end;
    margin-top: -4px;
    min-height: 0;
    padding: 0;
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.lg-gate-panel .lg-form input {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
}

.lg-gate-panel .lg-form button[type="submit"] {
    margin-top: 2px;
    min-height: 40px;
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.lg-gate-panel .lg-status {
    margin: 0 0 16px;
    padding: 14px;
}

.lg-gate-form--eval {
    grid-template-columns: 1fr 1fr;
}

.lg-gate-form--eval .lg-eval-span,
.lg-gate-form--eval > button[type="submit"] {
    grid-column: 1 / -1;
}

.lg-gate-form-list {
    display: grid;
    gap: 10px;
    margin: 0 0 8px;
}

.lg-gate-form-link {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(132, 109, 70, 0.28);
    background: #fbf8f1;
    color: #164a28;
    font-family: Sora, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.lg-gate-form-link:hover,
.lg-gate-form-link:focus {
    border-color: #c4a056;
    background: #fff;
}

.lg-gate-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 14px 0 0;
}

.lg-gate-links a {
    color: #164a28;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.lg-gate-links a:hover,
.lg-gate-links a:focus {
    color: #c4a056;
}

.lg-gate-panel .lg-legal-nav {
    margin-top: 16px;
    justify-content: flex-start;
    gap: 12px;
}

.lg-gate-panel .lg-legal-nav a {
    color: #5c6b52;
    font-size: 11px;
}

.lg-gate-note {
    margin: 0 0 14px;
    color: #5c6b52;
    font-size: 13.5px;
    line-height: 1.45;
}

.lg-gate-portals {
    display: grid;
    gap: 8px;
}

.lg-gate-portals form {
    margin: 0;
}

.lg-gate-portal {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 11px 12px;
    border: 1px solid rgba(132, 109, 70, 0.28);
    border-radius: 12px;
    background: #fbf8f1;
    color: #164a28;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.lg-gate-portal:hover,
.lg-gate-portal:focus {
    border-color: #c4a056;
    background: #fff;
}

.lg-gate-portal .material-icons {
    font-size: 22px;
    color: #c4a056;
}

.lg-gate-portal strong {
    display: block;
    font-family: Sora, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.lg-gate-portal em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    color: #5c6b52;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 720px) {
    .lg-gate-shell {
        grid-template-columns: 1fr;
    }

    .lg-gate-hero {
        padding: 18px 18px 16px;
    }

    .lg-gate-panel {
        padding: 18px 18px 20px;
    }

    .lg-gate-form--eval {
        grid-template-columns: 1fr;
    }
}
