/* The Late 3RDS Room Shells v0.6.0 */

.tlt3rds-room-shell,
.tlt3rds-room-shell * {
    box-sizing: border-box;
}

.tlt3rds-room-shell {
    --tlt3rds-room-bg: #050508;
    --tlt3rds-room-panel: rgba(13, 12, 18, 0.96);
    --tlt3rds-room-border: rgba(255, 255, 255, 0.17);
    --tlt3rds-room-text: #f7f3ea;
    --tlt3rds-room-muted: #b8b1bf;
    --tlt3rds-gm-blue: #70c7ff;
    --tlt3rds-gm-green: #89d6b0;
    --tlt3rds-mocks-purple: #b56cff;
    --tlt3rds-mocks-blue: #70c7ff;
    --tlt3rds-mocks-red: #ff5f6f;
    --tlt3rds-mocks-gold: #e7c776;
    --tlt3rds-hub-green: #9ad27a;
    --tlt3rds-hub-purple: #b56cff;
    --tlt3rds-hub-gold: #e7c776;
    --tlt3rds-hub-blue: #70c7ff;
    --tlt3rds-hub-orange: #ff9148;
    --tlt3rds-hub-pink: #ff6b88;
    position: relative;
    display: block;
    width: 100vw;
    max-width: none !important;
    min-height: 100vh;
    margin: 0 calc(50% - 50vw) !important;
    padding: 0;
    background: var(--tlt3rds-room-bg);
    color: var(--tlt3rds-room-text);
    isolation: isolate;
}

.tlt3rds-room-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* -------------------------------------------------------------------------
   GM SUITE
   ------------------------------------------------------------------------- */

.tlt3rds-gm-scene-section {
    width: 100%;
    max-width: none !important;
    margin: 0;
    background: #020205;
}

.tlt3rds-gm-scene {
    position: relative;
    width: min(100%, 1920px);
    max-width: none !important;
    aspect-ratio: 1672 / 941;
    margin-inline: auto;
    overflow: hidden;
    background: #020205;
}

.tlt3rds-gm-scene picture,
.tlt3rds-gm-scene img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
}

.tlt3rds-gm-scene img {
    object-fit: cover;
}

.tlt3rds-gm-hotspot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.tlt3rds-gm-hotspot {
    position: absolute;
    display: block;
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none !important;
    background: transparent;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.tlt3rds-gm-hotspot span,
.tlt3rds-mocks-hotspot span {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(5, 7, 11, 0.90);
    color: #fff;
    font-size: clamp(0.72rem, 0.9vw, 0.95rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 140ms ease, transform 140ms ease;
    white-space: nowrap;
}

.tlt3rds-gm-hotspot:hover,
.tlt3rds-gm-hotspot:focus-visible {
    border-color: rgba(255, 255, 255, 0.76);
    outline: none;
}

.tlt3rds-gm-hotspot--whiteboard:hover,
.tlt3rds-gm-hotspot--whiteboard:focus-visible {
    background: rgba(112, 199, 255, 0.09);
    box-shadow: inset 0 0 34px rgba(112, 199, 255, 0.17), 0 0 24px rgba(112, 199, 255, 0.20);
}

.tlt3rds-gm-hotspot--ops-board:hover,
.tlt3rds-gm-hotspot--ops-board:focus-visible {
    background: rgba(137, 214, 176, 0.08);
    box-shadow: inset 0 0 34px rgba(137, 214, 176, 0.15), 0 0 24px rgba(137, 214, 176, 0.18);
}

.tlt3rds-gm-hotspot:hover span,
.tlt3rds-gm-hotspot:focus-visible span,
.tlt3rds-mocks-hotspot:hover span,
.tlt3rds-mocks-hotspot:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* Geometry follows the approved 1672 x 941 GM Suite desktop render. */
.tlt3rds-gm-hotspot--whiteboard {
    left: 0.7%;
    top: 4.5%;
    width: 28.5%;
    height: 63%;
}

.tlt3rds-gm-hotspot--ops-board {
    left: 69.4%;
    top: 3.2%;
    width: 29.8%;
    height: 64.5%;
}

.tlt3rds-gm-directory,
.tlt3rds-mocks-directory {
    width: min(100%, 1120px);
    max-width: none !important;
    margin-inline: auto;
    padding: clamp(1rem, 2.2vw, 2rem) clamp(1rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
}

.tlt3rds-gm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
}

.tlt3rds-gm-card,
.tlt3rds-mocks-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name action"
        "description action";
    gap: 0.35rem 1rem;
    min-height: 7.6rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--tlt3rds-room-border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(23, 24, 30, 0.98), var(--tlt3rds-room-panel));
    color: var(--tlt3rds-room-text) !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.tlt3rds-gm-card::before,
.tlt3rds-mocks-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    background: var(--room-card-accent, var(--tlt3rds-gm-blue));
}

.tlt3rds-gm-card--whiteboard { --room-card-accent: var(--tlt3rds-gm-blue); }
.tlt3rds-gm-card--ops-board { --room-card-accent: var(--tlt3rds-gm-green); }

.tlt3rds-gm-card strong,
.tlt3rds-mocks-card strong {
    grid-area: name;
    align-self: end;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.tlt3rds-gm-card span,
.tlt3rds-mocks-card span {
    grid-area: description;
    align-self: start;
    color: var(--tlt3rds-room-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tlt3rds-gm-card b,
.tlt3rds-mocks-card b {
    grid-area: action;
    align-self: center;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tlt3rds-gm-card:hover,
.tlt3rds-gm-card:focus-visible,
.tlt3rds-mocks-card:hover,
.tlt3rds-mocks-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(34, 37, 44, 1), rgba(16, 16, 21, 0.99));
    outline: none;
}

.tlt3rds-gm-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(112, 199, 255, 0.58);
}

/* -------------------------------------------------------------------------
   LIVE MOCKS
   ------------------------------------------------------------------------- */

.tlt3rds-mocks-scene-section {
    width: 100%;
    max-width: none !important;
    margin: 0;
    background: #020205;
}

.tlt3rds-mocks-scene {
    position: relative;
    width: min(100%, 1920px);
    max-width: none !important;
    aspect-ratio: 1672 / 941;
    margin-inline: auto;
    overflow: hidden;
    background: #020205;
}

.tlt3rds-mocks-scene picture,
.tlt3rds-mocks-scene img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
}

.tlt3rds-mocks-scene img {
    object-fit: cover;
}

.tlt3rds-mocks-hotspot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.tlt3rds-mocks-hotspot {
    position: absolute;
    display: block;
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none !important;
    background: transparent;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.tlt3rds-mocks-hotspot:hover,
.tlt3rds-mocks-hotspot:focus-visible {
    border-color: rgba(255, 255, 255, 0.76);
    outline: none;
}

.tlt3rds-mocks-hotspot--teams:hover,
.tlt3rds-mocks-hotspot--teams:focus-visible {
    background: rgba(112, 199, 255, 0.08);
    box-shadow: inset 0 0 34px rgba(112, 199, 255, 0.16), 0 0 24px rgba(112, 199, 255, 0.17);
}

.tlt3rds-mocks-hotspot--station-1:hover,
.tlt3rds-mocks-hotspot--station-1:focus-visible,
.tlt3rds-mocks-hotspot--station-2:hover,
.tlt3rds-mocks-hotspot--station-2:focus-visible,
.tlt3rds-mocks-hotspot--station-3:hover,
.tlt3rds-mocks-hotspot--station-3:focus-visible {
    background: rgba(181, 108, 255, 0.08);
    box-shadow: inset 0 0 34px rgba(181, 108, 255, 0.16), 0 0 24px rgba(181, 108, 255, 0.18);
}

.tlt3rds-mocks-hotspot--raptor:hover,
.tlt3rds-mocks-hotspot--raptor:focus-visible {
    background: rgba(255, 95, 111, 0.08);
    box-shadow: inset 0 0 34px rgba(255, 95, 111, 0.16), 0 0 24px rgba(255, 95, 111, 0.18);
}

.tlt3rds-mocks-hotspot--tutorial:hover,
.tlt3rds-mocks-hotspot--tutorial:focus-visible {
    background: rgba(231, 199, 118, 0.07);
    box-shadow: inset 0 0 34px rgba(231, 199, 118, 0.14), 0 0 24px rgba(231, 199, 118, 0.16);
}

/* Geometry follows the approved 1672 x 941 Live Mocks desktop render. */
.tlt3rds-mocks-hotspot--teams {
    left: 2.5%;
    top: 21.5%;
    width: 18.5%;
    height: 39%;
}

.tlt3rds-mocks-hotspot--station-1 {
    left: 27.0%;
    top: 29.0%;
    width: 11.5%;
    height: 36%;
}

.tlt3rds-mocks-hotspot--station-2 {
    left: 38.8%;
    top: 27.0%;
    width: 12.5%;
    height: 38%;
}

.tlt3rds-mocks-hotspot--station-3 {
    left: 50.2%;
    top: 26.0%;
    width: 13.5%;
    height: 39%;
}

.tlt3rds-mocks-hotspot--raptor {
    left: 64.7%;
    top: 21.0%;
    width: 18.0%;
    height: 52%;
}

.tlt3rds-mocks-hotspot--tutorial {
    left: 87.0%;
    top: 29.0%;
    width: 12.0%;
    height: 37%;
}

.tlt3rds-mocks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
}

.tlt3rds-mocks-card--teams { --room-card-accent: var(--tlt3rds-mocks-blue); }
.tlt3rds-mocks-card--station-1,
.tlt3rds-mocks-card--station-2,
.tlt3rds-mocks-card--station-3 { --room-card-accent: var(--tlt3rds-mocks-purple); }
.tlt3rds-mocks-card--raptor { --room-card-accent: var(--tlt3rds-mocks-red); }
.tlt3rds-mocks-card--tutorial { --room-card-accent: var(--tlt3rds-mocks-gold); }

.tlt3rds-mocks-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(181, 108, 255, 0.55);
}

/* -------------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .tlt3rds-gm-scene,
    .tlt3rds-mocks-scene {
        aspect-ratio: 941 / 1672;
    }

    .tlt3rds-gm-hotspot-layer,
    .tlt3rds-mocks-hotspot-layer {
        display: none;
    }

    .tlt3rds-gm-directory,
    .tlt3rds-mocks-directory {
        padding-top: 0.9rem;
    }

    .tlt3rds-gm-grid,
    .tlt3rds-mocks-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .tlt3rds-gm-card,
    .tlt3rds-mocks-card {
        min-height: 6.5rem;
        padding: 1rem 1.05rem;
        border-radius: 14px;
    }

    .tlt3rds-gm-card strong,
    .tlt3rds-mocks-card strong {
        font-size: 1.08rem;
    }

    .tlt3rds-gm-card span,
    .tlt3rds-mocks-card span {
        font-size: 0.86rem;
    }
}

@media (hover: none) {
    .tlt3rds-gm-hotspot-layer,
    .tlt3rds-mocks-hotspot-layer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tlt3rds-gm-hotspot,
    .tlt3rds-gm-hotspot span,
    .tlt3rds-gm-card,
    .tlt3rds-mocks-hotspot,
    .tlt3rds-mocks-hotspot span,
    .tlt3rds-mocks-card {
        transition: none;
    }
}

/* -------------------------------------------------------------------------
   PRIZE COUNTER
   ------------------------------------------------------------------------- */

.tlt3rds-prize-scene-section {
    width: 100%;
    max-width: none !important;
    margin: 0;
    background: #020205;
}

.tlt3rds-prize-scene {
    position: relative;
    width: min(100%, 1920px);
    max-width: none !important;
    aspect-ratio: 1672 / 941;
    margin-inline: auto;
    overflow: hidden;
    background: #020205;
}

.tlt3rds-prize-scene picture,
.tlt3rds-prize-scene img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
}

.tlt3rds-prize-scene img {
    object-fit: cover;
}

.tlt3rds-prize-hotspot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.tlt3rds-prize-hotspot {
    position: absolute;
    display: block;
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none !important;
    background: transparent;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.tlt3rds-prize-hotspot span {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(5, 7, 11, 0.90);
    color: #fff;
    font-size: clamp(0.72rem, 0.9vw, 0.95rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 140ms ease, transform 140ms ease;
    white-space: nowrap;
}

.tlt3rds-prize-hotspot:hover,
.tlt3rds-prize-hotspot:focus-visible {
    border-color: rgba(255, 255, 255, 0.76);
    outline: none;
}

.tlt3rds-prize-hotspot--free-creative:hover,
.tlt3rds-prize-hotspot--free-creative:focus-visible {
    background: rgba(181, 108, 255, 0.08);
    box-shadow: inset 0 0 34px rgba(181, 108, 255, 0.16), 0 0 24px rgba(181, 108, 255, 0.18);
}

.tlt3rds-prize-hotspot--merch-interest:hover,
.tlt3rds-prize-hotspot--merch-interest:focus-visible {
    background: rgba(255, 145, 72, 0.08);
    box-shadow: inset 0 0 34px rgba(255, 145, 72, 0.16), 0 0 24px rgba(255, 145, 72, 0.18);
}

.tlt3rds-prize-hotspot:hover span,
.tlt3rds-prize-hotspot:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* Geometry follows the approved 1672 x 941 Prize Counter desktop render. */
.tlt3rds-prize-hotspot--free-creative {
    left: 1.8%;
    top: 6.5%;
    width: 65.2%;
    height: 86.0%;
}

.tlt3rds-prize-hotspot--merch-interest {
    left: 67.7%;
    top: 5.5%;
    width: 30.6%;
    height: 87.0%;
}

.tlt3rds-prize-directory {
    width: min(100%, 1120px);
    max-width: none !important;
    margin-inline: auto;
    padding: clamp(1rem, 2.2vw, 2rem) clamp(1rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
}

.tlt3rds-prize-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
}

.tlt3rds-prize-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name action"
        "description action";
    gap: 0.35rem 1rem;
    min-height: 7.6rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--tlt3rds-room-border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(23, 24, 30, 0.98), var(--tlt3rds-room-panel));
    color: var(--tlt3rds-room-text) !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.tlt3rds-prize-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    background: var(--room-card-accent, #b56cff);
}

.tlt3rds-prize-card--free-creative { --room-card-accent: #b56cff; }
.tlt3rds-prize-card--merch-interest { --room-card-accent: #ff9148; }

.tlt3rds-prize-card strong {
    grid-area: name;
    align-self: end;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.tlt3rds-prize-card span {
    grid-area: description;
    align-self: start;
    color: var(--tlt3rds-room-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tlt3rds-prize-card b {
    grid-area: action;
    align-self: center;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tlt3rds-prize-card:hover,
.tlt3rds-prize-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(34, 37, 44, 1), rgba(16, 16, 21, 0.99));
    outline: none;
}

.tlt3rds-prize-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(181, 108, 255, 0.55);
}

@media (max-width: 767px) {
    .tlt3rds-prize-scene {
        aspect-ratio: 864 / 1821;
    }

    .tlt3rds-prize-hotspot-layer {
        display: none;
    }

    .tlt3rds-prize-directory {
        padding-top: 0.9rem;
    }

    .tlt3rds-prize-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .tlt3rds-prize-card {
        min-height: 6.5rem;
        padding: 1rem 1.05rem;
        border-radius: 14px;
    }

    .tlt3rds-prize-card strong {
        font-size: 1.08rem;
    }

    .tlt3rds-prize-card span {
        font-size: 0.86rem;
    }
}

@media (hover: none) {
    .tlt3rds-prize-hotspot-layer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tlt3rds-prize-hotspot,
    .tlt3rds-prize-hotspot span,
    .tlt3rds-prize-card {
        transition: none;
    }
}


/* -------------------------------------------------------------------------
   PLAYER HUB / SCORES
   ------------------------------------------------------------------------- */

.tlt3rds-hub-scene-section {
    width: 100%;
    max-width: none !important;
    margin: 0;
    background: #020205;
}

.tlt3rds-hub-scene {
    position: relative;
    width: min(100%, 1920px);
    max-width: none !important;
    aspect-ratio: 1672 / 941;
    margin-inline: auto;
    overflow: hidden;
    background: #020205;
}

.tlt3rds-hub-scene picture,
.tlt3rds-hub-scene img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
}

.tlt3rds-hub-scene img {
    object-fit: cover;
}

.tlt3rds-hub-hotspot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.tlt3rds-hub-hotspot {
    position: absolute;
    display: block;
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none !important;
    background: transparent;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.tlt3rds-hub-hotspot span {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(5, 7, 11, 0.90);
    color: #fff;
    font-size: clamp(0.72rem, 0.9vw, 0.95rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 140ms ease, transform 140ms ease;
    white-space: nowrap;
}

.tlt3rds-hub-hotspot:hover,
.tlt3rds-hub-hotspot:focus-visible {
    border-color: rgba(255, 255, 255, 0.76);
    outline: none;
}

.tlt3rds-hub-hotspot--account-access:hover,
.tlt3rds-hub-hotspot--account-access:focus-visible {
    background: rgba(154, 210, 122, 0.08);
    box-shadow: inset 0 0 34px rgba(154, 210, 122, 0.16), 0 0 24px rgba(154, 210, 122, 0.18);
}

.tlt3rds-hub-hotspot--high-scores:hover,
.tlt3rds-hub-hotspot--high-scores:focus-visible {
    background: rgba(231, 199, 118, 0.08);
    box-shadow: inset 0 0 34px rgba(231, 199, 118, 0.16), 0 0 24px rgba(231, 199, 118, 0.18);
}

.tlt3rds-hub-hotspot--saves:hover,
.tlt3rds-hub-hotspot--saves:focus-visible {
    background: rgba(181, 108, 255, 0.08);
    box-shadow: inset 0 0 34px rgba(181, 108, 255, 0.16), 0 0 24px rgba(181, 108, 255, 0.18);
}

.tlt3rds-hub-hotspot--token-exchange:hover,
.tlt3rds-hub-hotspot--token-exchange:focus-visible {
    background: rgba(255, 145, 72, 0.08);
    box-shadow: inset 0 0 34px rgba(255, 145, 72, 0.16), 0 0 24px rgba(255, 145, 72, 0.18);
}

.tlt3rds-hub-hotspot:hover span,
.tlt3rds-hub-hotspot:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* Geometry follows the approved 1672 x 941 Player Hub desktop render. */
.tlt3rds-hub-hotspot--account-access {
    left: 29.5%;
    top: 28.5%;
    width: 12.0%;
    height: 27.0%;
}

.tlt3rds-hub-hotspot--high-scores {
    left: 41.8%;
    top: 28.5%;
    width: 11.6%;
    height: 27.0%;
}

.tlt3rds-hub-hotspot--saves {
    left: 53.1%;
    top: 28.5%;
    width: 10.0%;
    height: 27.0%;
}

.tlt3rds-hub-hotspot--token-exchange {
    left: 86.0%;
    top: 34.5%;
    width: 8.8%;
    height: 28.0%;
}

.tlt3rds-hub-directory {
    width: min(100%, 1120px);
    max-width: none !important;
    margin-inline: auto;
    padding: clamp(1rem, 2.2vw, 2rem) clamp(1rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
}

.tlt3rds-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
}

.tlt3rds-hub-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name action"
        "description action";
    gap: 0.35rem 1rem;
    min-height: 7.6rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--tlt3rds-room-border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(23, 24, 30, 0.98), var(--tlt3rds-room-panel));
    color: var(--tlt3rds-room-text) !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.tlt3rds-hub-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    background: var(--room-card-accent, var(--tlt3rds-hub-green));
}

.tlt3rds-hub-card--account-access { --room-card-accent: var(--tlt3rds-hub-green); }
.tlt3rds-hub-card--high-scores { --room-card-accent: var(--tlt3rds-hub-gold); }
.tlt3rds-hub-card--saves { --room-card-accent: var(--tlt3rds-hub-purple); }
.tlt3rds-hub-card--history { --room-card-accent: var(--tlt3rds-hub-blue); }
.tlt3rds-hub-card--quick-nav { --room-card-accent: var(--tlt3rds-hub-pink); }
.tlt3rds-hub-card--token-exchange { --room-card-accent: var(--tlt3rds-hub-orange); }

.tlt3rds-hub-card strong {
    grid-area: name;
    align-self: end;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.tlt3rds-hub-card span {
    grid-area: description;
    align-self: start;
    color: var(--tlt3rds-room-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tlt3rds-hub-card b {
    grid-area: action;
    align-self: center;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tlt3rds-hub-card:hover,
.tlt3rds-hub-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(34, 37, 44, 1), rgba(16, 16, 21, 0.99));
    outline: none;
}

.tlt3rds-hub-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(154, 210, 122, 0.52);
}

@media (max-width: 767px) {
    .tlt3rds-hub-scene {
        aspect-ratio: 941 / 1672;
    }

    .tlt3rds-hub-hotspot-layer {
        display: none;
    }

    .tlt3rds-hub-directory {
        padding-top: 0.9rem;
    }

    .tlt3rds-hub-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .tlt3rds-hub-card {
        min-height: 6.5rem;
        padding: 1rem 1.05rem;
        border-radius: 14px;
    }

    .tlt3rds-hub-card strong {
        font-size: 1.08rem;
    }

    .tlt3rds-hub-card span {
        font-size: 0.86rem;
    }
}

@media (hover: none) {
    .tlt3rds-hub-hotspot-layer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tlt3rds-hub-hotspot,
    .tlt3rds-hub-hotspot span,
    .tlt3rds-hub-card {
        transition: none;
    }
}

/* -------------------------------------------------------------------------
   LEGACY SUITE v0.5.1 // APPROVED VISUAL-LANGUAGE TRANSPLANT
   ------------------------------------------------------------------------- */

.tlt3rds-legacy-shell {
    --legacy-ink: #050607;
    --legacy-charcoal: #0a0c0d;
    --legacy-cream: #eee6d7;
    --legacy-copy: #c8c0b2;
    --legacy-muted: #8f8c84;
    --legacy-orange: #dc722d;
    --legacy-teal: #4f9699;
    --legacy-gold: #d6ae64;
    --legacy-plum: #704266;
    --legacy-line: rgba(238,230,215,.17);
    --legacy-soft-line: rgba(238,230,215,.09);
    min-height: 100svh;
    overflow: hidden;
    padding: clamp(12px, 1.6vw, 24px);
    background: var(--legacy-ink);
    color: var(--legacy-cream);
    font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}

.tlt3rds-legacy-atmosphere {
    position: fixed;
    z-index: -2;
    inset: -18%;
    pointer-events: none;
    opacity: .48;
    background:
        radial-gradient(circle at 16% 17%, rgba(112,66,102,.25), transparent 27%),
        radial-gradient(circle at 85% 12%, rgba(45,119,151,.20), transparent 28%),
        radial-gradient(circle at 52% 58%, rgba(220,114,45,.11), transparent 24%),
        radial-gradient(circle at 78% 70%, rgba(79,150,153,.10), transparent 23%);
    filter: blur(34px);
    animation: tlt3rds-legacy-atmosphere 20s ease-in-out infinite alternate;
}

.tlt3rds-legacy-stars {
    position: fixed;
    z-index: -1;
    inset: 0 0 auto;
    height: min(62vh, 620px);
    pointer-events: none;
    opacity: .20;
    background-image:
        radial-gradient(circle, rgba(238,230,215,.90) 0 1px, transparent 1.6px),
        radial-gradient(circle, rgba(84,157,172,.78) 0 1px, transparent 1.7px),
        radial-gradient(circle, rgba(220,114,45,.67) 0 1px, transparent 1.6px);
    background-position: 0 0, 35px 29px, 79px 17px;
    background-size: 101px 89px, 127px 113px, 157px 141px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.82) 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.82) 55%, transparent 100%);
    animation: tlt3rds-legacy-stars 55s linear infinite;
}

.tlt3rds-legacy-moving-bars {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: .38;
}

.tlt3rds-legacy-moving-bars i {
    position: absolute;
    top: -24%;
    width: 2px;
    height: 154%;
    background: linear-gradient(180deg, transparent 0%, rgba(214,174,100,.66) 44%, rgba(181,108,255,.46) 54%, transparent 100%);
    box-shadow: 0 0 18px rgba(214,174,100,.22);
    transform: rotate(12deg);
    animation: tlt3rds-legacy-bar-drift 18s linear infinite;
}

.tlt3rds-legacy-moving-bars i:nth-child(1) { left: 14%; animation-delay: -2s; }
.tlt3rds-legacy-moving-bars i:nth-child(2) { left: 50%; animation-delay: -9s; }
.tlt3rds-legacy-moving-bars i:nth-child(3) { left: 84%; animation-delay: -13s; }

.tlt3rds-legacy-frame {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(12px, 1.35vw, 20px);
    width: min(100%, 1540px);
    margin: 0 auto;
}

.tlt3rds-legacy-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 10px 14px 10px 16px;
    border: 1px solid var(--legacy-line);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(29,34,35,.82), rgba(7,9,10,.88));
    box-shadow: 0 16px 46px rgba(0,0,0,.40), inset 0 1px rgba(255,255,255,.04);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
}

.tlt3rds-legacy-brand,
.tlt3rds-legacy-home {
    display: inline-flex;
    align-items: center;
}

.tlt3rds-legacy-brand {
    gap: 11px;
}

.tlt3rds-legacy-mark {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    align-items: end;
    gap: 3px;
    width: 30px;
    height: 30px;
    padding: 6px;
    border: 1px solid rgba(214,174,100,.48);
    border-radius: 8px;
    background: rgba(0,0,0,.32);
}

.tlt3rds-legacy-mark i {
    display: block;
    width: 4px;
    background: var(--legacy-gold);
    box-shadow: 0 0 10px rgba(214,174,100,.45);
}

.tlt3rds-legacy-mark i:nth-child(1) { height: 8px; }
.tlt3rds-legacy-mark i:nth-child(2) { height: 17px; }
.tlt3rds-legacy-mark i:nth-child(3) { height: 12px; }

.tlt3rds-legacy-brand-copy b,
.tlt3rds-legacy-brand-copy small {
    display: block;
    line-height: 1.05;
}

.tlt3rds-legacy-brand-copy b {
    font-size: 12px;
    letter-spacing: .18em;
}

.tlt3rds-legacy-brand-copy small {
    margin-top: 5px;
    color: var(--legacy-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .22em;
}

.tlt3rds-legacy-home {
    gap: 8px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(238,230,215,.12);
    border-radius: 8px;
    color: rgba(238,230,215,.75) !important;
    background: rgba(0,0,0,.24);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-decoration: none !important;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tlt3rds-legacy-home:hover,
.tlt3rds-legacy-home:focus-visible {
    border-color: rgba(214,174,100,.55);
    color: var(--legacy-cream) !important;
    outline: none;
    transform: translateY(-1px);
}

.tlt3rds-legacy-home svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tlt3rds-legacy-hero {
    position: relative;
    min-height: clamp(320px, 46vh, 620px);
    overflow: hidden;
    border: 1px solid rgba(238,230,215,.16);
    border-radius: 16px;
    background: #060708;
    box-shadow: 0 28px 70px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.04);
}

.tlt3rds-legacy-hero > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
    object-fit: cover;
    object-position: center 43%;
    filter: saturate(.99) contrast(1.02) brightness(.96);
    transform: scale(1.006);
}

.tlt3rds-legacy-hero-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4,6,7,.70) 0%, rgba(4,6,7,.25) 36%, rgba(4,6,7,.05) 68%, rgba(4,6,7,.18) 100%),
        linear-gradient(180deg, transparent 48%, rgba(4,6,7,.48) 100%);
}

.tlt3rds-legacy-hero-copy {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 4vw, 64px);
    bottom: clamp(22px, 4vw, 52px);
    width: min(760px, 80%);
    text-shadow: 0 4px 24px rgba(0,0,0,.86);
}

.tlt3rds-legacy-hero h1 {
    margin: 0;
    color: #f4eee4;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 900;
    line-height: .78;
    letter-spacing: .012em;
    text-transform: uppercase;
}

.tlt3rds-legacy-hero h1 span {
    display: block;
    margin-bottom: 10px;
    color: var(--legacy-gold);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .10em;
    line-height: 1;
    letter-spacing: .28em;
}

.tlt3rds-legacy-signal {
    display: flex;
    align-items: end;
    gap: 5px;
    width: 178px;
    height: 20px;
    margin-top: 18px;
}

.tlt3rds-legacy-signal i {
    display: block;
    width: 14px;
    height: 4px;
    background: var(--legacy-orange);
    box-shadow: 0 0 12px rgba(220,114,45,.45);
    animation: tlt3rds-legacy-eq 1.8s ease-in-out infinite alternate;
}

.tlt3rds-legacy-signal i:nth-child(2) { animation-delay: -.2s; }
.tlt3rds-legacy-signal i:nth-child(3) { animation-delay: -.55s; }
.tlt3rds-legacy-signal i:nth-child(4) { animation-delay: -.85s; }
.tlt3rds-legacy-signal i:nth-child(5) { animation-delay: -1.1s; }
.tlt3rds-legacy-signal i:nth-child(6) { animation-delay: -.65s; }
.tlt3rds-legacy-signal i:nth-child(7) { animation-delay: -.35s; }

.tlt3rds-legacy-selection {
    display: grid;
    gap: 12px;
}

.tlt3rds-legacy-prompt,
.tlt3rds-legacy-door__mode,
.tlt3rds-legacy-door__status,
.tlt3rds-legacy-foot {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.tlt3rds-legacy-prompt {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: rgba(238,230,215,.65);
    font-size: 9px;
}

.tlt3rds-legacy-prompt::after {
    flex: 1;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(238,230,215,.20), transparent);
}

.tlt3rds-legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.25vw, 19px);
}

.tlt3rds-legacy-door {
    --legacy-door-accent: var(--legacy-gold);
    position: relative;
    display: grid;
    align-content: end;
    min-height: clamp(250px, 30vh, 350px);
    overflow: hidden;
    padding: clamp(18px, 2vw, 28px);
    border: 1px solid color-mix(in srgb, var(--legacy-door-accent) 44%, rgba(238,230,215,.10));
    border-radius: 15px;
    color: var(--legacy-cream) !important;
    background:
        radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--legacy-door-accent) 11%, transparent), transparent 34%),
        linear-gradient(145deg, rgba(14,17,18,.99), rgba(5,7,8,.995));
    box-shadow: 0 24px 58px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.035);
    text-decoration: none !important;
    isolation: isolate;
    transform: translateZ(0);
    transition: transform 220ms cubic-bezier(.2,.8,.2,1), border-color 180ms ease, box-shadow 180ms ease;
}

.tlt3rds-legacy-door::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,.015), transparent 28%),
        repeating-linear-gradient(90deg, transparent 0 47px, rgba(255,255,255,.012) 48px, transparent 49px),
        repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.009) 6px, transparent 7px);
    box-shadow: inset 0 -3px var(--legacy-door-accent);
}

.tlt3rds-legacy-door--playcaller { --legacy-door-accent: var(--legacy-orange); }
.tlt3rds-legacy-door--market-league { --legacy-door-accent: var(--legacy-teal); }
.tlt3rds-legacy-door--legacy-leagues { --legacy-door-accent: var(--legacy-gold); }

.tlt3rds-legacy-door__top {
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tlt3rds-legacy-door__mode,
.tlt3rds-legacy-door__status {
    font-size: 8px;
}

.tlt3rds-legacy-door__mode {
    color: rgba(238,230,215,.56);
}

.tlt3rds-legacy-door__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 25px;
    padding: 5px 8px;
    border: 1px solid rgba(238,230,215,.11);
    border-radius: 999px;
    color: rgba(238,230,215,.67);
    background: rgba(0,0,0,.42);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.tlt3rds-legacy-door__status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--legacy-door-accent);
    box-shadow: 0 0 11px var(--legacy-door-accent);
    animation: tlt3rds-legacy-pulse 1.9s ease-in-out infinite;
}

.tlt3rds-legacy-door__copy {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
    gap: 15px;
}

.tlt3rds-legacy-door strong {
    display: block;
    margin: 0;
    color: var(--legacy-door-accent);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(34px, 3.2vw, 54px);
    font-weight: 900;
    line-height: .90;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0,0,0,.94), 0 0 18px color-mix(in srgb, var(--legacy-door-accent) 20%, transparent);
}

.tlt3rds-legacy-door small {
    display: block;
    max-width: 32ch;
    margin-top: 10px;
    color: rgba(238,230,215,.64);
    font-size: 12px;
    line-height: 1.45;
}

.tlt3rds-legacy-door__enter {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--legacy-door-accent) 55%, transparent);
    border-radius: 50%;
    color: color-mix(in srgb, var(--legacy-door-accent) 80%, #fff 12%);
    background: rgba(0,0,0,.38);
    font-size: 23px;
    line-height: 1;
}

.tlt3rds-legacy-door.is-open:hover,
.tlt3rds-legacy-door.is-open:focus-visible {
    border-color: color-mix(in srgb, var(--legacy-door-accent) 72%, #fff 7%);
    box-shadow: 0 30px 76px rgba(0,0,0,.62), 0 0 34px color-mix(in srgb, var(--legacy-door-accent) 18%, transparent), inset 0 1px rgba(255,255,255,.05);
    outline: none;
    transform: translateY(-6px);
}

.tlt3rds-legacy-door.is-open:focus-visible,
.tlt3rds-legacy-home:focus-visible {
    outline: 3px solid var(--legacy-gold);
    outline-offset: 3px;
}

.tlt3rds-legacy-door.is-pending {
    cursor: default;
}

.tlt3rds-legacy-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 30px;
    padding: 0 4px 4px;
    color: rgba(238,230,215,.42);
    font-size: 8px;
}

.tlt3rds-legacy-foot span:last-child {
    text-align: right;
}

@keyframes tlt3rds-legacy-bar-drift {
    from { transform: translate3d(-16vw, -2%, 0) rotate(12deg); }
    to { transform: translate3d(22vw, 2%, 0) rotate(12deg); }
}

@keyframes tlt3rds-legacy-atmosphere {
    from { transform: translate3d(-2%, -1%, 0) scale(1); }
    to { transform: translate3d(2.4%, 1.7%, 0) scale(1.06); }
}

@keyframes tlt3rds-legacy-stars {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(0,-36px,0); }
}

@keyframes tlt3rds-legacy-eq {
    from { height: 4px; opacity: .55; }
    to { height: 18px; opacity: 1; }
}

@keyframes tlt3rds-legacy-pulse {
    0%, 100% { opacity: .52; transform: scale(.82); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 820px) {
    .tlt3rds-legacy-shell {
        padding: 10px;
    }

    .tlt3rds-legacy-topbar,
    .tlt3rds-legacy-hero,
    .tlt3rds-legacy-selection,
    .tlt3rds-legacy-foot {
        margin-bottom: 10px;
    }

    .tlt3rds-legacy-topbar {
        min-height: 54px;
        padding: 9px 10px;
    }

    .tlt3rds-legacy-home span {
        display: none;
    }

    .tlt3rds-legacy-home {
        width: 38px;
        justify-content: center;
        padding: 7px;
    }

    .tlt3rds-legacy-hero {
        min-height: 46svh;
    }

    .tlt3rds-legacy-hero > img {
        object-position: 52% 44%;
    }

    .tlt3rds-legacy-hero-shade {
        background:
            linear-gradient(90deg, rgba(4,6,7,.72) 0%, rgba(4,6,7,.20) 72%, rgba(4,6,7,.10) 100%),
            linear-gradient(180deg, transparent 42%, rgba(4,6,7,.50) 100%);
    }

    .tlt3rds-legacy-hero-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
    }

    .tlt3rds-legacy-hero h1 {
        font-size: clamp(46px, 14vw, 72px);
    }

    .tlt3rds-legacy-signal {
        width: 132px;
        height: 13px;
        margin-top: 12px;
    }

    .tlt3rds-legacy-signal i {
        width: 10px;
    }

    .tlt3rds-legacy-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tlt3rds-legacy-door {
        min-height: 190px;
        padding: 16px;
    }

    .tlt3rds-legacy-door__top {
        top: 11px;
        right: 11px;
        left: 11px;
    }

    .tlt3rds-legacy-door strong {
        font-size: clamp(34px, 10vw, 46px);
    }

    .tlt3rds-legacy-door small {
        font-size: 11px;
    }

    .tlt3rds-legacy-door__enter {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .tlt3rds-legacy-foot {
        display: grid;
        gap: 5px;
        padding-bottom: 8px;
    }

    .tlt3rds-legacy-foot span:last-child {
        text-align: left;
    }
}

@media (max-width: 430px) {
    .tlt3rds-legacy-brand-copy b { font-size: 11px; }
    .tlt3rds-legacy-brand-copy small { font-size: 7px; }
    .tlt3rds-legacy-hero { min-height: 42svh; }
    .tlt3rds-legacy-hero h1 { font-size: clamp(42px, 13vw, 58px); }
    .tlt3rds-legacy-door { min-height: 182px; }
    .tlt3rds-legacy-foot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .tlt3rds-legacy-atmosphere,
    .tlt3rds-legacy-stars,
    .tlt3rds-legacy-moving-bars i,
    .tlt3rds-legacy-signal i,
    .tlt3rds-legacy-door {
        animation: none !important;
        transition: none !important;
    }
}


/* -------------------------------------------------------------------------
   ARCADE v0.6.0 // SIX-GAME FRONT ROOM
   ------------------------------------------------------------------------- */

.tlt3rds-arcade-shell {
    --tlt3rds-arcade-orange: #ff9148;
    --tlt3rds-arcade-teal: #70d7e7;
    --tlt3rds-arcade-purple: #b56cff;
}

.tlt3rds-arcade-scene-section {
    width: 100%;
    max-width: none !important;
    margin: 0;
    background: #020205;
}

.tlt3rds-arcade-scene {
    position: relative;
    width: min(100%, 1920px);
    max-width: none !important;
    aspect-ratio: 1672 / 941;
    margin-inline: auto;
    overflow: hidden;
    background: #020205;
}

.tlt3rds-arcade-scene picture,
.tlt3rds-arcade-scene img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0;
}

.tlt3rds-arcade-scene img {
    object-fit: cover;
}

.tlt3rds-arcade-hotspot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.tlt3rds-arcade-hotspot,
.tlt3rds-arcade-hub-hotspot {
    position: absolute;
    display: block;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    text-decoration: none !important;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.tlt3rds-arcade-hotspot span,
.tlt3rds-arcade-hub-hotspot span {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.48rem 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(5, 7, 11, 0.90);
    color: #fff;
    font-size: clamp(0.68rem, 0.8vw, 0.9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 140ms ease, transform 140ms ease;
    white-space: nowrap;
}

.tlt3rds-arcade-hotspot:hover,
.tlt3rds-arcade-hotspot:focus-visible,
.tlt3rds-arcade-hub-hotspot:hover,
.tlt3rds-arcade-hub-hotspot:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(181, 108, 255, 0.075);
    box-shadow: inset 0 0 34px rgba(181, 108, 255, 0.16), 0 0 22px rgba(181, 108, 255, 0.16);
    outline: none;
}

.tlt3rds-arcade-hotspot--yard-work:hover,
.tlt3rds-arcade-hotspot--yard-work:focus-visible,
.tlt3rds-arcade-hotspot--junk-work:hover,
.tlt3rds-arcade-hotspot--junk-work:focus-visible {
    background: rgba(255, 145, 72, 0.075);
    box-shadow: inset 0 0 34px rgba(255, 145, 72, 0.15), 0 0 22px rgba(255, 145, 72, 0.15);
}

.tlt3rds-arcade-hotspot--desk-work:hover,
.tlt3rds-arcade-hotspot--desk-work:focus-visible {
    background: rgba(112, 215, 231, 0.075);
    box-shadow: inset 0 0 34px rgba(112, 215, 231, 0.15), 0 0 22px rgba(112, 215, 231, 0.15);
}

.tlt3rds-arcade-hotspot:hover span,
.tlt3rds-arcade-hotspot:focus-visible span,
.tlt3rds-arcade-hub-hotspot:hover span,
.tlt3rds-arcade-hub-hotspot:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* Geometry follows the approved Arcade-Official desktop render. */
.tlt3rds-arcade-hotspot--yard-work { left: 9.8%; top: 28.1%; width: 12.5%; height: 43.5%; }
.tlt3rds-arcade-hotspot--desk-work { left: 22.4%; top: 28.1%; width: 12.4%; height: 43.5%; }
.tlt3rds-arcade-hotspot--junk-work { left: 35.6%; top: 28.1%; width: 12.3%; height: 43.5%; }
.tlt3rds-arcade-hotspot--pressure-1 { left: 49.0%; top: 28.0%; width: 12.6%; height: 44.2%; }
.tlt3rds-arcade-hotspot--pressure-2 { left: 62.2%; top: 28.0%; width: 12.5%; height: 44.2%; }
.tlt3rds-arcade-hotspot--pressure-3 { left: 75.4%; top: 28.0%; width: 12.7%; height: 44.2%; }
.tlt3rds-arcade-hub-hotspot { left: 89.4%; top: 23.8%; width: 8.8%; height: 35.0%; }

.tlt3rds-arcade-directory {
    width: min(100%, 1180px);
    max-width: none !important;
    margin-inline: auto;
    padding: clamp(1rem, 2.2vw, 2rem) clamp(1rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
}

.tlt3rds-arcade-directory-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tlt3rds-arcade-directory-head h2 {
    margin: 0;
    color: #f7f3ea;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.05;
}

.tlt3rds-arcade-directory-head a {
    color: #cfc5d8 !important;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none !important;
}

.tlt3rds-arcade-directory-head a:hover,
.tlt3rds-arcade-directory-head a:focus-visible {
    color: #fff !important;
    outline: none;
}

.tlt3rds-arcade-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.tlt3rds-arcade-card {
    --arcade-card-accent: var(--tlt3rds-arcade-purple);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "eyebrow action"
        "name action"
        "description action";
    gap: 0.28rem 0.9rem;
    min-height: 8.4rem;
    padding: 1.1rem 1.2rem 1.15rem;
    border: 1px solid var(--tlt3rds-room-border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(23, 24, 30, 0.98), var(--tlt3rds-room-panel));
    color: var(--tlt3rds-room-text) !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.tlt3rds-arcade-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    background: var(--arcade-card-accent);
}

.tlt3rds-arcade-card--yard-work,
.tlt3rds-arcade-card--junk-work { --arcade-card-accent: var(--tlt3rds-arcade-orange); }
.tlt3rds-arcade-card--desk-work { --arcade-card-accent: var(--tlt3rds-arcade-teal); }
.tlt3rds-arcade-card--pressure-1,
.tlt3rds-arcade-card--pressure-2,
.tlt3rds-arcade-card--pressure-3 { --arcade-card-accent: var(--tlt3rds-arcade-purple); }

.tlt3rds-arcade-card small {
    grid-area: eyebrow;
    color: color-mix(in srgb, var(--arcade-card-accent) 80%, #fff 20%);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tlt3rds-arcade-card strong {
    grid-area: name;
    align-self: end;
    color: #fff;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    line-height: 1.08;
}

.tlt3rds-arcade-card span {
    grid-area: description;
    color: var(--tlt3rds-room-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.tlt3rds-arcade-card b {
    grid-area: action;
    align-self: center;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tlt3rds-arcade-card:hover,
.tlt3rds-arcade-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(34, 37, 44, 1), rgba(16, 16, 21, 0.99));
    outline: none;
}

@media (max-width: 767px) {
    .tlt3rds-arcade-scene {
        width: 100%;
        aspect-ratio: 941 / 1672;
    }

    .tlt3rds-arcade-scene img {
        object-fit: cover;
    }

    .tlt3rds-arcade-hotspot-layer {
        display: none;
    }

    .tlt3rds-arcade-directory {
        padding: 0.9rem 0.85rem 2.2rem;
    }

    .tlt3rds-arcade-directory-head {
        align-items: start;
        margin-bottom: 0.8rem;
    }

    .tlt3rds-arcade-directory-head h2 {
        font-size: 1.2rem;
    }

    .tlt3rds-arcade-directory-head a {
        max-width: 9.5rem;
        text-align: right;
        font-size: 0.76rem;
    }

    .tlt3rds-arcade-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .tlt3rds-arcade-card {
        min-height: 7rem;
        padding: 1rem 1.05rem;
    }
}

@media (hover: none) {
    .tlt3rds-arcade-hotspot span,
    .tlt3rds-arcade-hub-hotspot span {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tlt3rds-arcade-hotspot,
    .tlt3rds-arcade-hotspot span,
    .tlt3rds-arcade-hub-hotspot,
    .tlt3rds-arcade-hub-hotspot span,
    .tlt3rds-arcade-card {
        transition: none !important;
    }
}
