/* Arcade Time 2026 base theme styles */

/* ---------- Color tokens ---------- */
:root {
    --at-bg-header: #021120;
    --at-bg-hero-tint: #021120;
    --at-neon-blue: #00ccff;
    --at-neon-cyan: #00ccff;
    --at-neon-deep: #00218c;
    --at-nav-text: #ffffff;
    --at-nav-hover: #00ccff;
    --at-social-icon: #E6F0FF;
    --at-body-bg: #050812;
    --at-body-text: #E6F0FF;
    --at-neon-pink: #fc00ff;
    --at-card-bg: linear-gradient(180deg, rgba(13, 20, 38, 0.94) 0%, rgba(8, 14, 28, 0.98) 100%);
    --at-card-bg-solid: #08101f;
    --at-card-border: 1px solid rgba(255,255,255,0.1);
    --at-card-border-cyan-soft: 1px solid rgba(94, 220, 255, 0.2);
    --at-card-border-hover: rgba(0,204,255,0.45);
    --at-card-radius: 10px;
    --at-card-radius-large: 18px;
    --at-card-shadow: 0 16px 40px rgba(0,0,0,0.24);
    --at-card-shadow-cyan-soft: 0 0 24px rgba(94, 220, 255, 0.08);
    --at-card-shadow-hover: 0 20px 48px rgba(0,0,0,0.28), 0 0 20px rgba(0,204,255,0.14);
    --at-card-shadow-cyan-hover: 0 16px 36px rgba(0, 0, 0, 0.2), 0 0 22px rgba(0, 204, 255, 0.12);
    --at-card-media-bg: rgba(0, 204, 255, 0.08);
    --at-card-copy-color: rgba(255,255,255,0.84);
    --at-card-copy-muted: rgba(255,255,255,0.76);
    --at-card-transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    --at-card-cta-border: 1px solid rgba(0,204,255,0.42);
    --at-card-cta-bg: rgba(0,204,255,0.08);

    /* Neon interaction variables */
    --at-neon-pos: 50%;
    --at-neon-alpha: 1;
}

.at-menu-category-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(2.75rem, 5vw, 5.25rem) 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(0, 204, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(2, 7, 18, 0.98), rgba(3, 8, 22, 0.98));
}

.at-menu-category-feature::before,
.at-menu-category-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.at-menu-category-feature::before {
    background:
        linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(2, 7, 18, 0.9) 28%, rgba(2, 7, 18, 0.48) 58%, rgba(2, 7, 18, 0.94) 100%),
        radial-gradient(circle at 78% 18%, rgba(0, 204, 255, 0.34), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(252, 0, 255, 0.22), transparent 36%);
}

.at-menu-category-feature::after {
    background:
        linear-gradient(180deg, rgba(2, 7, 18, 0.28) 0%, rgba(2, 7, 18, 0.64) 58%, rgba(2, 7, 18, 0.96) 100%),
        linear-gradient(135deg, rgba(0, 204, 255, 0.18) 0%, rgba(0, 204, 255, 0.06) 36%, rgba(252, 0, 255, 0.16) 100%);
}

.at-menu-category-feature > .container {
    position: relative;
    z-index: 1;
}

.at-menu-category-feature__background {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #050817;
    pointer-events: none;
}

.at-menu-category-feature__background-image {
    position: absolute;
    inset: -8%;
    opacity: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.05);
}

.at-menu-category-feature__background-image:first-child {
    opacity: 1;
}

.at-menu-category-feature--rotating-bg .at-menu-category-feature__background-image {
    animation-delay: var(--at-menu-category-feature-bg-layer-delay, 0s);
    animation-duration: 32s;
    animation-iteration-count: infinite;
    animation-name: at-menu-category-feature-bg-fade-4;
    animation-timing-function: ease-in-out;
}

.at-menu-category-feature--bg-count-2 .at-menu-category-feature__background-image {
    animation-duration: 16s;
    animation-name: at-menu-category-feature-bg-fade-2;
}

.at-menu-category-feature--bg-count-3 .at-menu-category-feature__background-image {
    animation-duration: 24s;
    animation-name: at-menu-category-feature-bg-fade-3;
}

@keyframes at-menu-category-feature-bg-fade-2 {
    0%, 100% { opacity: 0; }
    8%, 50% { opacity: 1; }
    58% { opacity: 0; }
}

@keyframes at-menu-category-feature-bg-fade-3 {
    0%, 100% { opacity: 0; }
    7%, 33.33% { opacity: 1; }
    40% { opacity: 0; }
}

@keyframes at-menu-category-feature-bg-fade-4 {
    0%, 100% { opacity: 0; }
    6%, 25% { opacity: 1; }
    31% { opacity: 0; }
}

.at-menu-category-feature__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.at-menu-category-feature__header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.at-menu-category-feature__body {
    max-width: 48rem;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
}

.at-menu-category-feature__body p:last-child {
    margin-bottom: 0;
}

.at-menu-category-feature__header-cta,
.at-menu-category-feature__header-cta:link,
.at-menu-category-feature__header-cta:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    align-self: flex-end;
    flex: 0 0 auto;
    margin-bottom: 0.16rem;
    color: #00ccff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-shadow:
        0 5px 15px rgba(1, 4, 18, 0.98),
        0 0 40px rgba(1, 4, 18, 0.86),
        0 0 18px rgba(0, 204, 255, 0.46),
        0 0 14px rgba(252, 0, 255, 0.18);
    text-transform: uppercase;
    filter:
        drop-shadow(0 8px 22px rgba(1, 4, 18, 0.9))
        drop-shadow(0 0 46px rgba(1, 4, 18, 0.72));
    transition:
        color 0.18s ease,
        filter 0.18s ease,
        text-shadow 0.18s ease,
        transform 0.18s ease;
}

.at-menu-category-feature__header-cta::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    filter: drop-shadow(0 0 8px rgba(0, 204, 255, 0.42));
    transform: rotate(45deg);
    transition:
        filter 0.18s ease,
        transform 0.18s ease;
}

.at-menu-category-feature__header-cta:hover,
.at-menu-category-feature__header-cta:focus-visible {
    color: #7ee8ff;
    text-shadow:
        0 5px 16px rgba(1, 4, 18, 1),
        0 0 44px rgba(1, 4, 18, 0.9),
        0 0 22px rgba(0, 204, 255, 0.58),
        0 0 16px rgba(252, 0, 255, 0.2);
    filter:
        drop-shadow(0 9px 26px rgba(1, 4, 18, 0.96))
        drop-shadow(0 0 54px rgba(1, 4, 18, 0.78));
    outline: 0;
    transform: translateX(2px);
}

.at-menu-category-feature__header-cta:hover::after,
.at-menu-category-feature__header-cta:focus-visible::after {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.58));
    transform: translateX(2px) rotate(45deg);
}

.at-menu-category-feature__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.at-menu-category-feature-card {
    position: relative;
    display: flex;
    min-height: 18rem;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(94, 220, 255, 0.2);
    border-radius: 8px;
    background: #08101f;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.at-menu-category-feature-card:hover,
.at-menu-category-feature-card:focus-visible {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.48);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(0, 204, 255, 0.14);
    transform: translateY(-2px);
    outline: none;
}

.at-menu-category-feature-card__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    background: rgba(0, 204, 255, 0.08);
}

.at-menu-category-feature-card__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 78%;
    background: linear-gradient(90deg, rgba(8, 14, 28, 1) 0%, rgba(8, 14, 28, 0.94) 24%, rgba(8, 14, 28, 0.7) 50%, rgba(8, 14, 28, 0.26) 76%, rgba(8, 14, 28, 0) 100%);
    pointer-events: none;
}

.at-menu-category-feature-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-menu-category-feature-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: min(76%, 18rem);
    min-width: 0;
    padding: 1.25rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.at-menu-category-feature-card__title-row {
    display: block;
    min-width: 0;
}

.at-menu-category-feature-card__title {
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.15rem, 1.6vw, 1.42rem);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.at-menu-category-feature-card__price {
    display: block;
    margin-top: 0.35rem;
    color: var(--at-neon-cyan);
    font-size: 0.96rem;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.36);
}

.at-menu-category-feature-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin: 0.65rem 0 1.05rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.at-menu-category-feature-card__cta {
    margin-top: auto;
    color: var(--at-neon-cyan);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.at-menu-category-feature--layout-group_chat {
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 204, 255, 0.22), transparent 32%),
        radial-gradient(circle at 16% 80%, rgba(252, 0, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #050817 0%, #08132c 56%, #050817 100%);
}

.at-menu-category-feature--layout-group_chat::before {
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 0.82) 0%, rgba(5, 8, 18, 0.38) 54%, rgba(5, 8, 18, 0.72) 100%),
        radial-gradient(circle at 76% 34%, rgba(0, 204, 255, 0.18), transparent 32%);
}

.at-menu-category-feature--layout-group_chat::after {
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.1) 0%, rgba(5, 8, 18, 0.42) 100%);
}

.at-menu-category-feature--layout-group_chat .at-menu-category-feature__background {
    display: none;
}

.at-menu-category-feature--layout-group_chat > .container {
    position: relative;
    min-height: clamp(22rem, 30vw, 28rem);
}

.at-menu-category-feature--layout-group_chat .at-menu-category-feature__header {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: min(36rem, 42vw);
    margin-bottom: 0;
    text-align: center;
    transform: translate(-50%, -50%);
}

.at-menu-category-feature--layout-group_chat .at-menu-category-feature__header h2 {
    margin-bottom: 0.78rem;
    font-size: clamp(2.1rem, 4vw, 3.65rem);
}

.at-menu-category-feature--layout-group_chat .at-menu-category-feature__body {
    max-width: 28.5rem;
    margin-right: auto;
    margin-left: auto;
    color: rgba(230, 240, 255, 0.76);
    font-weight: 650;
}

.at-menu-category-feature--layout-group_chat .at-menu-category-feature__header-cta {
    margin-top: 1.2rem;
    justify-content: center;
}

.at-menu-category-feature__chat-stage {
    position: absolute;
    inset: clamp(0.3rem, 0.9vw, 0.75rem) 0;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(17rem, 1fr) minmax(30rem, 0.92fr) minmax(17rem, 1fr);
    grid-template-rows: repeat(6, auto);
    column-gap: clamp(1.35rem, 3vw, 3rem);
    row-gap: clamp(0.74rem, 1.1vw, 1.08rem);
    align-content: center;
    align-items: start;
    min-width: 0;
}

.at-menu-category-feature-card--chat,
.at-menu-category-feature-card--chat:visited,
.at-menu-category-feature-card--chat:hover,
.at-menu-category-feature-card--chat:focus-visible,
.at-menu-category-feature-card--chat:active {
    --at-chat-offset: 0px;
    display: grid;
    grid-template-columns: minmax(6.4rem, 0.78fr) minmax(0, 1fr);
    width: min(100%, 21rem);
    min-height: 0;
    overflow: visible;
    color: #07101e;
    border-color: rgba(230, 240, 255, 0.48);
    border-radius: 22px 22px 22px 7px;
    background: rgba(238, 244, 252, 0.97);
    box-shadow:
        0 20px 44px rgba(1, 4, 18, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.34) inset;
    order: var(--at-chat-mobile-order);
    transform: translateY(var(--at-chat-offset));
}

.at-menu-category-feature-card--chat::after {
    content: "";
    position: absolute;
    bottom: 0.66rem;
    width: 0.68rem;
    height: 0.68rem;
    background: inherit;
    transform: rotate(45deg);
}

.at-menu-category-feature-card--chat-left::after {
    left: -0.22rem;
}

.at-menu-category-feature-card--chat-right,
.at-menu-category-feature-card--chat-right:visited,
.at-menu-category-feature-card--chat-right:hover,
.at-menu-category-feature-card--chat-right:focus-visible,
.at-menu-category-feature-card--chat-right:active {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.42);
    border-radius: 22px 22px 7px 22px;
    background: linear-gradient(135deg, rgba(0, 158, 255, 0.96) 0%, rgba(0, 204, 255, 0.96) 100%);
}

.at-menu-category-feature-card--chat-right::after {
    right: -0.22rem;
}

.at-menu-category-feature-card--chat:nth-child(2) {
    --at-chat-offset: 0px;
}

.at-menu-category-feature__chat-entry--order-1 {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    --at-chat-offset: 0px;
    margin-top: 0;
}

.at-menu-category-feature__chat-entry--order-2 {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    --at-chat-note-offset: 0px;
    margin-top: 1.7rem;
}

.at-menu-category-feature__chat-entry--order-3 {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    --at-chat-offset: 0px;
    margin-top: 0.1rem;
}

.at-menu-category-feature__chat-entry--order-4 {
    grid-column: 3;
    grid-row: 4;
    justify-self: end;
    --at-chat-offset: 0px;
    margin-top: 0;
}

.at-menu-category-feature__chat-entry--order-5 {
    grid-column: 1;
    grid-row: 5;
    justify-self: start;
    --at-chat-offset: 0px;
    margin-top: 0;
}

.at-menu-category-feature__chat-entry--order-6 {
    grid-column: 1;
    grid-row: 6;
    justify-self: start;
    --at-chat-note-offset: 0px;
    margin-top: 1.7rem;
}

.at-menu-category-feature-card--chat:hover,
.at-menu-category-feature-card--chat:focus-visible {
    transform: translateY(calc(var(--at-chat-offset) - 2px));
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__media::before {
    display: none;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__media {
    position: relative;
    inset: auto;
    z-index: 1;
    aspect-ratio: 1.36 / 1;
    min-height: 0;
    width: auto;
    margin: 0.4rem 0 0.4rem 0.4rem;
    overflow: hidden;
    border-radius: 17px;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__content {
    position: relative;
    z-index: 1;
    display: block;
    align-self: start;
    min-height: 0;
    width: 100%;
    padding: 0.66rem 0.86rem 0.62rem;
    text-shadow: none;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__title-row {
    gap: 0.5rem;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__title {
    color: inherit;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.08;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__price {
    color: inherit;
    font-size: 0.82rem;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__description {
    margin: 0.42rem 0 0.42rem;
    color: currentColor;
    font-size: 0.76rem;
    line-height: 1.28;
    opacity: 0.74;
    -webkit-line-clamp: 2;
}

.at-menu-category-feature-card--chat .at-menu-category-feature-card__cta {
    margin-top: 0;
    color: currentColor;
    font-size: 0.64rem;
    opacity: 0.92;
}

.at-menu-category-feature__chat-note {
    --at-chat-note-offset: 0px;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 13rem;
    padding: 0.58rem 0.78rem;
    color: #07101e;
    border-radius: 18px 18px 18px 6px;
    background: rgba(238, 244, 252, 0.98);
    box-shadow: 0 12px 28px rgba(1, 4, 18, 0.22);
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1;
    order: var(--at-chat-mobile-order);
    transform: translateY(var(--at-chat-note-offset));
}

.at-menu-category-feature__chat-note::after {
    content: "";
    position: absolute;
    bottom: 0.46rem;
    width: 0.68rem;
    height: 0.68rem;
    background: inherit;
    transform: rotate(45deg);
}

.at-menu-category-feature__chat-note--left::after {
    left: -0.22rem;
}

.at-menu-category-feature__chat-note--right {
    color: #ffffff;
    border-radius: 18px 18px 6px 18px;
    background: linear-gradient(135deg, rgba(0, 158, 255, 0.96) 0%, rgba(0, 204, 255, 0.96) 100%);
}

.at-menu-category-feature__chat-note--right::after {
    right: -0.22rem;
}

.at-menu-category-feature__chat-note--quick-reply {
    margin-top: 0;
}

.at-menu-category-feature__chat-reaction {
    position: absolute;
    bottom: -0.78rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.45rem;
    padding: 0 0.42rem;
    color: #07101e;
    border: 2px solid #071022;
    border-radius: 999px;
    background: rgba(248, 251, 255, 0.98);
    box-shadow: 0 8px 18px rgba(1, 4, 18, 0.24);
    font-size: 0.78rem;
    line-height: 1;
}

.at-menu-category-feature-card--chat-left .at-menu-category-feature__chat-reaction {
    right: 0.95rem;
}

.at-menu-category-feature-card--chat-right .at-menu-category-feature__chat-reaction {
    left: 0.95rem;
}

@media (min-width: 1200px) {
    .at-menu-category-feature--layout-group_chat {
        padding-top: 0;
        padding-bottom: clamp(1rem, 2vw, 1.85rem);
    }

    .at-menu-category-feature--layout-group_chat > .container {
        min-height: clamp(30rem, 30vw, 32rem);
    }

    .at-menu-category-feature--layout-group_chat .at-menu-category-feature__header {
        top: 54%;
    }

    .at-menu-category-feature__chat-stage {
        display: block;
        inset: 0 0 clamp(0.45rem, 1vw, 0.85rem);
    }

    .at-menu-category-feature-card--chat,
    .at-menu-category-feature__chat-note {
        position: absolute;
        margin-top: 0;
    }

    .at-menu-category-feature__chat-entry--order-1 {
        top: clamp(2.6rem, 7.6vw, 5.6rem);
        right: clamp(0.5rem, 1.4vw, 1.6rem);
    }

    .at-menu-category-feature__chat-entry--order-2 {
        top: clamp(11.6rem, 17.8vw, 14rem);
        right: clamp(0.45rem, 1.35vw, 1.5rem);
        z-index: 3;
    }

    .at-menu-category-feature__chat-entry--order-3 {
        top: clamp(5.8rem, 13vw, 9.9rem);
        left: clamp(0.5rem, 1.2vw, 1.5rem);
    }

    .at-menu-category-feature__chat-entry--order-4 {
        top: clamp(15.35rem, 26.4vw, 19.2rem);
        right: clamp(0.5rem, 1.4vw, 1.6rem);
    }

    .at-menu-category-feature__chat-entry--order-5 {
        top: clamp(15.5rem, 25.6vw, 19.8rem);
        left: clamp(0.5rem, 1.2vw, 1.5rem);
    }

    .at-menu-category-feature__chat-entry--order-6 {
        top: clamp(24.8rem, 35vw, 28.6rem);
        left: clamp(0.45rem, 1.35vw, 1.5rem);
        z-index: 3;
    }
}

.at-menu-category-feature--layout-spotlight {
    --at-menu-spotlight-bg: #050817;
    --at-menu-spotlight-panel-edge: rgba(255, 234, 188, 0.045);
    --at-menu-spotlight-warmth: rgba(171, 91, 31, 0.24);
    --at-menu-spotlight-brass: rgba(244, 181, 86, 0.14);
    --at-menu-spotlight-cyan: rgba(0, 204, 255, 0.09);
    padding: clamp(2.35rem, 4vw, 4.25rem) 0;
    background:
        radial-gradient(ellipse at 18% 18%, var(--at-menu-spotlight-brass), transparent 34%),
        radial-gradient(ellipse at 82% 74%, var(--at-menu-spotlight-warmth), transparent 38%),
        linear-gradient(180deg, #071022 0%, var(--at-menu-spotlight-bg) 48%, #030610 100%);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__background {
    display: none;
}

.at-menu-category-feature--layout-spotlight::before,
.at-menu-category-feature--layout-spotlight::after {
    content: "";
}

.at-menu-category-feature--layout-spotlight::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        repeating-linear-gradient(90deg, transparent 0 8.5rem, var(--at-menu-spotlight-panel-edge) 8.5rem 8.56rem, transparent 8.56rem 17rem),
        linear-gradient(90deg, rgba(5, 8, 23, 0.88) 0%, rgba(5, 8, 23, 0.22) 34%, rgba(5, 8, 23, 0.12) 66%, rgba(5, 8, 23, 0.84) 100%);
    background-size:
        4.25rem 100%,
        17rem 100%,
        100% 100%;
    opacity: 0.72;
}

.at-menu-category-feature--layout-spotlight::after {
    background:
        radial-gradient(ellipse at 28% 18%, rgba(255, 215, 128, 0.08), transparent 28%),
        radial-gradient(ellipse at 74% 88%, var(--at-menu-spotlight-cyan), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 18%, transparent 72%, rgba(0, 0, 0, 0.34) 100%),
        repeating-linear-gradient(0deg, transparent 0 0.58rem, rgba(255, 255, 255, 0.014) 0.58rem 0.64rem);
    mix-blend-mode: screen;
    opacity: 0.86;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__header {
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__header h2 {
    font-size: clamp(1.9rem, 3.25vw, 2.85rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__body {
    max-width: 44rem;
    margin-top: 0.52rem;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__header-cta {
    font-size: 0.68rem;
    text-shadow: none;
    filter: none;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__header-cta::after {
    filter: none;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.82fr);
    gap: clamp(0.78rem, 1.6vw, 1.12rem);
    align-items: stretch;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card {
    min-height: 0;
    border-color: rgba(94, 220, 255, 0.2);
    border-radius: 8px;
    background: rgba(8, 14, 28, 0.9);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card:hover,
.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card:focus-visible {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.48);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(0, 204, 255, 0.14);
    transform: translateY(-2px);
    outline: none;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero {
    min-height: clamp(18.5rem, 29vw, 28rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero .at-menu-category-feature-card__content {
    width: min(64%, 21rem);
    padding: clamp(1.05rem, 2vw, 1.55rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero .at-menu-category-feature-card__title {
    font-size: clamp(1.5rem, 2.45vw, 2.35rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero .at-menu-category-feature-card__description {
    -webkit-line-clamp: 4;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight-list {
    display: grid;
    align-content: start;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(0.68rem, 1.2vw, 0.88rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support {
    min-height: 0;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__media {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__media::before {
    content: "";
    width: 100%;
    background: linear-gradient(90deg, rgba(8, 14, 28, 0.98) 0%, rgba(8, 14, 28, 0.78) 46%, rgba(8, 14, 28, 0.26) 100%);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__content {
    width: min(74%, 18rem);
    padding: clamp(0.72rem, 1.2vw, 0.95rem);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__title {
    font-size: clamp(0.88rem, 1vw, 1rem);
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__price {
    font-size: 0.76rem;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__description {
    margin: 0.38rem 0 0.58rem;
    font-size: 0.76rem;
    line-height: 1.28;
    -webkit-line-clamp: 3;
}

.at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__cta {
    margin-top: auto;
    font-size: 0.6rem;
}

.at-menu-category-feature--layout-polaroid > .container {
    display: grid;
    grid-template-areas:
        "header items"
        "social items";
    grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 0.66fr);
    grid-template-rows: auto auto;
    column-gap: clamp(1.35rem, 3vw, 2.5rem);
    row-gap: 0;
    align-items: center;
}

.at-menu-category-feature--layout-polaroid {
    background:
        radial-gradient(circle at 84% 16%, rgba(0, 204, 255, 0.72), transparent 30%),
        radial-gradient(circle at 18% 26%, rgba(252, 0, 255, 0.64), transparent 34%),
        radial-gradient(circle at 58% 86%, rgba(255, 204, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #11156d 0%, #8b14e8 42%, #fc00ff 100%);
}

.at-menu-category-feature--layout-polaroid::before {
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 0.74) 0%, rgba(12, 16, 49, 0.34) 48%, rgba(5, 8, 18, 0.18) 100%),
        radial-gradient(circle at 70% 34%, rgba(0, 204, 255, 0.34), transparent 34%);
}

.at-menu-category-feature--layout-polaroid::after {
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.06) 0%, rgba(5, 8, 18, 0.18) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 38%);
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__background {
    display: none;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__header {
    grid-area: header;
    display: block;
    margin-bottom: 0;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__header h2 {
    margin: 0.25rem 0 0.65rem;
    font-size: clamp(1.9rem, 3vw, 3.35rem);
    line-height: 1.05;
    text-shadow:
        0 3px 10px rgba(1, 4, 18, 0.78),
        0 0 28px rgba(1, 4, 18, 0.46),
        0 0 26px rgba(0, 204, 255, 0.14);
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__body {
    max-width: 27rem;
    color: rgba(230, 240, 255, 0.76);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 600;
    line-height: 1.48;
    text-shadow:
        0 2px 7px rgba(1, 4, 18, 0.82),
        0 0 18px rgba(1, 4, 18, 0.58);
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__header-cta {
    margin-top: 1.1rem;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__grid {
    grid-area: items;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(1.7rem, 3vw, 2.9rem) 0;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__social {
    grid-area: social;
    gap: 0.22rem;
    justify-content: center;
    margin-top: -0.55rem;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__social .at-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    color: rgba(230, 240, 255, 0.92);
    font-size: 1.25rem;
    text-shadow: none;
    transition:
        color 160ms ease,
        opacity 160ms ease,
        transform 160ms ease;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature__social .at-social-icon:hover,
.at-menu-category-feature--layout-polaroid .at-menu-category-feature__social .at-social-icon:focus {
    color: var(--at-neon-cyan);
    transform: translateY(-1px);
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card {
    --at-menu-polaroid-offset-x: 0rem;
    --at-menu-polaroid-offset-y: 0rem;
    display: block;
    flex: 0 0 clamp(10.5rem, 12vw, 13.5rem);
    width: clamp(10.5rem, 12vw, 13.5rem);
    min-height: 0;
    padding: clamp(0.62rem, 1vw, 0.78rem) clamp(0.62rem, 1vw, 0.78rem) clamp(1rem, 1.5vw, 1.35rem);
    color: #10131b;
    border: 0;
    border-radius: 3px;
    background:
        linear-gradient(180deg, #fffdf4 0%, #f5efe2 100%);
    box-shadow:
        0 18px 42px rgba(1, 4, 18, 0.34),
        0 2px 0 rgba(255, 255, 255, 0.78) inset;
    transform:
        translate(var(--at-menu-polaroid-offset-x), var(--at-menu-polaroid-offset-y))
        rotate(var(--at-menu-polaroid-rotation, -1deg));
    transition:
        box-shadow 160ms ease,
        transform 160ms ease;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card + .at-menu-category-feature-card {
    margin-left: 0;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(2) {
    --at-menu-polaroid-rotation: 1.4deg;
    --at-menu-polaroid-offset-y: 2.35rem;
    margin-left: -0.85rem;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(3) {
    --at-menu-polaroid-rotation: -1.8deg;
    --at-menu-polaroid-offset-y: -1.35rem;
    margin-left: -1.15rem;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(4) {
    --at-menu-polaroid-rotation: 1deg;
    --at-menu-polaroid-offset-y: 2.05rem;
    margin-left: -0.85rem;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:hover,
.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:focus-visible {
    color: #10131b;
    box-shadow:
        0 24px 54px rgba(1, 4, 18, 0.42),
        0 0 26px rgba(0, 204, 255, 0.18),
        0 2px 0 rgba(255, 255, 255, 0.82) inset;
    transform:
        translate(var(--at-menu-polaroid-offset-x), calc(var(--at-menu-polaroid-offset-y) - 3px))
        rotate(0deg);
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #dce7ef;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__media::before {
    content: none;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__content {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: clamp(3.15rem, 4.5vw, 4.35rem);
    padding: 0.72rem 0.2rem 0;
    color: #10131b;
    text-align: center;
    text-shadow: none;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__title {
    display: -webkit-box;
    overflow: hidden;
    color: #10131b;
    font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
    font-size: clamp(1.18rem, 1.45vw, 1.48rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__price,
.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__description,
.at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__cta {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .at-menu-category-feature--rotating-bg .at-menu-category-feature__background-image {
        animation: none;
    }

    .at-menu-category-feature--rotating-bg .at-menu-category-feature__background-image:first-child {
        opacity: 1;
    }

    .at-menu-category-feature--rotating-bg .at-menu-category-feature__background-image:not(:first-child) {
        opacity: 0;
    }
}

@media (max-width: 1199.98px) {
    .at-menu-category-feature--layout-group_chat > .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        min-height: 0;
    }

    .at-menu-category-feature--layout-group_chat .at-menu-category-feature__header {
        position: static;
        width: auto;
        grid-column: 1;
        grid-row: auto;
        max-width: 42rem;
        margin-right: auto;
        margin-left: auto;
        transform: none;
    }

    .at-menu-category-feature--layout-group_chat .at-menu-category-feature__body {
        max-width: 38rem;
    }

    .at-menu-category-feature__chat-stage {
        position: static;
        inset: auto;
        grid-column: 1;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        gap: 0.42rem;
        align-items: stretch;
        width: min(100%, 34rem);
        margin-right: auto;
        margin-left: auto;
        padding-top: 0.1rem;
    }

    .at-menu-category-feature__chat-entry--order-1,
    .at-menu-category-feature__chat-entry--order-2,
    .at-menu-category-feature__chat-entry--order-3,
    .at-menu-category-feature__chat-entry--order-4,
    .at-menu-category-feature__chat-entry--order-5,
    .at-menu-category-feature__chat-entry--order-6 {
        grid-column: auto;
        grid-row: auto;
        justify-self: auto;
        margin-top: 0;
        order: var(--at-chat-mobile-order);
        --at-chat-offset: 0px;
        --at-chat-note-offset: 0px;
    }

    .at-menu-category-feature-card--chat,
    .at-menu-category-feature-card--chat:nth-child(2) {
        grid-template-columns: minmax(6.4rem, 0.78fr) minmax(0, 1fr);
        width: min(82%, 22rem);
        min-height: 0;
        transform: none;
    }

    .at-menu-category-feature-card--chat .at-menu-category-feature-card__media {
        aspect-ratio: 1.36 / 1;
        margin: 0.36rem 0 0.36rem 0.36rem;
    }

    .at-menu-category-feature-card--chat-left {
        align-self: flex-start;
    }

    .at-menu-category-feature-card--chat-right {
        align-self: flex-end;
    }

    .at-menu-category-feature__chat-note--left {
        align-self: flex-start;
    }

    .at-menu-category-feature__chat-note--right {
        align-self: flex-end;
    }

    .at-menu-category-feature__chat-note {
        max-width: min(64%, 13rem);
    }
}

@media (max-width: 991.98px) {
    .at-menu-category-feature-card--chat {
        width: min(84%, 21rem);
    }
}

@media (max-width: 767.98px) {
    .at-menu-category-feature__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.86rem;
    }

    .at-menu-category-feature-card {
        min-height: 13.25rem;
    }

    .at-menu-category-feature-card--chat,
    .at-menu-category-feature-card--chat:nth-child(2) {
        min-height: 0;
    }

    .at-menu-category-feature-card__content {
        padding: 1rem;
    }

    .at-menu-category-feature-card__description {
        margin: 0.52rem 0 0.78rem;
        -webkit-line-clamp: 2;
    }

    .at-menu-category-feature--layout-group_chat .at-menu-category-feature__header-cta {
        align-self: center;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight {
        grid-template-columns: 1fr;
    }

    .at-menu-category-feature--layout-spotlight::before {
        background-size:
            3.5rem 100%,
            14rem 100%,
            100% 100%;
        opacity: 0.58;
    }

    .at-menu-category-feature--layout-spotlight::after {
        opacity: 0.72;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero {
        min-height: clamp(17rem, 38vw, 22rem);
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight-list--count-1 {
        grid-template-columns: 1fr;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight-list--count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support {
        min-height: clamp(12rem, 25vw, 16rem);
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__content {
        width: min(84%, 17rem);
    }

    .at-menu-category-feature--layout-polaroid > .container {
        grid-template-areas:
            "header"
            "items"
            "social";
        grid-template-columns: 1fr;
        gap: 1.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__header {
        text-align: center;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__body {
        max-width: 42rem;
        margin-right: auto;
        margin-left: auto;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__grid {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: clamp(1.45rem, 3.2vw, 2.35rem) 0;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__social {
        justify-content: center;
        margin-top: clamp(1.75rem, 5vw, 2.5rem);
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card {
        flex-basis: clamp(7.25rem, 18vw, 10rem);
        width: clamp(7.25rem, 18vw, 10rem);
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(2) {
        margin-left: -0.65rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(3) {
        margin-left: -0.9rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(4) {
        margin-left: -0.65rem;
    }
}

@media (max-width: 767.98px) {
    .at-menu-category-feature__header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .at-menu-category-feature__header-cta {
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .at-menu-category-feature__grid {
        grid-template-columns: 1fr;
        gap: 0.78rem;
    }

    .at-menu-category-feature-card {
        min-height: 11.25rem;
    }

    .at-menu-category-feature-card__content {
        width: min(82%, 19rem);
        padding: 0.9rem;
    }

    .at-menu-category-feature-card__title {
        font-size: 1.08rem;
        line-height: 1.02;
    }

    .at-menu-category-feature-card__price {
        margin-top: 0.28rem;
        font-size: 0.88rem;
    }

    .at-menu-category-feature-card__description {
        margin: 0.48rem 0 0.72rem;
        font-size: 0.84rem;
        line-height: 1.32;
        -webkit-line-clamp: 2;
    }

    .at-menu-category-feature-card__cta {
        font-size: 0.68rem;
    }

    .at-menu-category-feature__chat-stage {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: min(100%, 92vw);
        padding-top: 0.25rem;
    }

    .at-menu-category-feature-card--chat,
    .at-menu-category-feature-card--chat:nth-child(2) {
        --at-chat-offset: 0px;
        grid-template-columns: minmax(6.2rem, 0.78fr) minmax(0, 1fr);
        width: min(88%, 20rem);
        min-height: 0;
        order: var(--at-chat-mobile-order);
        transform: none;
    }

    .at-menu-category-feature-card--chat .at-menu-category-feature-card__media {
        aspect-ratio: 1.36 / 1;
        margin: 0.4rem 0 0.4rem 0.4rem;
    }

    .at-menu-category-feature-card--chat-left {
        align-self: flex-start;
    }

    .at-menu-category-feature-card--chat-right {
        align-self: flex-end;
    }

    .at-menu-category-feature__chat-note--left {
        align-self: flex-start;
    }

    .at-menu-category-feature__chat-note--right {
        align-self: flex-end;
    }

    .at-menu-category-feature-card--chat:hover,
    .at-menu-category-feature-card--chat:focus-visible {
        transform: translateY(-2px);
    }

    .at-menu-category-feature-card--chat .at-menu-category-feature-card__content {
        width: 100%;
        padding: 0.72rem 0.76rem 0.66rem;
    }

    .at-menu-category-feature-card--chat .at-menu-category-feature-card__title {
        font-size: 0.86rem;
    }

    .at-menu-category-feature-card--chat .at-menu-category-feature-card__description {
        margin: 0.32rem 0 0.48rem;
        font-size: 0.68rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature__spotlight-list {
        grid-template-columns: 1fr;
    }

    .at-menu-category-feature--layout-spotlight {
        background:
            radial-gradient(ellipse at 18% 12%, rgba(244, 181, 86, 0.1), transparent 34%),
            radial-gradient(ellipse at 82% 72%, rgba(171, 91, 31, 0.16), transparent 38%),
            linear-gradient(180deg, #071022 0%, #050817 52%, #030610 100%);
    }

    .at-menu-category-feature--layout-spotlight::before {
        opacity: 0.38;
    }

    .at-menu-category-feature--layout-spotlight::after {
        opacity: 0.54;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero {
        min-height: clamp(18rem, 72vw, 23rem);
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-hero .at-menu-category-feature-card__content {
        width: min(82%, 20rem);
        padding: 1rem;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support {
        min-height: clamp(7.25rem, 28vw, 9rem);
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__content {
        width: min(86%, 18rem);
        padding: 0.62rem;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__title {
        font-size: 0.84rem;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__price {
        font-size: 0.68rem;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__description {
        margin: 0.26rem 0 0.36rem;
        font-size: 0.68rem;
        line-height: 1.18;
        -webkit-line-clamp: 2;
    }

    .at-menu-category-feature--layout-spotlight .at-menu-category-feature-card--spotlight-support .at-menu-category-feature-card__cta {
        font-size: 0.54rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__grid {
        display: flex;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: flex-start;
        justify-content: center;
        column-gap: 0.08rem;
        row-gap: 0;
        padding: 1.4rem 0 1.55rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card {
        --at-menu-polaroid-offset-x: 0rem;
        flex: 0 0 clamp(4.75rem, 24vw, 6.75rem);
        width: clamp(4.75rem, 24vw, 6.75rem);
        padding: 0.48rem 0.48rem 0.82rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card + .at-menu-category-feature-card {
        margin-left: 0;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(1) {
        --at-menu-polaroid-offset-y: -0.35rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(2) {
        --at-menu-polaroid-offset-y: 1.45rem;
        margin-left: -0.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(3) {
        --at-menu-polaroid-offset-y: -0.65rem;
        margin-left: clamp(-1rem, -3.8vw, -0.58rem);
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(4) {
        --at-menu-polaroid-offset-y: 1.2rem;
        margin-left: -0.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:hover,
    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:focus-visible {
        transform:
            translate(var(--at-menu-polaroid-offset-x), calc(var(--at-menu-polaroid-offset-y) - 2px))
            rotate(0deg);
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__content {
        padding-top: 0.55rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__title {
        font-size: 1.08rem;
    }
}

@media (max-width: 379.98px) {
    .at-menu-category-feature-card {
        min-height: 10.75rem;
    }

    .at-menu-category-feature-card__content {
        width: min(86%, 18rem);
        padding: 0.82rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature__grid {
        display: flex;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: flex-start;
        justify-content: center;
        column-gap: 0;
        row-gap: 0;
        padding: 1.3rem 0 1.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card {
        --at-menu-polaroid-offset-x: 0rem;
        flex-basis: clamp(4.25rem, 23vw, 5.2rem);
        width: clamp(4.25rem, 23vw, 5.2rem);
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card + .at-menu-category-feature-card {
        margin-left: 0;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(2) {
        margin-left: -0.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(3) {
        margin-left: -0.68rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card:nth-child(4) {
        margin-left: -0.45rem;
    }

    .at-menu-category-feature--layout-polaroid .at-menu-category-feature-card__content {
        width: auto;
        padding: 0.55rem 0.1rem 0;
    }
}

/* Dining menu */
.at-dining-menu-page {
    background: #050817;
}

.at-menu-section {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.at-dining-menu-hero {
    padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.at-dining-menu-page .at-menu-section {
    padding-top: 0;
}

.at-menu-finder {
    position: sticky;
    top: 0;
    isolation: isolate;
    z-index: 20;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    padding: clamp(0.7rem, 1.6vw, 0.92rem) 0 0;
    color: #e6f0ff;
}

.at-menu-finder::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 42, 170, 0.12), transparent 32%),
        radial-gradient(circle at 86% 90%, rgba(0, 204, 255, 0.12), transparent 36%),
        linear-gradient(135deg, #050812 0%, #0a1024 52%, #050812 100%);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.at-menu-finder::after {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 2px;
    transform: translateX(-50%);
    z-index: 1;
    background: rgba(90, 185, 255, 1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.68),
        0 0 0 1.5px rgba(0, 204, 255, 0.86),
        0 0 10px rgba(0, 204, 255, 0.62);
}

.at-menu-finder__controls {
    align-items: center;
    border: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
    justify-content: space-between;
    margin-bottom: 0.45rem;
    padding: 0;
}

.at-menu-store-band {
    display: grid;
    grid-template-columns: minmax(180px, max-content) minmax(0, 1fr);
    gap: 0.75rem clamp(1.25rem, 4vw, 3rem);
    align-items: center;
    justify-content: stretch;
}

.at-menu-store-band__title {
    color: rgba(230, 240, 255, 0.88);
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.at-menu-store-band__tools {
    display: grid;
    gap: 0.45rem;
    justify-items: end;
    min-width: 0;
}

.at-menu-finder--location .at-menu-store-band__tools {
    align-items: center;
    grid-template-columns: auto minmax(260px, max-content);
    gap: 0.55rem 0.7rem;
    justify-content: flex-end;
}

.at-menu-location-actions {
    gap: 0.65rem;
    min-width: 0;
}

.at-menu-location-actions .at-location-visit__button {
    min-height: 40px;
}

.at-menu-location-actions .btn-neon.at-location-visit__button,
.at-menu-location-actions .btn-neon.at-location-visit__button:link,
.at-menu-location-actions .btn-neon.at-location-visit__button:visited {
    color: #ffffff;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    text-shadow: none;
}

.at-menu-location-actions .at-location-visit__button:hover,
.at-menu-location-actions .at-location-visit__button:focus,
.at-menu-location-actions .btn-neon.at-location-visit__button:hover,
.at-menu-location-actions .btn-neon.at-location-visit__button:focus {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.55);
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    transform: none;
}

.at-menu-finder__search {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.at-menu-finder__input,
input[type="search"].at-menu-finder__input {
    appearance: none;
    -webkit-appearance: none;
    width: min(100%, 220px);
    min-height: 38px;
    padding: 0.48rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    font-weight: 800;
    outline: 0;
}

.at-menu-finder__input::placeholder {
    color: rgba(230, 240, 255, 0.58);
}

.at-menu-finder__input:focus-visible {
    border-color: rgba(0, 204, 255, 0.52);
    outline: 1px solid rgba(0, 204, 255, 0.72);
    outline-offset: 2px;
}

.at-menu-finder__button,
.at-menu-finder__filter {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(230, 240, 255, 0.86);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 800;
    gap: 0.38rem;
    justify-content: center;
    letter-spacing: 0.07em;
    min-height: 38px;
    padding: 0.48rem 0.72rem;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.at-menu-finder__button:not(:disabled):hover,
.at-menu-finder__button:not(:disabled):focus-visible,
.at-menu-finder__filter:hover,
.at-menu-finder__filter:focus-visible,
.at-menu-finder__filter.is-active {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.44);
    color: #ffffff;
    outline: none;
}

.at-menu-finder__button--ghost {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    color: rgba(230, 240, 255, 0.62);
    padding-right: 0.35rem;
    padding-left: 0.35rem;
}

.at-menu-finder__button--ghost:not(:disabled):hover,
.at-menu-finder__button--ghost:not(:disabled):focus-visible {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.at-menu-finder__button--ghost:focus,
.at-menu-finder__button--ghost:focus-visible,
.at-menu-finder__button--ghost:active,
.at-menu-finder__button--ghost:disabled {
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
}

.at-menu-finder__button:disabled {
    cursor: default;
    opacity: 0.42;
}

.at-menu-finder__key {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 0.38rem 0.85rem;
}

.at-menu-finder__key::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 7, 16, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.at-menu-finder__key-scroller {
    display: flex;
    justify-content: center;
    gap: 0.42rem 1rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.at-menu-finder__key-scroller::-webkit-scrollbar {
    display: none;
}

.at-menu-finder__filter {
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(230, 240, 255, 0.76);
    letter-spacing: 0;
    min-height: 28px;
    padding: 0.12rem 0;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

.at-menu-finder__filter:focus,
.at-menu-finder__filter:focus-visible {
    outline: 0;
    box-shadow: none;
}

.at-menu-finder__filter,
.at-menu-finder__filter:link,
.at-menu-finder__filter:visited {
    color: rgba(230, 240, 255, 0.76);
}

.at-menu-finder__filter:hover,
.at-menu-finder__filter:focus-visible {
    background: transparent;
    border-color: transparent;
    color: #ffffff;
}

.at-menu-finder__filter.is-active {
    background: transparent;
    border-color: transparent;
    color: var(--at-neon-cyan);
}

.at-menu-finder__filter.is-active,
.at-menu-finder__filter.is-active:visited {
    color: var(--at-neon-cyan);
}

.at-menu-finder__filter.is-active .at-menu-finder__filter-label,
.at-menu-finder__filter:focus-visible .at-menu-finder__filter-label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.48);
}

@media (max-width: 1199.98px) {
    .at-menu-finder--location .at-menu-store-band {
        grid-template-columns: 1fr;
    }

    .at-menu-finder--location .at-menu-store-band__title {
        display: none;
    }

    .at-menu-finder--location .at-menu-store-band__tools {
        grid-template-columns: 1fr;
        justify-content: stretch;
        justify-items: stretch;
        width: 100%;
    }

    .at-menu-finder--location .at-menu-location-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        width: 100%;
    }

    .at-menu-finder--location .at-menu-location-actions .at-location-visit__button {
        min-width: 0;
        width: 100%;
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }

    .at-menu-finder--location .at-menu-finder__search {
        flex-wrap: nowrap;
        justify-content: stretch;
        width: 100%;
    }

    .at-menu-finder--location .at-menu-finder__input,
    .at-menu-finder--location input[type="search"].at-menu-finder__input {
        flex: 1 1 auto;
        width: auto;
    }
}

.at-menu-category-list {
    display: grid;
    gap: clamp(2.4rem, 5vw, 4.5rem);
}

.at-menu-category-section {
    scroll-margin-top: 128px;
}

.at-menu-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.95rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.24);
}

.at-menu-category-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 900;
    line-height: 1;
    text-align: left;
}

.at-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(112px, auto);
    gap: 0.85rem;
}

.at-menu-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 112px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(12, 21, 43, 0.96);
    color: #fff;
    text-align: left;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 160ms ease, border-color 160ms ease;
}

.at-menu-card:hover,
.at-menu-card:focus-visible {
    border-color: rgba(0, 229, 255, 0.72);
    transform: translateY(-2px);
}

.at-menu-card--highlighted {
    grid-row: span 2;
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: calc(224px + 0.85rem);
    border-color: rgba(0, 229, 255, 0.36);
    background:
        radial-gradient(circle at 10% 15%, rgba(0, 204, 255, 0.12), transparent 36%),
        rgba(12, 21, 43, 0.98);
}

.at-menu-card--highlighted:hover,
.at-menu-card--highlighted:focus-visible {
    border-color: rgba(0, 229, 255, 0.86);
}

.at-menu-card--premium-showcase {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(220px, 40%) minmax(0, 1fr);
    justify-self: center;
    width: min(90%, 920px);
    min-height: 136px;
    margin-top: 2rem;
    border-color: rgba(0, 229, 255, 0.36);
    background: rgba(12, 21, 43, 0.96);
}

.at-menu-card--premium-showcase:hover,
.at-menu-card--premium-showcase:focus-visible {
    border-color: rgba(0, 229, 255, 0.86);
}

.at-menu-card__media {
    display: block;
    min-height: 112px;
    background: rgba(255, 255, 255, 0.06);
}

.at-menu-card--highlighted .at-menu-card__media,
.at-menu-card--premium-showcase .at-menu-card__media {
    min-height: 100%;
}

.at-menu-card__media img,
.at-menu-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-menu-card__placeholder,
.at-menu-modal__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(0, 229, 255, 0.72);
    font-size: 2rem;
}

.at-menu-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.42rem;
    min-width: 0;
    position: relative;
    padding: 1.5rem 4.9rem 0.72rem 0.88rem;
}

.at-menu-card__heading {
    display: block;
    min-width: 0;
}

.at-menu-card__title {
    display: block;
    min-width: 0;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.18;
}

.at-menu-card__price {
    position: absolute;
    top: 0.72rem;
    right: 0.88rem;
    color: var(--at-neon-cyan);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.18;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.36);
}

.at-menu-card__advisory-mark {
    position: relative;
    top: -0.42em;
    margin-left: 0.08rem;
    color: var(--at-neon-cyan);
    font-size: 0.58em;
    font-weight: 900;
    line-height: 0;
}

.at-menu-card--has-meta .at-menu-card__content {
    padding-bottom: 1.55rem;
}

.at-menu-card__meta {
    position: absolute;
    left: 0.88rem;
    right: 0.88rem;
    bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 0;
    color: rgba(0, 229, 255, 0.78);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.at-menu-card__hashtags {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 0.28rem 0.42rem;
    min-width: 0;
}

.at-menu-card__advisory-note {
    flex: 0 0 auto;
    color: rgba(0, 229, 255, 0.78);
    text-align: right;
}

.at-menu-card__description {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.at-menu-card--highlighted .at-menu-card__title {
    font-size: 1.3rem;
}

.at-menu-card--highlighted .at-menu-card__content,
.at-menu-card--premium-showcase .at-menu-card__content {
    padding-right: 5.6rem;
}

.at-menu-card--premium-showcase .at-menu-card__title {
    font-size: 1.55rem;
}

.at-menu-card--highlighted .at-menu-card__price {
    font-size: 1.05rem;
}

.at-menu-card--premium-showcase .at-menu-card__price {
    font-size: 1.12rem;
}

.at-menu-card--premium-showcase .at-menu-card__content {
    background:
        linear-gradient(135deg, rgba(252, 0, 255, 0.14) 0%, rgba(8, 16, 34, 0.98) 48%, rgba(0, 204, 255, 0.12) 100%),
        linear-gradient(180deg, rgba(12, 21, 43, 0.98) 0%, rgba(8, 16, 34, 0.98) 100%);
}

.at-menu-card--highlighted .at-menu-card__description {
    font-size: 0.92rem;
    -webkit-line-clamp: 4;
}

.at-menu-card--premium-showcase .at-menu-card__description {
    font-size: 1rem;
    -webkit-line-clamp: 5;
}

.at-menu-empty {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-align: center;
}

.at-menu-footer-advisory {
    max-width: 920px;
    margin: 2.25rem auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.at-menu-footer-advisory span {
    color: var(--at-neon-cyan);
    font-weight: 900;
}

.at-menu-modal[hidden] {
    display: none;
}

.at-menu-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.at-menu-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 14, 0.82);
}

.at-menu-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    width: min(100%, 920px);
    max-height: min(720px, calc(100vh - 2.5rem));
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 8px;
    background: #081022;
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.at-menu-modal__dialog:focus {
    outline: 0;
}

.at-menu-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
}

.at-menu-modal__media {
    min-height: 360px;
    background: rgba(255, 255, 255, 0.06);
}

.at-menu-modal__content {
    overflow: auto;
    padding: clamp(1.5rem, 4vw, 2.35rem);
}

.at-menu-modal__eyebrow {
    margin: 0 0 0.65rem;
    color: #00e5ff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.at-menu-modal__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.at-menu-modal__heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.08;
}

.at-menu-modal__heading p {
    margin: 0.2rem 0 0;
    color: var(--at-neon-cyan);
    font-size: 1.1rem;
    font-weight: 900;
    white-space: nowrap;
}

.at-menu-modal__description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
}

.at-menu-modal__details {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.at-menu-modal__details[hidden],
.at-menu-modal__advisory[hidden] {
    display: none;
}

.at-menu-modal__details-title {
    margin: 0 0 0.55rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.at-menu-modal__details-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.at-menu-modal__details-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
}

.at-menu-modal__details-list strong {
    color: var(--at-neon-cyan);
    font-weight: 900;
    text-align: right;
}

.at-menu-modal__advisory {
    margin: 1.1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.24);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
}

.at-menu-modal__location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.at-menu-modal__location-list a,
.at-menu-modal__location-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.at-menu-modal__location-toggle {
    border-color: rgba(0, 229, 255, 0.34);
    color: var(--at-neon-cyan);
    cursor: pointer;
}

.at-menu-modal__location-toggle:hover,
.at-menu-modal__location-toggle:focus-visible {
    border-color: rgba(0, 229, 255, 0.76);
    background: rgba(0, 229, 255, 0.12);
    outline: none;
}

.at-menu-modal__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    margin: 0.75rem 0 0;
}

.at-menu-modal__badges span {
    color: var(--at-neon-cyan);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.3;
}

.at-menu-modal__locations {
    margin-top: 1.25rem;
}

.at-menu-modal__locations-title {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.at-menu-modal-open {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .at-menu-card {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 104px;
    }

    .at-menu-card--highlighted {
        grid-template-columns: 150px minmax(0, 1fr);
        min-height: calc(208px + 0.85rem);
    }

    .at-menu-card--premium-showcase {
        grid-template-columns: minmax(180px, 40%) minmax(0, 1fr);
        width: min(90%, 820px);
        min-height: 128px;
        margin-top: 1.85rem;
    }

    .at-menu-card__media {
        min-height: 104px;
    }
}

@media (max-width: 991px) {
    .at-menu-grid {
        grid-template-columns: 1fr;
    }

    .at-menu-card--highlighted {
        grid-row: auto;
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 168px;
    }

    .at-menu-card--premium-showcase {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
        justify-self: center;
        width: 94%;
        min-height: 168px;
        margin-top: 1.65rem;
    }

    .at-menu-card--highlighted .at-menu-card__media {
        min-height: 168px;
    }

    .at-menu-card--premium-showcase .at-menu-card__media {
        min-height: 168px;
    }
}

@media (max-width: 767px) {
    .at-menu-section {
        padding-top: 2.25rem;
    }

    .at-menu-finder {
        top: 0;
        margin-bottom: 2rem;
        padding-top: 0.76rem;
    }

    .at-menu-store-band {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .at-menu-store-band__tools,
    .at-menu-finder__search {
        justify-items: center;
        justify-content: center;
        width: 100%;
    }

    .at-menu-store-band__tools {
        grid-template-columns: 1fr;
    }

    .at-menu-finder--location .at-menu-store-band__tools {
        grid-template-columns: 1fr;
    }

    .at-menu-location-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .at-menu-location-actions .at-location-visit__button {
        min-width: 0;
        width: 100%;
        padding-right: 0.8rem;
        padding-left: 0.8rem;
        font-size: 0.82rem;
        white-space: normal;
    }

    .at-menu-finder__search {
        flex-wrap: nowrap;
        gap: 0.4rem;
    }

    .at-menu-store-band__tools {
        max-width: 34rem;
        margin-right: auto;
        margin-left: auto;
    }

    .at-menu-finder__input,
    input[type="search"].at-menu-finder__input {
        flex: 1 1 auto;
        width: auto;
        min-height: 34px;
        padding: 0.38rem 0.65rem;
        font-size: 0.86rem;
    }

    .at-menu-finder__button {
        flex: 0 0 auto;
        width: auto;
        min-height: 34px;
        padding: 0.28rem 0.2rem;
        font-size: 0.7rem;
    }

    .at-menu-finder__key-scroller {
        justify-content: flex-start;
    }

    .at-menu-category-section {
        scroll-margin-top: 118px;
    }

    .at-menu-category-heading {
        display: block;
    }

    .at-menu-category-heading h2 {
        margin-top: 0.35rem;
        text-align: left;
    }

    .at-menu-modal__dialog {
        grid-template-columns: 1fr;
        overflow: auto;
    }

    .at-menu-modal__media {
        min-height: 260px;
        max-height: 45vh;
    }
}

@media (max-width: 520px) {
    .at-menu-card {
        grid-template-columns: 86px minmax(0, 1fr);
        min-height: 98px;
    }

    .at-menu-card--highlighted {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 148px;
    }

    .at-menu-card--premium-showcase {
        grid-template-columns: 104px minmax(0, 1fr);
        width: 94%;
        min-height: 150px;
        margin-top: 1.45rem;
    }

    .at-menu-card__media {
        min-height: 98px;
    }

    .at-menu-card--highlighted .at-menu-card__media {
        min-height: 148px;
    }

    .at-menu-card--premium-showcase .at-menu-card__media {
        min-height: 150px;
    }

    .at-menu-card__content {
        padding: 1.38rem 4rem 0.62rem 0.72rem;
    }

    .at-menu-card--has-meta .at-menu-card__content {
        padding-bottom: 1.5rem;
    }

    .at-menu-card__meta {
        left: 0.72rem;
        right: 0.72rem;
        bottom: 0.44rem;
        font-size: 0.56rem;
        gap: 0.45rem;
    }

    .at-menu-card__hashtags {
        gap: 0.2rem 0.32rem;
    }

    .at-menu-card--highlighted .at-menu-card__content,
    .at-menu-card--premium-showcase .at-menu-card__content {
        padding-right: 4.5rem;
    }

    .at-menu-card__heading {
        display: block;
    }

    .at-menu-card__title {
        font-size: 0.9rem;
    }

    .at-menu-card__price {
        top: 0.62rem;
        right: 0.72rem;
        font-size: 0.8rem;
    }

    .at-menu-card--highlighted .at-menu-card__title {
        font-size: 1.1rem;
    }

    .at-menu-card--premium-showcase .at-menu-card__title {
        font-size: 1.18rem;
    }

    .at-menu-card--highlighted .at-menu-card__price {
        font-size: 0.9rem;
    }

    .at-menu-card--premium-showcase .at-menu-card__price {
        font-size: 0.95rem;
    }

    .at-menu-card__description {
        font-size: 0.74rem;
        -webkit-line-clamp: 2;
    }

    .at-menu-card--highlighted .at-menu-card__description {
        font-size: 0.82rem;
    }

    .at-menu-card--premium-showcase .at-menu-card__description {
        font-size: 0.84rem;
    }
}

/* ---------- Global ---------- */

html,
body {
    min-height: 100%;
    background-color: var(--at-body-bg);
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--at-body-bg);
    color: var(--at-body-text);
}

#page,
.site {
    min-height: 100vh;
    background-color: var(--at-body-bg);
}

a {
    color: var(--at-nav-text);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--at-nav-hover);
    text-decoration: none;
}

:where(a, button, input, select, textarea, [tabindex]):focus:not(:focus-visible) {
    outline: 0;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid rgba(0, 204, 255, 0.72);
    outline-offset: 3px;
}

/* ---------- Site header ---------- */

.site-header {
    z-index: 1030;
    position: relative;
}

/* ---------- TOP SOCIAL BAR ---------- */

.at-top-bar {
    position: relative;
    padding: 0.7rem 0 0.55rem;
    margin-bottom: 0.3rem;
}

.at-top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.9rem;
}

.at-top-bar .at-social-icons {
    display: flex;
    gap: 0.85rem;
}

.at-top-bar .at-social-icon {
    color: var(--at-social-icon);
    font-size: 1.05rem;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.at-top-bar .at-social-icon:hover,
.at-top-bar .at-social-icon:focus {
    opacity: 1;
    color: var(--at-neon-cyan);
    transform: translateY(-1px);
}

.at-top-bar .at-social-icon i {
    line-height: 1;
}

@media (max-width: 991.98px) {
    .at-top-bar {
        padding: 0.45rem 0 0.3rem;
    }

    .at-top-bar .at-social-icons {
        gap: 0.7rem;
    }

    .at-top-bar .at-social-icon {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1rem;
    }
}

/* ---------- Nav Bar ---------- */

.at-nav-bar {
    background-color: var(--at-bg-header);
    padding-top: 0.25rem;   /* reduced so less non-hover padding area */
    padding-bottom: 0.25rem;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 33, 140, var(--at-neon-alpha));
    overflow: visible;
}

/* Keep both rails, but mask the logo area so the top rail doesn't cut through it */
.at-logo {
    position: relative;
    z-index: 5;
    background-color: var(--at-bg-header);
    padding: 0 0.45rem;
    border-radius: 10px;
}

/* ===========================================================
   REUSABLE NEON RAILS SYSTEM
   - Base rail
   - Blue / Pink
   - Static / Pulse (animated via --at-neon-pos)
   =========================================================== */

.neon-rail {
    position: relative;
}

.neon-rail::before,
.neon-rail::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 2;
}

/* Rails sit on top and bottom edges */
.neon-rail::before {
    top: 0;
}
.neon-rail::after {
    bottom: 0;
}

/* ----- BLUE rail glow (shared by static + pulse) ----- */
.neon-rail--blue-pulse::before,
.neon-rail--blue-pulse::after,
.neon-rail--blue-static::before,
.neon-rail--blue-static::after {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.7),     /* thin white tube */
        0 0 0 1.5px rgba(0, 204, 255, 0.9),  /* thin blue ring */
        0 0 10px rgba(0, 204, 255, 0.65);    /* soft outer glow */
}

/* ----- PINK rail glow (shared by static + pulse) ----- */
.neon-rail--pink-pulse::before,
.neon-rail--pink-pulse::after,
.neon-rail--pink-static::before,
.neon-rail--pink-static::after {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.7),     /* thin white tube */
        0 0 0 1.5px rgba(252, 0, 255, 0.9),  /* thin pink ring */
        0 0 10px rgba(252, 0, 255, 0.7);     /* soft outer glow */
}

/* ---------- BLUE PULSE (animated & cursor responsive) ---------- */
/* TOP rail — mirror pulse */
.neon-rail--blue-pulse::before {
    background-image: linear-gradient(
        90deg,
        rgba(90,185,255,1) 0%,
        rgba(90,185,255,1) calc(100% - var(--at-neon-pos) - 9.5%),
        rgba(255,255,255,1) calc(100% - var(--at-neon-pos) - 5.5%),
        rgba(255,255,255,1) calc(100% - var(--at-neon-pos) + 5.5%),
        rgba(90,185,255,1) calc(100% - var(--at-neon-pos) + 9.5%),
        rgba(90,185,255,1) 100%
    );
}

/* BOTTOM rail — follows pulse */
.neon-rail--blue-pulse::after {
    background-image: linear-gradient(
        90deg,
        rgba(90,185,255,1) 0%,
        rgba(90,185,255,1) calc(var(--at-neon-pos) - 9.5%),
        rgba(255,255,255,1) calc(var(--at-neon-pos) - 5.5%),
        rgba(255,255,255,1) calc(var(--at-neon-pos) + 5.5%),
        rgba(90,185,255,1) calc(var(--at-neon-pos) + 9.5%),
        rgba(90,185,255,1) 100%
    );
}

/* ---------- BLUE STATIC (no animation, centered pulse) ---------- */
.neon-rail--blue-static::before,
.neon-rail--blue-static::after {
    background-image: linear-gradient(
        90deg,
        rgba(90,185,255,1) 0%,
        rgba(90,185,255,1) 40%,
        rgba(255,255,255,1) 47%,
        rgba(255,255,255,1) 53%,
        rgba(90,185,255,1) 60%,
        rgba(90,185,255,1) 100%
    );
}

/* ---------- PINK PULSE (animated & cursor responsive) ---------- */
/* TOP rail — mirror pulse */
.neon-rail--pink-pulse::before {
    background-image: linear-gradient(
        90deg,
        rgba(252,0,255,1) 0%,
        rgba(252,0,255,1) calc(100% - var(--at-neon-pos) - 9.5%),
        rgba(255,255,255,1) calc(100% - var(--at-neon-pos) - 5.5%),
        rgba(255,255,255,1) calc(100% - var(--at-neon-pos) + 5.5%),
        rgba(252,0,255,1) calc(100% - var(--at-neon-pos) + 9.5%),
        rgba(252,0,255,1) 100%
    );
}

/* BOTTOM rail — follows pulse */
.neon-rail--pink-pulse::after {
    background-image: linear-gradient(
        90deg,
        rgba(252,0,255,1) 0%,
        rgba(252,0,255,1) calc(var(--at-neon-pos) - 9.5%),
        rgba(255,255,255,1) calc(var(--at-neon-pos) - 5.5%),
        rgba(255,255,255,1) calc(var(--at-neon-pos) + 5.5%),
        rgba(252,0,255,1) calc(var(--at-neon-pos) + 9.5%),
        rgba(252,0,255,1) 100%
    );
}

/* ---------- PINK STATIC (no animation, centered pulse) ---------- */
.neon-rail--pink-static::before,
.neon-rail--pink-static::after {
    background-image: linear-gradient(
        90deg,
        rgba(252,0,255,1) 0%,
        rgba(252,0,255,1) 40%,
        rgba(255,255,255,1) 47%,
        rgba(255,255,255,1) 53%,
        rgba(252,0,255,1) 60%,
        rgba(252,0,255,1) 100%
    );
}

/* ---------- CONTROLLED TOP-ONLY SECTION RAILS ---------- */

.at-rail-top {
    position: relative;
}

.at-rail-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 2px;
    pointer-events: none;
    background-image: linear-gradient(
        90deg,
        rgba(90, 185, 255, 1) 0%,
        rgba(90, 185, 255, 1) 40%,
        rgba(255, 255, 255, 1) 47%,
        rgba(255, 255, 255, 1) 53%,
        rgba(90, 185, 255, 1) 60%,
        rgba(90, 185, 255, 1) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 1.5px rgba(0, 204, 255, 0.9),
        0 0 10px rgba(0, 204, 255, 0.65);
}

.at-rail-top--soft::before {
    opacity: 1;
}

.at-rail-top--strong::before {
    opacity: 1;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.72),
        0 0 0 1.5px rgba(0, 204, 255, 0.92),
        0 0 14px rgba(0, 204, 255, 0.68);
}

/* ---------- Inner Header ---------- */

.at-nav-inner {
    position: relative;
    z-index: 3;
}

/* ---------- Logo ---------- */

.at-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--at-nav-hover);
}

.at-logo img.custom-logo {
    height: 140px;
    width: auto;
    margin-top: -50px;
    margin-bottom: -50px;
    max-width: none; /* prevent responsive shrinking */
}

/* ===========================================================
   NAV MENU — BASE COLORS / TYPOGRAPHY
   =========================================================== */

.at-main-menu > li > a {
    color: var(--at-neon-cyan) !important;   /* blue default */
    opacity: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
    text-align: center;
    transition:
        color 0.75s ease,
        opacity 0.75s ease,
        transform 0.75s ease;
}

.at-main-menu > li > a:hover,
.at-main-menu > li > a:focus {
    color: var(--at-social-icon) !important; /* off-white hover */
}

.at-main-menu > li.current-menu-item > a,
.at-main-menu > li.current_page_item > a {
    color: var(--at-social-icon) !important; /* off-white active */
    transform: none;
    border-bottom-color: transparent;
}

/* ===========================================================
   NAV MENU — DESKTOP LAYOUT (>= 992px)
   Tall hitbox between rails
   =========================================================== */

@media (min-width: 992px) {
    .at-nav-collapse {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    .at-main-menu {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        flex: 0 1 auto;
        height: auto;
        margin-left: clamp(1.5rem, 3vw, 3.5rem) !important;
        margin-right: clamp(0.75rem, 2vw, 2rem) !important;
    }

    .at-main-menu > li {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        height: auto;
    }

    .at-main-menu > li > a {
        padding: 1.1rem 1.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
    }

    .at-nav-right {
        display: flex;
        align-items: center;
        align-self: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .at-location-cta {
        line-height: 1;
        white-space: nowrap;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .at-main-menu {
        flex: 1 1 auto;
        justify-content: space-evenly;
    }

    .at-main-menu > li {
        flex: 1 1 0;
        min-width: 0;
    }

    .at-main-menu > li > a {
        width: 100%;
        min-height: 2.75rem;
        padding-right: 0.7rem;
        padding-left: 0.7rem;
        font-size: 0.82rem;
        line-height: 1.22;
        letter-spacing: 0.13em;
        white-space: normal;
    }

    .at-nav-right {
        margin-left: auto;
    }

    .at-location-cta {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 0.76rem;
        letter-spacing: 0.12em;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .at-main-menu {
        flex: 1 1 auto;
        justify-content: space-evenly;
        margin-left: clamp(1rem, 2vw, 2rem) !important;
        margin-right: 0.75rem !important;
    }

    .at-main-menu > li {
        flex: 1 1 0;
        min-width: 0;
    }

    .at-main-menu > li > a {
        width: 100%;
        min-height: 2.75rem;
        padding-right: 0.45rem;
        padding-left: 0.45rem;
        font-size: 0.76rem;
        line-height: 1.22;
        letter-spacing: 0.1em;
        white-space: normal;
    }

    .at-nav-right {
        margin-left: auto;
    }

    .at-location-cta {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
}

/* ===========================================================
   NAV MENU — MOBILE LAYOUT (< 992px)
   Right-aligned, closer to top, more space at bottom
   =========================================================== */

@media (max-width: 991.98px) {
    .at-nav-inner {
        position: relative;
        padding-right: 4.25rem; /* reserve space for absolute toggle */
    }

    .navbar-toggler {
        position: absolute;
        right: 0.75rem;
        top: 0.0rem;
        transform: none;
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        line-height: 1;
        z-index: 6;
    }

    /* Collapse panel padding: less top, more bottom */
    .at-nav-collapse {
        padding: 0.5rem 0.75rem 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .at-nav-collapse.show {
        margin-top: 0;
    }

    /* Expanded mobile menu: force right-edge alignment zone */
    #primaryNav.show {
        align-items: flex-end;
    }

    #primaryNav.show .navbar-nav.at-main-menu {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        align-items: flex-end;
    }

    .at-main-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;    /* right-justify under hamburger */
        margin-top: 0.25rem;      /* pull a bit closer to the top */
        margin-right: 0;          /* parent collapse now handles right-edge alignment */
        gap: 0.15rem;             /* tight but readable vertical spacing */
    }

    .at-main-menu > li {
        display: block;
        height: auto;
        margin: 0;
    }

    .at-main-menu > li > a {
        display: inline-block;
        padding: 0.35rem 0.25rem;
        text-align: right;
    }

    .at-nav-right {
        margin-top: 0.4rem;       /* bring Locations button up slightly */
        justify-content: flex-end;
    }
}

/* ---------- Right Side Actions ---------- */

.at-nav-right {
    gap: 1.25rem;
    margin-left: 1.5rem;
}

/* ===========================================================
   NEON BUTTON SYSTEM
   =========================================================== */

.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    font-size: 0.8rem;
    background-color: transparent;
    text-decoration: none;
    transition:
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.at-location-cta {
    position: relative;
    overflow: hidden;
}

.at-location-cta-sizer {
    display: block;
    visibility: hidden;
    pointer-events: none;
}

.at-location-cta-default,
.at-location-cta-hover {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.at-location-cta-default {
    opacity: 1;
    transform: translateY(0);
}

.at-location-cta-hover {
    opacity: 0;
    transform: translateY(10%);
}

.at-location-cta--local:hover .at-location-cta-default,
.at-location-cta--local:focus .at-location-cta-default {
    opacity: 0;
    transform: translateY(-10%);
}

.at-location-cta--local:hover .at-location-cta-hover,
.at-location-cta--local:focus .at-location-cta-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Pink-first CTA */
.btn-neon--pink,
.btn-neon--pink:link,
.btn-neon--pink:visited {
    border: 1px solid #fc00ff;
    color: #fc00ff;
    box-shadow:
        inset 0 0 10px rgba(252,0,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(252,0,255,0.9),
        0 0 14px rgba(252,0,255,0.7);
}

.btn-neon--pink:hover,
.btn-neon--pink:focus {
    border-color: var(--at-neon-cyan);
    color: var(--at-neon-cyan);
    box-shadow:
        inset 0 0 12px rgba(0,204,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(0,204,255,0.9),
        0 0 16px rgba(0,204,255,0.9);
}

.btn-neon--pink:active {
    border-color: #fc00ff;
    color: #fc00ff;
    box-shadow:
        inset 0 0 10px rgba(252,0,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(252,0,255,0.9),
        0 0 14px rgba(252,0,255,0.7);
}

/* Blue-first button */
.btn-neon--blue,
.btn-neon--blue:link,
.btn-neon--blue:visited {
    border: 1px solid var(--at-neon-cyan);
    color: var(--at-neon-cyan);
    box-shadow:
        inset 0 0 10px rgba(0,204,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(0,204,255,0.9),
        0 0 16px rgba(0,204,255,0.9);
}

.btn-neon--blue:hover,
.btn-neon--blue:focus {
    border-color: #fc00ff;
    color: #fc00ff;
    box-shadow:
        inset 0 0 10px rgba(252,0,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(252,0,255,0.9),
        0 0 14px rgba(252,0,255,0.7);
}

.btn-neon--blue:active {
    border-color: var(--at-neon-cyan);
    color: var(--at-neon-cyan);
    box-shadow:
        inset 0 0 10px rgba(0,204,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(0,204,255,0.9),
        0 0 16px rgba(0,204,255,0.9);
}

/* ---------- Social Icons ---------- */

.at-social-icons {
    display: flex;
    gap: 0.6rem;
}

.at-social-icon {
    color: var(--at-social-icon);
    font-size: 0.9rem;
    opacity: 0.9;
}

.at-social-icon:hover,
.at-social-icon:focus {
    opacity: 1;
}

/* ---------- Hero Carousel ---------- */

.at-hero-carousel {
    --at-hero-height-desktop: clamp(300px, 38vh, 420px);
    --at-hero-height-mobile: clamp(240px, 38vh, 340px);
    --at-hero-height: var(--at-hero-height-desktop);
    position: relative;
    height: var(--at-hero-height);
    min-height: var(--at-hero-height);
    max-height: var(--at-hero-height);
    background:
        linear-gradient(135deg, #06152b 0%, #050812 52%, #150929 100%);
    overflow: hidden;
}

.at-hero-carousel--expanded {
    --at-hero-height-desktop: clamp(440px, 64vh, 680px);
    --at-hero-height-mobile: clamp(360px, 58vh, 540px);
}

.at-hero-carousel--compact {
    --at-hero-height-desktop: clamp(300px, 38vh, 420px);
    --at-hero-height-mobile: clamp(240px, 38vh, 340px);
}

.at-hero-carousel-swiper,
.at-hero-carousel .swiper-wrapper,
.at-hero-carousel .swiper-slide {
    height: var(--at-hero-height);
    min-height: var(--at-hero-height);
    max-height: var(--at-hero-height);
}

.at-hero-carousel-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

.at-hero-slide {
    --hero-overlay-strength: 0.56;
    --hero-vignette-strength: 0;
    --hero-image-brightness: 1;
    --hero-image-contrast: 1;
    --hero-image-saturation: 1;
    --hero-image-scale: 1;
    --hero-image-blur: 0px;
    position: relative;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    background:
        radial-gradient(circle at 82% 20%, rgba(252, 0, 255, 0.16) 0%, rgba(252, 0, 255, 0) 32%),
        linear-gradient(135deg, #06152b 0%, #050812 58%, #150929 100%);
    overflow: hidden;
}

.at-hero-slide-media {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(var(--hero-image-brightness)) contrast(var(--hero-image-contrast)) saturate(var(--hero-image-saturation)) blur(var(--hero-image-blur));
    transform: scale(var(--hero-image-scale));
    transform-origin: center center;
}

.at-hero-slide-video {
    pointer-events: none;
}

.at-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 1.22)) 0%,
        rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.79)) 42%,
        rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.98)) 100%
    );
}

.at-hero-slide-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(2, 8, 22, 0) 42%, rgba(2, 8, 22, calc(var(--hero-vignette-strength) * 0.55)) 72%, rgba(2, 8, 22, var(--hero-vignette-strength)) 100%);
}

.at-hero-slide--overlay-brand-center .at-hero-slide-overlay {
    background: radial-gradient(circle at center, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.48)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.72)) 48%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 1.12)) 100%);
}

.at-hero-slide--overlay-top-down .at-hero-slide-overlay {
    background: linear-gradient(180deg, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.68)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.42)) 38%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 1.08)) 100%);
}

.at-hero-slide--overlay-minimal .at-hero-slide-overlay {
    background: linear-gradient(90deg, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.52)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.28)) 50%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.40)) 100%);
}

.at-hero-slide--overlay-none .at-hero-slide-overlay {
    background: transparent;
}

.at-hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.at-hero-slide-content--left { justify-content: flex-start; text-align: left; }
.at-hero-slide-content--center { justify-content: center; text-align: center; }
.at-hero-slide-content--right { justify-content: flex-end; text-align: right; }

.at-hero-copy-wrap {
    max-width: 640px;
    color: #fff;
}

.at-hero-heading-row {
    align-items: flex-start;
    display: flex;
    gap: 0.85rem;
    margin: 0 0 0.75rem;
    max-width: 100%;
}

.at-hero-heading-row--with-body {
    margin-bottom: 1.1rem;
}

.at-hero-slide-content--center .at-hero-heading-row {
    justify-content: center;
}

.at-hero-slide-content--right .at-hero-heading-row {
    justify-content: flex-end;
}

.at-hero-heading-text {
    min-width: 0;
}

.at-hero-slide-icon {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin: clamp(0.3rem, 0.45vw, 0.48rem) 0 0;
    color: #5edcff;
    border: 1px solid rgba(94, 220, 255, 0.5);
    border-radius: 50%;
    background: rgba(2, 16, 34, 0.34);
    box-shadow:
        0 0 0 1px rgba(94, 220, 255, 0.12),
        0 0 24px rgba(94, 220, 255, 0.26);
}

.at-hero-slide-icon svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
}

.at-hero-heading {
    margin: 0 0 0.7rem;
    font-size: clamp(1.8rem, 3.6vw, 3.25rem);
    line-height: 1.04;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.45),
        0 4px 14px rgba(0, 0, 0, 0.42),
        0 10px 28px rgba(0, 0, 0, 0.24);
}

.at-hero-heading-row .at-hero-heading,
.at-hero-heading-row .at-hero-timer {
    margin: 0;
}

.at-hero-heading-text .at-hero-body {
    margin: 0.55rem 0 0;
}

.at-hero-body {
    margin: 0 0 1.1rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.96;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.34),
        0 3px 10px rgba(0, 0, 0, 0.24);
}

.at-hero-timer {
    color: #fff;
    margin: 0 0 1rem;
}

.at-hero-timer-label {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 0.35rem;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.34),
        0 3px 10px rgba(0, 0, 0, 0.24);
}

.at-hero-timer-value {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-weight: 700;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.45),
        0 4px 14px rgba(0, 0, 0, 0.42),
        0 10px 28px rgba(0, 0, 0, 0.24);
}

.at-hero-slide-content--center .at-hero-timer,
.at-hero-slide-content--center .at-hero-timer-value {
    justify-content: center;
    text-align: center;
}

.at-hero-slide-content--right .at-hero-timer,
.at-hero-slide-content--right .at-hero-timer-value {
    justify-content: flex-end;
    text-align: right;
}

.at-hero-slide-content--left .at-hero-timer,
.at-hero-slide-content--left .at-hero-timer-value {
    justify-content: flex-start;
    text-align: left;
}

.at-hero-timer-part {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
}

.at-hero-timer-number {
    display: block;
}

.at-hero-timer-unit {
    display: block;
    font-size: 0.34em;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.at-hero-timer--hero .at-hero-timer-value {
    font-size: clamp(1.8rem, 3.6vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: 0.01em;
}

.at-hero-timer--inline .at-hero-timer-value {
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    line-height: 1.15;
}

.at-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.at-hero-slide-content--center .at-hero-cta-row { justify-content: center; }
.at-hero-slide-content--right .at-hero-cta-row { justify-content: flex-end; }

/* Hero CTA variants: preserve neon system, add clear hierarchy (primary vs secondary). */
.at-hero-cta-row .btn-neon {
    min-width: 10.5rem;
}

.at-hero-cta-row .btn-hero-primary,
.at-hero-cta-row .btn-hero-primary:link,
.at-hero-cta-row .btn-hero-primary:visited {
    border: 1px solid #fc00ff;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(252,0,255,0.26) 0%, rgba(185,0,255,0.36) 100%);
    box-shadow:
        inset 0 0 14px rgba(252,0,255,0.40),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(252,0,255,0.9),
        0 0 18px rgba(252,0,255,0.65);
}

.at-hero-cta-row .btn-hero-primary:hover,
.at-hero-cta-row .btn-hero-primary:focus {
    color: #ffffff;
    border-color: #ff54ff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 16px rgba(255,84,255,0.45),
        0 0 0 1.3px #ffffff,
        0 0 0 2.3px rgba(255,84,255,0.95),
        0 0 22px rgba(252,0,255,0.75);
}

.at-hero-cta-row .btn-hero-secondary,
.at-hero-cta-row .btn-hero-secondary:link,
.at-hero-cta-row .btn-hero-secondary:visited {
    border: 1px solid rgba(0,204,255,0.82);
    color: #d6f8ff;
    background: rgba(2, 22, 45, 0.22);
    box-shadow:
        inset 0 0 8px rgba(0,204,255,0.26),
        0 0 0 1px rgba(255,255,255,0.82),
        0 0 0 2px rgba(0,204,255,0.62),
        0 0 10px rgba(0,204,255,0.42);
}

.at-hero-cta-row .btn-hero-secondary:hover,
.at-hero-cta-row .btn-hero-secondary:focus {
    border-color: rgba(0,204,255,0.95);
    color: #ffffff;
    background: rgba(0, 204, 255, 0.14);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 10px rgba(0,204,255,0.3),
        0 0 0 1px rgba(255,255,255,0.9),
        0 0 0 2px rgba(0,204,255,0.75),
        0 0 13px rgba(0,204,255,0.55);
}

.at-hero-carousel .swiper-button-prev,
.at-hero-carousel .swiper-button-next {
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--at-neon-cyan);
    text-shadow:
        0 0 6px rgba(0, 204, 255, 0.85),
        0 0 14px rgba(0, 204, 255, 0.55);
    transition: color 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease, opacity 0.18s ease;
}

.at-hero-carousel .swiper-button-prev::after,
.at-hero-carousel .swiper-button-next::after {
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    font-weight: 700;
    text-shadow:
        0 0 6px rgba(0, 204, 255, 0.9),
        0 0 16px rgba(0, 204, 255, 0.6);
}

.at-hero-carousel .swiper-button-prev:hover,
.at-hero-carousel .swiper-button-next:hover {
    color: #ffffff;
    transform: translateY(-1px) scale(1.03);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.95),
        0 0 18px rgba(0, 204, 255, 0.78),
        0 0 26px rgba(0, 204, 255, 0.52);
}

.at-hero-carousel .swiper-button-prev:active,
.at-hero-carousel .swiper-button-prev:focus,
.at-hero-carousel .swiper-button-next:active,
.at-hero-carousel .swiper-button-next:focus {
    color: var(--at-neon-cyan);
    transform: none;
    text-shadow:
        0 0 6px rgba(0, 204, 255, 0.85),
        0 0 14px rgba(0, 204, 255, 0.55);
}

.at-hero-carousel .swiper-button-prev:focus-visible,
.at-hero-carousel .swiper-button-next:focus-visible {
    outline: 2px solid rgba(0, 204, 255, 0.9);
    outline-offset: 6px;
    border-radius: 4px;
}

.at-hero-carousel .swiper-button-prev {
    left: clamp(0.75rem, 2vw, 1.5rem);
}

.at-hero-carousel .swiper-button-next {
    right: clamp(0.75rem, 2vw, 1.5rem);
}

.at-hero-carousel .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.at-hero-carousel .swiper-pagination-bullet {
    position: relative;
    width: 2.1rem;
    height: 1rem;
    margin: 0 !important;
    background: transparent;
    border-radius: 999px;
    opacity: 1;
    transform: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.at-hero-carousel .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%) scaleX(0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 0 0 1px rgba(252, 0, 255, 0.64),
        0 0 18px rgba(252, 0, 255, 0.62),
        0 0 36px rgba(252, 0, 255, 0.48),
        0 0 64px rgba(252, 0, 255, 0.34),
        0 0 96px rgba(252, 0, 255, 0.22),
        0 0 140px rgba(252, 0, 255, 0.12);
    opacity: 0.6;
    transition: box-shadow 0.18s ease, transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.at-hero-carousel .swiper-pagination-bullet:hover::before,
.at-hero-carousel .swiper-pagination-bullet:focus::before {
    opacity: 0.88;
    box-shadow:
        0 0 0 1px rgba(252, 0, 255, 0.82),
        0 0 24px rgba(252, 0, 255, 0.72),
        0 0 48px rgba(252, 0, 255, 0.56),
        0 0 82px rgba(252, 0, 255, 0.40),
        0 0 120px rgba(252, 0, 255, 0.26),
        0 0 170px rgba(252, 0, 255, 0.14);
}

.at-hero-carousel .swiper-pagination-bullet-active::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 1px rgba(252, 0, 255, 1),
        0 0 28px rgba(252, 0, 255, 0.9),
        0 0 56px rgba(252, 0, 255, 0.7),
        0 0 92px rgba(252, 0, 255, 0.52),
        0 0 138px rgba(252, 0, 255, 0.34),
        0 0 190px rgba(252, 0, 255, 0.18);
}

@media (max-width: 767.98px) {
    .at-hero-carousel {
        --at-hero-height: var(--at-hero-height-mobile);
    }

    .at-hero-slide-overlay {
        background: linear-gradient(180deg, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.93)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 1.28)) 100%);
    }

    .at-hero-slide--overlay-brand-center .at-hero-slide-overlay {
        background: radial-gradient(circle at center, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.56)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.84)) 52%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 1.18)) 100%);
    }

    .at-hero-slide--overlay-minimal .at-hero-slide-overlay {
        background: linear-gradient(180deg, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.58)) 0%, rgba(2, 8, 22, calc(var(--hero-overlay-strength) * 0.88)) 100%);
    }

    .at-hero-slide--overlay-none .at-hero-slide-overlay {
        background: transparent;
    }

    .at-hero-slide-content,
    .at-hero-slide-content--left,
    .at-hero-slide-content--center,
    .at-hero-slide-content--right {
        justify-content: center;
        text-align: center;
    }

    .at-hero-copy-wrap {
        max-width: 92%;
    }

    .at-hero-heading-row {
        flex-wrap: wrap;
        gap: 0.65rem;
        justify-content: center;
    }

    .at-hero-slide-icon {
        width: 2rem;
        height: 2rem;
        margin-top: 0.18rem;
    }

    .at-hero-slide-icon svg {
        width: 1.12rem;
        height: 1.12rem;
    }

    .at-hero-carousel .swiper-button-prev::after,
    .at-hero-carousel .swiper-button-next::after {
        font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    }

    .at-hero-carousel .swiper-button-prev {
        left: 0.5rem;
    }

    .at-hero-carousel .swiper-button-next {
        right: 0.5rem;
    }

    .at-hero-cta-row {
        justify-content: center;
    }
}

.at-locations-page {
    padding-bottom: 4rem;
}

.at-location-single-page {
    padding-bottom: 0;
}

.at-locations-hero,
.at-location-landing-hero {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.at-location-landing-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(260px, 34vw, 430px);
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(6, 10, 22, 0.98) 0%, rgba(10, 17, 36, 0.92) 46%, rgba(124, 25, 160, 0.34) 100%),
        #070b17;
}

.at-location-landing-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 210, 255, 0.24), transparent 34%),
        linear-gradient(90deg, rgba(3, 7, 16, 0.62) 0%, rgba(3, 7, 16, 0.38) 52%, rgba(3, 7, 16, 0.72) 100%);
    pointer-events: none;
}

.at-location-landing-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(1.08) contrast(1.05);
}

.at-locations-hero__inner,
.at-location-landing-hero__inner {
    max-width: 820px;
}

.at-location-landing-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.at-locations-eyebrow,
.at-location-eyebrow {
    margin: 0 0 0.7rem;
    color: var(--at-neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    font-weight: 700;
}

.at-locations-title,
.at-location-landing-title {
    margin: 0 0 0.7rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.02;
    text-transform: uppercase;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.45),
        0 5px 18px rgba(0, 0, 0, 0.4),
        0 14px 34px rgba(0, 0, 0, 0.22);
}

.at-locations-intro,
.at-location-landing-subtitle,
.at-location-landing-intro {
    color: rgba(255,255,255,0.92);
    max-width: 760px;
}

.at-location-landing-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
}

.at-location-landing-title {
    text-transform: none;
}

.at-location-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 0 1rem;
}

.at-location-meta-pill,
.at-location-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.at-locations-grid-section,
.at-location-placeholder-section {
    padding: clamp(2rem, 5vw, 4rem) 0 0;
}

.at-location-card {
    display: block;
    height: 100%;
    text-decoration: none;
}

.at-location-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--at-card-radius-large);
    border: var(--at-card-border);
    background: var(--at-card-bg);
    box-shadow: var(--at-card-shadow);
    overflow: hidden;
    transition: var(--at-card-transition);
}

.at-location-card:hover .at-location-card__inner,
.at-location-card:focus-visible .at-location-card__inner {
    border-color: var(--at-card-border-hover);
    box-shadow: var(--at-card-shadow-hover);
    transform: translateY(-2px);
}

.at-location-placeholder-box {
    height: 100%;
    border-radius: var(--at-card-radius-large);
    border: var(--at-card-border);
    background: var(--at-card-bg);
    box-shadow: var(--at-card-shadow);
    padding: 1.35rem 1.35rem 1.45rem;
}

.at-location-card__media {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: rgba(0,0,0,0.28);
}

.at-location-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.28) 100%);
    pointer-events: none;
}

.at-location-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-location-card__status--overlay {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    background: rgba(8,14,28,0.78);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    backdrop-filter: blur(6px);
}

.at-location-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.2rem 1.35rem 1.45rem;
}

.at-location-card .at-location-card__title {
    margin: 0 0 0.35rem;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.02;
    text-transform: uppercase;
    text-wrap: normal;
}

.at-location-card .at-location-card__market-line {
    margin: 0 0 0.55rem;
    color: var(--at-neon-cyan);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.at-location-card .at-location-card__full-name {
    margin: 0 0 1rem;
}

.at-location-card__full-name,
.at-location-placeholder-box p,
.at-location-details-list {
    color: var(--at-card-copy-color);
}

.at-location-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    margin-top: auto;
    min-height: 4.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.at-location-card__attractions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.52rem;
    align-items: center;
    min-width: 0;
}

.at-location-card__attraction-icon,
.at-location-card__attraction-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
}

.at-location-card__attraction-icon--coming_soon {
    color: rgba(255,255,255,0.68);
}

.at-attraction-svg {
    display: block;
    width: 1.18em;
    height: 1.18em;
    fill: currentColor;
}

.at-location-card__attraction-more {
    color: var(--at-neon-cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.at-location-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    align-self: center;
    margin-left: auto;
    margin-top: 0;
    padding: 0.62rem 0.82rem;
    border: var(--at-card-cta-border);
    border-radius: 999px;
    background: var(--at-card-cta-bg);
    color: var(--at-neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.at-location-card:hover .at-location-card__cta,
.at-location-card:focus-visible .at-location-card__cta {
    background: var(--at-neon-cyan);
    border-color: var(--at-neon-cyan);
    color: #06101f;
}

.at-location-card:focus-visible {
    outline: 2px solid var(--at-neon-cyan);
    outline-offset: 4px;
}

.at-location-landing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.at-attractions-grid-section,
.at-attraction-single__hero,
.at-attraction-single__content {
    padding: clamp(2rem, 5vw, 4rem) 0 0;
}

.at-attraction-card {
    display: block;
    height: 100%;
    text-decoration: none;
}

.at-attraction-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--at-card-radius-large);
    border: var(--at-card-border);
    background: var(--at-card-bg);
    box-shadow: var(--at-card-shadow);
    padding: 1.35rem;
    transition: var(--at-card-transition);
}

.at-attraction-card:hover .at-attraction-card__inner,
.at-attraction-card:focus-visible .at-attraction-card__inner {
    border-color: var(--at-card-border-hover);
    box-shadow: var(--at-card-shadow-hover);
    transform: translateY(-2px);
}

.at-attraction-card__icon,
.at-attraction-single__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(0,204,255,0.34);
    border-radius: 999px;
    background: rgba(0,204,255,0.08);
    color: var(--at-neon-cyan);
    font-size: 1.3rem;
}

.at-attraction-card__title {
    margin: 1rem 0 0.55rem;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.at-attraction-card p,
.at-attraction-single p,
.at-attraction-single__body,
.at-attraction-available p {
    color: var(--at-card-copy-color);
}

.at-attraction-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    max-width: 100%;
    padding: 0.62rem 0.82rem;
    border: var(--at-card-cta-border);
    border-radius: 999px;
    background: var(--at-card-cta-bg);
    color: var(--at-neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
}

.at-attraction-single h1 {
    margin: 1rem 0 0.7rem;
    color: #fff;
    text-transform: uppercase;
}

.at-attraction-single__price {
    color: var(--at-neon-cyan) !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.at-modules {
    width: 100%;
}

.at-module {
    width: 100%;
}

.at-module--spacing-none {
    margin-block: 0;
}

.at-module--spacing-small {
    margin-block: clamp(1rem, 3vw, 2rem);
}

.at-module--spacing-default {
    margin-block: clamp(1.5rem, 4vw, 3rem);
}

.at-module--spacing-large {
    margin-block: clamp(2.5rem, 6vw, 5rem);
}

.at-module--attraction_pricing {
    margin-block: 0;
}

.at-module > .at-attraction-gallery {
    margin-block: 0;
}

.at-module--content_feature {
    margin-block: 0;
    background:
        linear-gradient(135deg, rgba(0, 204, 255, 0.09) 0%, rgba(5, 8, 18, 0.98) 44%, rgba(252, 0, 255, 0.06) 100%),
        linear-gradient(180deg, #050812 0%, #0a1024 56%, #050812 100%);
}

.at-module--view_menu_cta {
    margin-block: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 78% 50%, rgba(5, 8, 18, 0.58) 0%, rgba(5, 8, 18, 0.34) 26%, rgba(5, 8, 18, 0) 50%),
        radial-gradient(circle at 70% 46%, rgba(252, 0, 255, 0.28) 0%, rgba(252, 0, 255, 0.12) 32%, rgba(252, 0, 255, 0) 62%),
        radial-gradient(circle at 88% 18%, rgba(0, 204, 255, 0.4) 0%, rgba(0, 204, 255, 0.15) 26%, rgba(0, 204, 255, 0) 52%),
        radial-gradient(circle at 20% 58%, rgba(0, 204, 255, 0.16) 0%, rgba(0, 204, 255, 0) 40%),
        linear-gradient(90deg, rgba(5, 8, 18, 1) 0%, rgba(9, 13, 35, 0.98) 44%, rgba(18, 19, 67, 0.98) 100%),
        linear-gradient(180deg, #050812 0%, #10143a 100%);
    background-color: #050812;
}

.at-module--view_menu_cta + .at-module.at-rail-top::before {
    content: none;
}

.at-content-feature {
    color: #ffffff;
    padding: clamp(2.4rem, 5vw, 4.6rem) 0;
}

.at-content-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: clamp(1.4rem, 4vw, 3.4rem);
    align-items: center;
}

.at-content-feature--image-left .at-content-feature__media {
    order: -1;
}

.at-content-feature--text-only .at-content-feature__inner {
    grid-template-columns: minmax(0, 880px);
    justify-content: center;
}

.at-content-feature--text-only .at-content-feature__content {
    text-align: center;
}

.at-content-feature__content {
    min-width: 0;
}

.at-content-feature__content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.98;
    text-transform: none;
    text-shadow:
        0 0 18px rgba(0, 204, 255, 0.2),
        0 0 28px rgba(252, 0, 255, 0.12);
}

.at-content-feature__body {
    max-width: 780px;
    margin-top: 1rem;
    color: rgba(230, 240, 255, 0.82);
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.62;
}

.at-content-feature--text-only .at-content-feature__body {
    margin-right: auto;
    margin-left: auto;
}

#food-safety-advisory.at-module--content_feature {
    background: #050812;
}

#food-safety-advisory .at-content-feature {
    padding: clamp(1.1rem, 2.5vw, 1.7rem) 0;
}

#food-safety-advisory .at-content-feature__inner {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
    padding-top: clamp(0.9rem, 2vw, 1.2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#food-safety-advisory .at-location-eyebrow {
    margin-bottom: 0.45rem;
    color: rgba(0, 204, 255, 0.82);
    font-size: 0.72rem;
}

#food-safety-advisory .at-content-feature__content h2 {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1.15;
    text-shadow: none;
}

#food-safety-advisory .at-content-feature__body {
    max-width: 760px;
    margin-top: 0.55rem;
    color: rgba(230, 240, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

.at-content-feature__body > :last-child {
    margin-bottom: 0;
}

.at-content-feature__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem clamp(1.1rem, 3vw, 1.8rem);
    max-width: 820px;
    margin: clamp(1rem, 2.5vw, 1.5rem) 0 0;
    padding: 0;
    list-style: none;
}

.at-content-feature--text-only .at-content-feature__points {
    margin-right: auto;
    margin-left: auto;
}

.at-content-feature__points li {
    position: relative;
    min-width: 0;
    padding: 0.12rem 0 0.12rem 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
    line-height: 1.34;
}

.at-content-feature__points li::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    bottom: 0.2rem;
    left: 0;
    width: 3px;
    min-height: 1.45em;
    border-radius: 999px;
    background: var(--at-neon-cyan);
    box-shadow:
        0 0 8px rgba(0, 204, 255, 0.7),
        0 0 16px rgba(0, 204, 255, 0.22);
}

.at-content-feature__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: clamp(1.1rem, 3vw, 1.8rem);
}

.at-content-feature__cta-row .btn-neon {
    margin-top: 0;
}

.at-content-feature--image-treatment-centered_background .at-content-feature__cta-row {
    justify-content: center;
}

.at-content-feature__media {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.at-content-feature__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.at-content-feature--image-treatment-edge_fade,
.at-content-feature--image-treatment-centered_background {
    position: relative;
    overflow: hidden;
}

.at-content-feature--image-treatment-edge_fade {
    padding: 0;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__inner {
    display: block;
    min-height: clamp(24rem, 38vw, 32rem);
    padding: clamp(1.4rem, 4vw, 3.4rem) 0;
}

.at-content-feature--image-treatment-edge_fade .container,
.at-content-feature--image-treatment-centered_background .container {
    position: relative;
    z-index: 3;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__content,
.at-content-feature--image-treatment-centered_background .at-content-feature__content {
    position: relative;
    z-index: 3;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__content {
    width: min(54%, 46rem);
}

.at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .at-content-feature__content {
    margin-left: auto;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media,
.at-content-feature--image-treatment-centered_background .at-content-feature__media {
    position: absolute;
    z-index: 1;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: rgba(0, 204, 255, 0.08);
    box-shadow: none;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media {
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgb(5, 8, 18);
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media::before,
.at-content-feature--image-treatment-centered_background .at-content-feature__media::before {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 1) 0%, rgba(5, 8, 18, 0.96) 34%, rgba(5, 8, 18, 0.58) 55%, rgba(5, 8, 18, 0.18) 78%, rgba(5, 8, 18, 0.06) 100%),
        linear-gradient(180deg, rgba(5, 8, 18, 0.2) 0%, rgba(5, 8, 18, 0.08) 45%, rgba(5, 8, 18, 0.26) 100%);
}

.at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .at-content-feature__media::before {
    background:
        linear-gradient(270deg, rgba(5, 8, 18, 1) 0%, rgba(5, 8, 18, 0.96) 34%, rgba(5, 8, 18, 0.58) 55%, rgba(5, 8, 18, 0.18) 78%, rgba(5, 8, 18, 0.06) 100%),
        linear-gradient(180deg, rgba(5, 8, 18, 0.2) 0%, rgba(5, 8, 18, 0.08) 45%, rgba(5, 8, 18, 0.26) 100%);
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media img,
.at-content-feature--image-treatment-centered_background .at-content-feature__media img {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.at-content-feature--image-treatment-edge_fade .at-content-feature__media img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 66%;
    object-position: right center;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 44%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 44%, rgba(0, 0, 0, 1) 100%);
}

.at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .at-content-feature__media img {
    right: auto;
    left: 0;
    object-position: left center;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 100%);
}

.at-content-feature--image-treatment-centered_background .at-content-feature__inner {
    display: grid;
    min-height: clamp(28rem, 48vw, 40rem);
    padding: clamp(2rem, 5vw, 4.2rem) 0;
    place-items: center;
    text-align: center;
}

.at-content-feature--image-treatment-centered_background .at-content-feature__content {
    max-width: 58rem;
}

.at-content-feature--image-treatment-centered_background .at-content-feature__body,
.at-content-feature--image-treatment-centered_background .at-content-feature__points {
    margin-right: auto;
    margin-left: auto;
}

.at-content-feature--image-treatment-centered_background .at-content-feature__media {
    inset: 0;
    width: 100%;
    height: 100%;
}

.at-content-feature--image-treatment-centered_background .at-content-feature__media::before {
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(5, 8, 18, 0.34) 0%, rgba(5, 8, 18, 0.72) 58%, rgba(5, 8, 18, 0.94) 100%),
        linear-gradient(180deg, rgba(5, 8, 18, 0.72) 0%, rgba(5, 8, 18, 0.84) 100%);
}

.at-module--game_pass_menu {
    margin-block: 0;
    background:
        linear-gradient(135deg, rgba(0, 204, 255, 0.12) 0%, rgba(5, 8, 18, 0.98) 42%, rgba(252, 0, 255, 0.08) 100%),
        linear-gradient(180deg, #050812 0%, #0a1024 52%, #050812 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(0, 204, 255, 0.08);
}

.at-module--event_packages {
    margin-block: 0;
    background:
        linear-gradient(135deg, rgba(0, 204, 255, 0.1) 0%, rgba(5, 8, 18, 0.98) 46%, rgba(252, 0, 255, 0.07) 100%),
        linear-gradient(180deg, #050812 0%, #0d1230 52%, #050812 100%);
}

.at-event-packages {
    color: #fff;
    padding: clamp(2rem, 4vw, 3.6rem) 0;
}

.at-event-packages__layout {
    display: grid;
    gap: clamp(1.15rem, 3vw, 2rem);
}

.at-event-packages__header {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
}

.at-event-packages__eyebrow {
    margin: 0 0 0.42rem;
    color: var(--at-neon-cyan);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(0, 204, 255, 0.46);
}

.at-event-packages__header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.05;
    text-transform: none;
}

.at-event-packages__header p:not(.at-event-packages__eyebrow) {
    max-width: 38rem;
    margin: 0.58rem auto 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.5;
}

.at-event-packages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(0.9rem, 2vw, 1.35rem);
    row-gap: clamp(1.25rem, 2.4vw, 1.75rem);
}

@media (min-width: 1200px) {
    .at-event-packages__grid--count-1 {
        max-width: 25%;
        margin-inline: auto;
        grid-template-columns: minmax(0, 1fr);
    }

    .at-event-packages__grid--count-2 {
        max-width: 50%;
        margin-inline: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-event-packages__grid--count-3 {
        max-width: 75%;
        margin-inline: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.at-event-packages__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
}

.at-event-packages__card {
    --at-package-accent: var(--at-neon-cyan);
    --at-package-accent-soft: rgba(0, 204, 255, 0.18);
    --at-package-button-text: #06101e;
    --at-package-base: rgba(8, 13, 32, 0.94);
    --at-package-base-overlay: linear-gradient(180deg, var(--at-package-accent-soft) 0%, rgba(255, 255, 255, 0.035) 32%, rgba(255, 255, 255, 0.02) 100%);
    display: flex;
    min-width: 0;
    min-height: 0;
    width: 100%;
    flex: 1 1 auto;
    flex-direction: column;
    padding: clamp(1.05rem, 2vw, 1.4rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--at-package-accent);
    border-radius: 8px;
    background:
        var(--at-package-base-overlay),
        var(--at-package-base);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 42px rgba(0, 0, 0, 0.24);
    color: #fff;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.at-event-packages__card:visited {
    color: #fff;
}

.at-event-packages__card--link:hover,
.at-event-packages__card--link:focus-visible {
    border-color: color-mix(in srgb, var(--at-package-accent) 58%, rgba(255, 255, 255, 0.22));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 24px 52px rgba(0, 0, 0, 0.3),
        0 0 24px color-mix(in srgb, var(--at-package-accent) 24%, transparent);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.at-event-packages__card--link:focus-visible {
    outline: 2px solid var(--at-package-accent);
    outline-offset: 4px;
}

.at-event-packages__card--gray-cyan,
.at-event-packages__card--black-cyan,
.at-event-packages__card--cyan,
.at-event-packages__card--bronze {
    --at-package-accent: var(--at-neon-cyan);
    --at-package-accent-soft: rgba(0, 204, 255, 0.18);
}

.at-event-packages__card--gray-silver,
.at-event-packages__card--black-silver,
.at-event-packages__card--silver {
    --at-package-accent: #c8d3df;
    --at-package-accent-soft: rgba(200, 211, 223, 0.16);
    --at-package-button-text: #07101f;
}

.at-event-packages__card--gray-gold,
.at-event-packages__card--black-gold,
.at-event-packages__card--gold {
    --at-package-accent: #f4c542;
    --at-package-accent-soft: rgba(244, 197, 66, 0.18);
    --at-package-button-text: #161006;
}

.at-event-packages__card--gray-purple,
.at-event-packages__card--black-purple,
.at-event-packages__card--black {
    --at-package-accent: #fc00ff;
    --at-package-accent-soft: rgba(252, 0, 255, 0.16);
    --at-package-button-text: #fff;
}

.at-event-packages__card--gray-cyan,
.at-event-packages__card--gray-silver,
.at-event-packages__card--gray-gold,
.at-event-packages__card--gray-purple,
.at-event-packages__card--cyan,
.at-event-packages__card--silver,
.at-event-packages__card--gold,
.at-event-packages__card--bronze {
    --at-package-base: rgba(8, 13, 32, 0.94);
    --at-package-base-overlay: linear-gradient(180deg, var(--at-package-accent-soft) 0%, rgba(255, 255, 255, 0.035) 32%, rgba(255, 255, 255, 0.02) 100%);
}

.at-event-packages__card--black-cyan,
.at-event-packages__card--black-silver,
.at-event-packages__card--black-gold,
.at-event-packages__card--black-purple,
.at-event-packages__card--black {
    --at-package-base: #050812;
    --at-package-base-overlay: linear-gradient(180deg, var(--at-package-accent-soft) 0%, rgba(255, 255, 255, 0.035) 34%, rgba(0, 0, 0, 0.14) 100%);
}

.at-event-packages__badge,
.at-event-packages__badge-spacer {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    min-height: 1.65rem;
    margin-bottom: 0.55rem;
}

.at-event-packages__badge {
    max-width: 9rem;
    justify-content: center;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--at-package-accent, var(--at-neon-cyan)) 55%, rgba(255, 255, 255, 0.18));
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 16px color-mix(in srgb, var(--at-package-accent, var(--at-neon-cyan)) 32%, transparent);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.at-event-packages__item--gray-cyan,
.at-event-packages__item--black-cyan,
.at-event-packages__item--cyan,
.at-event-packages__item--bronze {
    --at-package-accent: var(--at-neon-cyan);
}

.at-event-packages__item--gray-silver,
.at-event-packages__item--black-silver,
.at-event-packages__item--silver {
    --at-package-accent: #c8d3df;
}

.at-event-packages__item--gray-gold,
.at-event-packages__item--black-gold,
.at-event-packages__item--gold {
    --at-package-accent: #f4c542;
}

.at-event-packages__item--gray-purple,
.at-event-packages__item--black-purple,
.at-event-packages__item--black {
    --at-package-accent: #fc00ff;
}

.at-event-packages__card-main h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.05;
}

.at-event-packages__subtitle {
    margin: 0.55rem 0 0;
    color: rgba(230, 240, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.36;
}

.at-event-packages__bullets {
    display: grid;
    gap: 0.58rem;
    margin: 1.15rem 0;
    padding: 0;
    list-style: none;
}

.at-event-packages__bullets li {
    position: relative;
    min-width: 0;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.38;
}

.at-event-packages__bullets li::before {
    content: "";
    position: absolute;
    top: 0.47em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--at-package-accent);
    box-shadow: 0 0 10px var(--at-package-accent-soft);
}

.at-event-packages__footer {
    display: grid;
    gap: 0.85rem;
    margin-top: auto;
}

.at-event-packages__price {
    margin: 0;
}

.at-event-packages__price span {
    display: block;
    color: rgba(230, 240, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.at-event-packages__price strong {
    display: block;
    margin-top: 0.18rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.1;
}

.at-event-packages__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding: 0.78rem 1rem;
    border: 1px solid var(--at-package-accent);
    border-radius: 999px;
    color: var(--at-package-accent);
    background: transparent;
    box-shadow: none;
    font-size: 0.83rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.at-event-packages__cta:hover,
.at-event-packages__cta:focus-visible,
.at-event-packages__card--link:hover .at-event-packages__cta,
.at-event-packages__card--link:focus-visible .at-event-packages__cta {
    color: var(--at-package-button-text);
    background: var(--at-package-accent);
    transform: translateY(-1px);
}

.at-event-packages__cta-note {
    margin: -0.42rem 0 0;
    color: rgba(230, 240, 255, 0.66);
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .at-event-packages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .at-event-packages--count-2 .at-event-packages__layout,
    .at-event-packages--count-3 .at-event-packages__layout {
        grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.48fr);
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    .at-event-packages--count-2 .at-event-packages__header,
    .at-event-packages--count-3 .at-event-packages__header {
        max-width: 28rem;
        margin: 0;
        text-align: left;
    }

    .at-event-packages--count-2 .at-event-packages__header p:not(.at-event-packages__eyebrow),
    .at-event-packages--count-3 .at-event-packages__header p:not(.at-event-packages__eyebrow) {
        margin-inline: 0;
    }

    .at-event-packages--count-2 .at-event-packages__grid,
    .at-event-packages--count-3 .at-event-packages__grid {
        max-width: none;
        margin-inline: 0;
    }

    .at-event-packages--count-2 .at-event-packages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-event-packages--count-3 .at-event-packages__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .at-event-packages__grid {
        max-width: 460px;
        margin-inline: auto;
        grid-template-columns: 1fr;
        row-gap: 1.6rem;
    }

    .at-event-packages__card {
        padding: 1rem;
    }
}

.at-module--location_celebrations_showcase {
    margin-block: 0;
    background: #10143a;
}

.at-module--reserve_on_partywirks {
    margin-block: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 78% 50%, rgba(5, 8, 18, 0.58) 0%, rgba(5, 8, 18, 0.34) 26%, rgba(5, 8, 18, 0) 50%),
        radial-gradient(circle at 70% 46%, rgba(252, 0, 255, 0.28) 0%, rgba(252, 0, 255, 0.12) 32%, rgba(252, 0, 255, 0) 62%),
        radial-gradient(circle at 88% 18%, rgba(0, 204, 255, 0.4) 0%, rgba(0, 204, 255, 0.15) 26%, rgba(0, 204, 255, 0) 52%),
        radial-gradient(circle at 20% 58%, rgba(0, 204, 255, 0.16) 0%, rgba(0, 204, 255, 0) 40%),
        linear-gradient(90deg, rgba(5, 8, 18, 1) 0%, rgba(9, 13, 35, 0.98) 44%, rgba(18, 19, 67, 0.98) 100%),
        linear-gradient(180deg, #050812 0%, #10143a 100%);
    background-color: #050812;
}

.at-module--reserve_on_partywirks + .at-module.at-rail-top::before {
    content: none;
}

.at-partywirks-reserve {
    position: relative;
    z-index: 1;
    padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.at-partywirks-reserve::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../images/partywirks-confetti-glow.webp");
    background-position: 50% calc(16% + var(--at-partywirks-parallax-y, 0px));
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: soft-light;
    opacity: 0.24;
    filter: saturate(1.18) contrast(1.18) brightness(1.08);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.38) 70%, rgba(0, 0, 0, 0.52) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.38) 70%, rgba(0, 0, 0, 0.52) 100%);
}

.at-partywirks-reserve::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 78% 50%, rgba(5, 8, 18, 0.64) 0%, rgba(5, 8, 18, 0.34) 26%, rgba(5, 8, 18, 0) 50%),
        radial-gradient(circle at 70% 50%, rgba(252, 0, 255, 0.14) 0%, rgba(252, 0, 255, 0.06) 34%, rgba(252, 0, 255, 0) 64%),
        radial-gradient(circle at 88% 18%, rgba(0, 204, 255, 0.28) 0%, rgba(0, 204, 255, 0.08) 34%, rgba(0, 204, 255, 0) 58%),
        linear-gradient(90deg, rgba(5, 8, 18, 0.22) 0%, rgba(12, 16, 49, 0.18) 52%, rgba(17, 20, 68, 0.34) 100%);
}

.at-view-menu-cta::before {
    background-image: url("../menu-directory/RESTAURANT/APPETIZERS%20AND%20SHARABLE%20BITES/ArcadeTimeEntertainment_LoadedNachos.webp");
    background-position: 50% calc(48% + var(--at-partywirks-parallax-y, 0px));
    mix-blend-mode: normal;
    opacity: 0.34;
    filter: saturate(1.08) contrast(1.08) brightness(0.86);
}

.at-view-menu-cta::after {
    background:
        radial-gradient(ellipse at 78% 50%, rgba(5, 8, 18, 0.72) 0%, rgba(5, 8, 18, 0.42) 28%, rgba(5, 8, 18, 0.08) 54%),
        radial-gradient(circle at 84% 22%, rgba(252, 0, 255, 0.12) 0%, rgba(252, 0, 255, 0.04) 32%, rgba(252, 0, 255, 0) 58%),
        radial-gradient(circle at 18% 72%, rgba(0, 204, 255, 0.18) 0%, rgba(0, 204, 255, 0.05) 34%, rgba(0, 204, 255, 0) 62%),
        linear-gradient(90deg, rgba(5, 8, 18, 0.42) 0%, rgba(12, 16, 49, 0.24) 52%, rgba(5, 8, 18, 0.52) 100%);
}

.at-partywirks-reserve .container {
    position: relative;
    z-index: 2;
}

.at-partywirks-reserve__inner {
    align-items: center;
    display: grid;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 74rem;
    margin: 0 auto;
}

.at-partywirks-reserve__content {
    max-width: 42rem;
}

.at-partywirks-reserve__eyebrow {
    color: var(--at-neon-cyan);
    font-size: clamp(0.78rem, 1.2vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    margin: 0 0 0.42rem;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(0, 204, 255, 0.62),
        0 0 20px rgba(252, 0, 255, 0.22);
}

.at-partywirks-reserve h2 {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.at-partywirks-reserve__action {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    justify-content: center;
    justify-self: end;
    min-width: min(100%, 18rem);
}

.at-partywirks-reserve__action .btn-neon {
    background: rgba(5, 8, 18, 0.18);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    justify-content: center;
    letter-spacing: 0.12em;
    min-width: min(100%, 20rem);
    padding: 1rem 2.2rem;
    text-align: center;
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease;
    box-shadow:
        inset 0 0 10px rgba(252, 0, 255, 0.24),
        0 0 0 1.3px rgba(255, 255, 255, 0.88),
        0 0 0 2.4px rgba(252, 0, 255, 0.92),
        0 0 18px rgba(252, 0, 255, 0.76),
        0 0 38px rgba(252, 0, 255, 0.24);
}

.at-partywirks-reserve__action .btn-neon:visited,
.at-partywirks-reserve__action .btn-neon:focus:not(:focus-visible) {
    border-color: #fc00ff;
    color: #fc00ff;
    box-shadow:
        inset 0 0 10px rgba(252, 0, 255, 0.24),
        0 0 0 1.3px rgba(255, 255, 255, 0.88),
        0 0 0 2.4px rgba(252, 0, 255, 0.92),
        0 0 18px rgba(252, 0, 255, 0.76),
        0 0 38px rgba(252, 0, 255, 0.24);
}

.at-partywirks-reserve__action .btn-neon:hover,
.at-partywirks-reserve__action .btn-neon:focus-visible {
    background: rgba(5, 8, 18, 0.16);
    border-color: var(--at-neon-cyan);
    color: var(--at-neon-cyan);
    box-shadow:
        inset 0 0 12px rgba(0, 204, 255, 0.32),
        0 0 0 1.3px rgba(255, 255, 255, 0.9),
        0 0 0 2.4px rgba(0, 204, 255, 0.92),
        0 0 20px rgba(0, 204, 255, 0.88),
        0 0 44px rgba(0, 204, 255, 0.32);
}

.at-partywirks-reserve__action p {
    color: rgba(230, 240, 255, 0.64);
    font-size: 0.84rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (min-width: 992px) {
    .at-partywirks-reserve__action {
        transform: translateY(0.52rem);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .at-partywirks-reserve::before {
        opacity: 0.22;
        -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.36) 72%, rgba(0, 0, 0, 0.5) 100%);
        mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.36) 72%, rgba(0, 0, 0, 0.5) 100%);
    }

    .at-partywirks-reserve__action {
        transform: translateY(0.25rem);
    }
}

@media (max-width: 767.98px) {
    .at-partywirks-reserve::before {
        background-size: auto 240%;
        opacity: 0.2;
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.3) 72%, rgba(0, 0, 0, 0.42) 100%);
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.3) 72%, rgba(0, 0, 0, 0.42) 100%);
    }

    .at-partywirks-reserve::after {
        background:
            radial-gradient(ellipse at 50% 72%, rgba(5, 8, 18, 0.62) 0%, rgba(5, 8, 18, 0.32) 34%, rgba(5, 8, 18, 0) 64%),
            radial-gradient(circle at 50% 64%, rgba(252, 0, 255, 0.1) 0%, rgba(252, 0, 255, 0.04) 34%, rgba(252, 0, 255, 0) 64%),
            radial-gradient(circle at 72% 22%, rgba(0, 204, 255, 0.22) 0%, rgba(0, 204, 255, 0.06) 38%, rgba(0, 204, 255, 0) 68%),
            linear-gradient(180deg, rgba(5, 8, 18, 0.1) 0%, rgba(12, 16, 49, 0.2) 100%);
    }

    .at-partywirks-reserve__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .at-partywirks-reserve__content {
        margin-right: auto;
        margin-left: auto;
    }

    .at-partywirks-reserve h2 {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .at-partywirks-reserve__action,
    .at-partywirks-reserve__action .btn-neon {
        width: 100%;
    }

    .at-partywirks-reserve__action {
        justify-self: stretch;
    }
}

.at-module--location_attractions_carousel {
    margin-block: 0;
    background: var(--at-bg-header);
}

.at-attraction-gallery {
    margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.at-attraction-gallery__header {
    margin: 0 0 1rem;
}

.at-attraction-gallery__header h2 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.at-attraction-gallery__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(var(--at-gallery-columns, 4), minmax(0, 1fr));
}

.at-attraction-gallery--count-1 {
    --at-gallery-columns: 1;
}

.at-attraction-gallery--count-1 .at-attraction-gallery__grid {
    max-width: min(100%, 28rem);
}

.at-attraction-gallery--count-2 {
    --at-gallery-columns: 2;
}

.at-attraction-gallery--count-3 {
    --at-gallery-columns: 3;
}

.at-attraction-gallery--count-4 {
    --at-gallery-columns: 4;
}

.at-attraction-gallery__item {
    margin: 0;
    min-width: 0;
}

.at-attraction-gallery__media {
    aspect-ratio: 16 / 10;
    background: rgba(13, 20, 38, 0.76);
    border: 1px solid rgba(94, 220, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 0 24px rgba(94, 220, 255, 0.08);
    overflow: hidden;
}

.at-attraction-gallery__image,
.at-attraction-gallery__video {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.at-attraction-gallery__video {
    background: #020816;
}

.at-attraction-gallery figcaption {
    color: rgba(230, 240, 255, 0.78);
    font-size: 0.92rem;
    margin-top: 0.55rem;
}

.at-location-attractions-grid {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.45rem, 3.6vw, 3rem) 0;
    color: #ffffff;
    background: var(--at-bg-header);
}

.at-location-attractions-grid::before,
.at-location-attractions-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.at-location-attractions-grid::before {
    background-image: url("../images/attractions-dot-gradient.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.72;
}

.at-location-attractions-grid::after {
    content: none;
}

.at-location-attractions-grid .container {
    position: relative;
    z-index: 1;
}

.at-location-attractions-grid__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    max-width: none;
    margin: 0 0 clamp(1.6rem, 4vw, 2.6rem);
}

.at-location-attractions-grid__header-text {
    position: relative;
    flex: 1 1 28rem;
    min-width: 0;
}

.at-location-attractions-grid__heading-shadow {
    display: block;
    filter:
        drop-shadow(0 10px 28px rgba(1, 4, 18, 0.92))
        drop-shadow(0 0 64px rgba(1, 4, 18, 0.74));
}

.at-location-attractions-grid__eyebrow {
    margin: 0 0 0.36rem;
    color: var(--at-neon-cyan);
    font-size: clamp(0.78rem, 0.9vw, 0.92rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-shadow:
        0 2px 8px rgba(1, 4, 18, 0.7),
        0 0 12px rgba(0, 204, 255, 0.22);
}

.at-location-attractions-grid__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 2.8vw, 3.35rem);
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow:
        0 2px 10px rgba(1, 4, 18, 0.68),
        0 0 20px rgba(0, 204, 255, 0.18),
        0 0 18px rgba(252, 0, 255, 0.1);
}

.at-location-attractions-grid__intro {
    max-width: 680px;
    margin: 0.7rem 0 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.55;
}

.at-location-attractions-grid__header-cta,
.at-location-attractions-grid__header-cta:link,
.at-location-attractions-grid__header-cta:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    align-self: flex-end;
    flex: 0 0 auto;
    margin-bottom: 0.16rem;
    color: #00ccff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    filter:
        drop-shadow(0 8px 22px rgba(1, 4, 18, 0.9))
        drop-shadow(0 0 46px rgba(1, 4, 18, 0.72));
    text-shadow:
        0 5px 15px rgba(1, 4, 18, 0.98),
        0 0 40px rgba(1, 4, 18, 0.86),
        0 0 58px rgba(1, 4, 18, 0.56),
        0 0 18px rgba(0, 204, 255, 0.46),
        0 0 14px rgba(252, 0, 255, 0.18);
    transition:
        color 0.18s ease,
        filter 0.18s ease,
        text-shadow 0.18s ease,
        transform 0.18s ease;
}

.at-location-attractions-grid__header-cta::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    filter: drop-shadow(0 0 8px rgba(0, 204, 255, 0.42));
    transform: rotate(45deg);
    transition:
        transform 0.18s ease,
        filter 0.18s ease;
}

.at-location-attractions-grid__header-cta:hover,
.at-location-attractions-grid__header-cta:focus-visible {
    color: #7ee8ff;
    text-shadow:
        0 5px 16px rgba(1, 4, 18, 1),
        0 0 44px rgba(1, 4, 18, 0.9),
        0 0 64px rgba(1, 4, 18, 0.62),
        0 0 22px rgba(0, 204, 255, 0.58),
        0 0 16px rgba(252, 0, 255, 0.2);
    filter:
        drop-shadow(0 9px 26px rgba(1, 4, 18, 0.96))
        drop-shadow(0 0 54px rgba(1, 4, 18, 0.78));
    transform: translateX(2px);
}

.at-location-attractions-grid__header-cta:hover::after,
.at-location-attractions-grid__header-cta:focus-visible::after {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.58));
    transform: translateX(2px) rotate(45deg);
}

.at-location-attractions-grid__items {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(var(--at-location-attractions-columns, 3), minmax(0, 1fr));
}

.at-location-attractions-grid__items--cols-4 {
    --at-location-attractions-columns: 4;
}

.at-location-attractions-grid__items--cols-3 {
    --at-location-attractions-columns: 3;
}

.at-location-attractions-grid__item {
    min-width: 0;
}

.at-location-attractions-grid__card {
    height: 100%;
}

.at-location-attractions-grid__card-inner {
    position: relative;
    display: flex;
    min-height: 17rem;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.14);
    padding: 0;
    box-shadow:
        0 34px 86px rgba(0, 0, 0, 0.58),
        0 12px 34px rgba(0, 0, 0, 0.44),
        0 2px 8px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.at-location-attractions-grid__card:hover .at-location-attractions-grid__card-inner,
.at-location-attractions-grid__card:focus-visible .at-location-attractions-grid__card-inner {
    border-color: rgba(128, 226, 255, 0.42);
    box-shadow:
        0 42px 104px rgba(0, 0, 0, 0.62),
        0 16px 42px rgba(0, 0, 0, 0.48),
        0 3px 10px rgba(0, 0, 0, 0.4),
        0 0 18px rgba(0, 204, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.at-location-attractions-grid__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex: 1 1 auto;
    min-width: 0;
    width: min(72%, 17rem);
    padding: 1.35rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.at-location-attractions-grid__card .at-attraction-card__title {
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.at-location-attractions-grid__card p {
    margin: 0.08rem 0 1.1rem;
    color: rgba(255,255,255,0.74);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.38;
}

.at-location-attractions-grid__card .at-attraction-card__cta {
    margin-top: auto;
}

.at-location-attractions-grid .at-location-attractions-grid__card .at-attraction-card__icon {
    position: relative;
    z-index: 3;
    border-color: rgba(128, 226, 255, 0.56);
    background:
        linear-gradient(180deg, rgba(5, 17, 34, 0.96) 0%, rgba(8, 14, 28, 0.98) 100%);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.46),
        0 0 16px rgba(0, 204, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.at-location-attractions-grid__items--cols-3 .at-attraction-card__cta,
.at-global-attractions-grid .at-attraction-card__cta {
    padding-inline: clamp(0.58rem, 0.8vw, 0.82rem);
    font-size: clamp(0.68rem, 0.78vw, 0.78rem);
    letter-spacing: 0.08em;
}

.at-location-attractions-grid__media {
    position: absolute;
    top: 0;
    right: -14%;
    bottom: 0;
    z-index: 1;
    width: 114%;
    min-height: 100%;
    background: rgba(0, 204, 255, 0.08);
}

.at-location-attractions-grid__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 74%;
    background: linear-gradient(90deg, rgba(8, 14, 28, 1) 0%, rgba(8, 14, 28, 0.94) 24%, rgba(8, 14, 28, 0.68) 48%, rgba(8, 14, 28, 0.24) 76%, rgba(8, 14, 28, 0) 100%);
    pointer-events: none;
}

.at-location-attractions-grid__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    opacity: 1;
    object-fit: cover;
    filter: none;
}

.at-location-attractions-grid__items--cols-4 .at-location-attractions-grid__card-inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 16.75rem;
}

.at-location-attractions-grid__items--cols-4 .at-location-attractions-grid__card-content {
    width: 100%;
    align-items: center;
    padding: 0.35rem 0.9rem 1rem;
    text-align: center;
    text-shadow: none;
}

.at-location-attractions-grid__items--cols-4 .at-location-attractions-grid__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    order: -1;
    width: 100%;
    height: 8.95rem;
    min-height: 8.95rem;
    margin-bottom: -0.35rem;
}

.at-location-attractions-grid__items--cols-4 .at-location-attractions-grid__media::before {
    inset: auto 0 0;
    width: auto;
    height: 88%;
    background: linear-gradient(180deg, rgba(8, 14, 28, 0) 0%, rgba(8, 14, 28, 0.24) 34%, rgba(8, 14, 28, 0.72) 68%, rgba(8, 14, 28, 1) 100%);
}

.at-location-attractions-grid__items--cols-4 .at-attraction-card__icon {
    margin-top: -1.65rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.14rem;
}

.at-location-attractions-grid__items--cols-4 .at-attraction-card__title {
    margin: 0.58rem 0 0.36rem;
    font-size: clamp(1rem, 1.12vw, 1.16rem);
    line-height: 1.04;
}

.at-location-attractions-grid__items--cols-4 .at-location-attractions-grid__card p {
    margin-top: 0.02rem;
    font-size: 0.78rem;
    line-height: 1.34;
}

.at-location-attractions-grid__items--cols-4 .at-attraction-card__cta {
    align-self: center;
    padding: 0.56rem 0.72rem;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.at-game-pass-menu {
    color: #ffffff;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.at-game-pass-menu__header {
    max-width: 820px;
    margin: 0 auto clamp(1.7rem, 4vw, 3rem);
    text-align: center;
}

.at-game-pass-menu__header h2 {
    margin: 0 0 0.65rem;
    color: #ffffff;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    line-height: 0.95;
    text-transform: none;
    text-shadow:
        0 0 18px rgba(0, 204, 255, 0.24),
        0 0 30px rgba(252, 0, 255, 0.16);
}

.at-game-pass-menu__header p {
    margin: 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.55;
}

.at-game-pass-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.at-game-pass-menu__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    align-items: center;
    min-width: 0;
    min-height: 118px;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(0, 204, 255, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #030916;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 38px rgba(0, 0, 0, 0.22);
}

.at-game-pass-menu__item.is-featured:not(.is-vip) {
    border-color: rgba(252, 0, 255, 0.35);
}

.at-game-pass-menu__item h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.1;
    text-transform: none;
}

.at-game-pass-menu__item p {
    margin: 0.48rem 0 0;
    color: rgba(230, 240, 255, 0.76);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    line-height: 1.35;
}

.at-game-pass-menu__price {
    color: var(--at-neon-cyan);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 0 0 16px rgba(0, 204, 255, 0.32);
}

.at-game-pass-menu__vip-grid {
    margin-top: clamp(1rem, 2.5vw, 1.6rem);
}

.at-game-pass-menu__item.is-vip {
    position: relative;
    min-height: 0;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    border: 1px solid rgba(252, 0, 255, 0.52);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(252, 0, 255, 0.16), rgba(0, 204, 255, 0.07)),
        #060818;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 58px rgba(252, 0, 255, 0.12);
}

.at-game-pass-menu__item.is-vip h3 {
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.at-game-pass-menu__item.is-vip p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.at-game-pass-menu__item.is-vip .at-game-pass-menu__price {
    color: #ffffff;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    text-shadow:
        0 0 16px rgba(252, 0, 255, 0.35),
        0 0 26px rgba(0, 204, 255, 0.2);
}

.at-game-pass-menu__badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 0.45rem;
    padding: 0.35rem 0.65rem;
    color: #ffffff;
    border: 1px solid rgba(0, 204, 255, 0.46);
    border-radius: 999px;
    background: rgba(0, 204, 255, 0.12);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.at-game-pass-menu__footer {
    max-width: 920px;
    margin: clamp(1.4rem, 4vw, 2.8rem) auto 0;
    text-align: center;
}

.at-game-pass-menu__vip-note {
    margin: 0;
    color: rgba(230, 240, 255, 0.88);
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    font-weight: 800;
    line-height: 1.5;
}

.at-game-pass-menu__disclaimer {
    margin: 1rem 0 0;
    color: rgba(230, 240, 255, 0.62);
    font-size: 0.9rem;
}

.at-attraction-pricing {
    color: #ffffff;
    padding: clamp(0.85rem, 2vw, 1.25rem) 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 42, 170, 0.14), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(0, 204, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #050812 0%, #0a1024 50%, #050812 100%);
}

.at-attraction-pricing__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
    gap: clamp(1rem, 3vw, 2.25rem);
    align-items: center;
    min-height: 74px;
    padding: clamp(0.5rem, 1.4vw, 0.85rem) 0;
}

.at-attraction-pricing__title {
    min-width: 0;
}

.at-attraction-pricing__eyebrow {
    display: block;
    margin: 0 0 0.28rem;
    color: var(--at-neon-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.at-attraction-pricing__label {
    display: block;
    margin: 0.16rem 0 0;
    color: var(--at-neon-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.at-attraction-pricing h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.08;
    text-transform: none;
    text-shadow: 0 0 16px rgba(0, 204, 255, 0.24);
}

.at-attraction-pricing__intro {
    max-width: 560px;
    margin: 0.38rem 0 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.42;
}

.at-attraction-pricing__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.at-attraction-pricing__fact {
    display: inline-grid;
    grid-template-columns: 0.28rem minmax(0, 1fr);
    gap: 0.78rem;
    align-items: center;
    min-width: min(100%, 190px);
    padding: 0.58rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}

.at-attraction-pricing__rail {
    display: block;
    width: 3px;
    height: clamp(34px, 4vw, 48px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--at-neon-cyan), rgba(252, 0, 255, 0.9));
    box-shadow:
        0 0 10px rgba(0, 204, 255, 0.72),
        0 0 18px rgba(252, 0, 255, 0.32);
}

.at-attraction-pricing__fact-copy {
    display: block;
    min-width: 0;
}

.at-attraction-pricing__fact--freeform {
    min-width: min(100%, 260px);
}

.at-attraction-pricing__fact--players {
    min-width: min(100%, 210px);
}

.at-attraction-pricing__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    min-width: 0;
}

.at-attraction-pricing__details-intro {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0;
    color: rgba(230, 240, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.at-attraction-pricing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
}

.at-attraction-pricing__chip {
    display: inline-flex;
    gap: 0.42rem;
    align-items: center;
    min-height: 40px;
    padding: 0.45rem 0.68rem;
    color: #ffffff;
    border: 1px solid rgba(0, 204, 255, 0.36);
    border-radius: 8px;
    background: rgba(0, 204, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.15;
    white-space: normal;
}

.at-attraction-pricing__chip i {
    color: var(--at-neon-cyan);
    font-size: 0.88rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.38);
}

.at-attraction-pricing__price {
    color: #ffffff;
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 900;
    line-height: 1.05;
    overflow-wrap: anywhere;
    text-shadow:
        0 0 18px rgba(252, 0, 255, 0.34),
        0 0 26px rgba(0, 204, 255, 0.18);
}

.at-attraction-pricing__price--billing {
    text-transform: uppercase;
}

.at-attraction-pricing__price--players {
    text-transform: uppercase;
}

.at-attraction-pricing__capacity {
    display: block;
    color: #ffffff;
    font-size: clamp(0.92rem, 1.3vw, 1.08rem);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.at-attraction-pricing__note {
    flex-basis: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: right;
}

.at-attraction-pricing__cta {
    min-height: 40px;
    padding-right: 1rem;
    padding-left: 1rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .at-game-pass-menu__grid {
        grid-template-columns: 1fr;
    }

    .at-game-pass-menu__item.is-vip {
        grid-column: auto;
    }

    .at-attraction-pricing__inner {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .at-attraction-pricing__title {
        text-align: center;
    }

    .at-attraction-pricing__facts {
        justify-content: center;
    }

    .at-attraction-pricing__details {
        justify-content: center;
    }

    .at-attraction-pricing__note {
        text-align: center;
    }

    .at-attraction-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-attraction-gallery--count-1 .at-attraction-gallery__grid {
        grid-template-columns: 1fr;
    }

    .at-location-attractions-grid__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-location-attractions-grid__card-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .at-location-attractions-grid__card-content {
        width: 100%;
        align-items: center;
        padding: 0.45rem 1.1rem 1.2rem;
        text-align: center;
        text-shadow: none;
    }

    .at-location-attractions-grid .at-location-attractions-grid__card .at-attraction-card__icon {
        margin-top: -1.85rem;
    }

    .at-location-attractions-grid__card-content .at-attraction-card__cta {
        align-self: center;
    }

    .at-location-attractions-grid__media {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
        order: -1;
        width: 100%;
        height: 10.15rem;
        min-height: 10.15rem;
        margin-bottom: -0.45rem;
    }

    .at-location-attractions-grid__media::before {
        inset: auto 0 0;
        width: auto;
        height: 88%;
        background: linear-gradient(180deg, rgba(8, 14, 28, 0) 0%, rgba(8, 14, 28, 0.24) 34%, rgba(8, 14, 28, 0.72) 68%, rgba(8, 14, 28, 1) 100%);
    }

    .at-location-attractions-grid__media img {
        opacity: 1;
        filter: none;
    }
}

@media (max-width: 575.98px) {
    .at-location-attractions-grid::before {
        opacity: 0.38;
    }

    .at-location-attractions-grid__header {
        gap: 0.85rem;
        margin-bottom: 1.35rem;
    }

    .at-location-attractions-grid__header-text {
        flex-basis: 100%;
    }

    .at-location-attractions-grid__header-cta,
    .at-location-attractions-grid__header-cta:link,
    .at-location-attractions-grid__header-cta:visited {
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 0.74rem;
    }

    .at-location-attractions-grid__items {
        grid-template-columns: 1fr;
    }

    .at-location-attractions-grid__card-inner {
        min-height: 0;
        box-shadow:
            0 26px 64px rgba(0, 0, 0, 0.52),
            0 10px 28px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .at-location-attractions-grid__card-content {
        padding: 1.35rem;
        padding-top: 0.5rem;
    }

    .at-location-attractions-grid__media {
        height: 13.75rem;
        min-height: 13.75rem;
        margin-bottom: -0.55rem;
    }

    .at-location-attractions-grid__media::before {
        height: 96%;
        background: linear-gradient(180deg, rgba(8, 14, 28, 0) 0%, rgba(8, 14, 28, 0.16) 30%, rgba(8, 14, 28, 0.66) 68%, rgba(8, 14, 28, 1) 100%);
    }

    .at-location-attractions-grid__items .at-attraction-card__icon,
    .at-global-attractions-grid .at-attraction-card__icon {
        width: 3.65rem;
        height: 3.65rem;
        font-size: 1.62rem;
    }

    .at-location-attractions-grid__items .at-attraction-card__icon {
        margin-top: -2.3rem;
    }

    .at-location-attractions-grid__items .at-attraction-card__title,
    .at-global-attractions-grid .at-attraction-card__title {
        margin: 1.12rem 0 0.72rem;
        font-size: clamp(1.58rem, 7vw, 2rem);
        line-height: 1.02;
    }

    .at-location-attractions-grid__items .at-attraction-card__title {
        margin: 0.85rem 0 0.62rem;
    }

    .at-location-attractions-grid__items .at-location-attractions-grid__card p,
    .at-global-attractions-grid .at-location-attractions-grid__card p {
        font-size: 1.08rem;
        line-height: 1.5;
    }

    .at-location-attractions-grid__items .at-attraction-card__cta,
    .at-global-attractions-grid .at-attraction-card__cta {
        padding: 0.78rem 1.05rem;
        font-size: 0.86rem;
        letter-spacing: 0.08em;
    }

    .at-game-pass-menu__item {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        min-height: 0;
    }

    .at-game-pass-menu__price {
        justify-self: start;
    }

    .at-attraction-gallery__grid {
        grid-template-columns: 1fr;
    }

    .at-attraction-gallery--count-1 .at-attraction-gallery__grid {
        max-width: 100%;
    }
}

.at-attraction-available {
    margin-top: 2rem;
}

.at-attraction-available h2 {
    color: #fff;
    text-transform: uppercase;
}

.at-attraction-location-card {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    height: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    background: rgba(13, 20, 38, 0.76);
    color: #fff;
    text-decoration: none;
}

.at-attraction-location-card small {
    color: var(--at-neon-cyan);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.at-attraction-location-card em {
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    font-style: normal;
    text-transform: uppercase;
}

.at-location-details-list {
    margin: 0 0 1rem;
    padding-left: 1rem;
}

.at-location-details-list li + li {
    margin-top: 0.55rem;
}

/* ---------- Footer ---------- */

.at-footer {
    position: relative;
    isolation: isolate;
    background-color: var(--at-bg-header);
    margin-top: 0;
    border-top: 1px solid rgba(0, 204, 255, 0.22);
}

.at-footer--neon-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 2px;
    pointer-events: none;
    background-image: linear-gradient(
        90deg,
        rgba(90, 185, 255, 1) 0%,
        rgba(90, 185, 255, 1) 40%,
        rgba(255, 255, 255, 1) 47%,
        rgba(255, 255, 255, 1) 53%,
        rgba(90, 185, 255, 1) 60%,
        rgba(90, 185, 255, 1) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 1.5px rgba(0, 204, 255, 0.9),
        0 0 10px rgba(0, 204, 255, 0.65);
}

.at-footer-inner {
    padding: 2.2rem 0 1.1rem;
}

.at-footer-title {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--at-neon-cyan);
}

.at-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.at-footer-links li {
    margin-bottom: 0.5rem;
}

.at-footer-links a,
.at-footer-logo,
.at-footer-bottom p {
    color: var(--at-social-icon);
}

.at-footer-links a {
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
    opacity: .92;
}

.at-footer-links a:hover,
.at-footer-links a:focus {
    color: var(--at-neon-cyan);
    opacity: 1;
}

.at-footer-links a:focus-visible,
.at-footer-social-icon:focus-visible {
    outline: 2px solid var(--at-neon-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

.at-footer-brand-wrap {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.at-footer-logo .custom-logo,
.at-footer-brand-wrap .custom-logo {
    max-height: clamp(108px, 15vw, 168px);
    width: auto;
}

.at-footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.at-footer-social-icon,
.at-footer-social-icon:visited,
.at-footer-social-icon:active {
    color: var(--at-social-icon);
    font-size: 1rem;
    opacity: .92;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.at-footer-social-icon:hover,
.at-footer-social-icon:focus {
    color: var(--at-neon-cyan);
    opacity: 1;
    transform: translateY(-1px);
}

.at-footer-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(230, 240, 255, 0.12);
}

.at-footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    opacity: .85;
}

@media (max-width: 991.98px) {
    .at-footer-inner {
        padding: 1.85rem 0 1rem;
    }

    .at-footer .row > [class*="col-"] {
        margin-bottom: 0.35rem;
    }

    .at-footer-title {
        margin-bottom: 0.65rem;
    }

    .at-footer-links li {
        margin-bottom: 0.42rem;
    }


    .at-footer-social-icons {
        gap: 0.7rem;
    }

    .at-footer-bottom {
        margin-top: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .at-footer .row {
        row-gap: 1rem;
    }

    .at-footer .row > [class*="col-"] {
        margin-bottom: 0;
    }

    .at-footer-brand-wrap {
        margin-top: 0.2rem;
        margin-bottom: 0.55rem;
    }

    .at-footer-logo .custom-logo,
    .at-footer-brand-wrap .custom-logo {
        max-height: clamp(88px, 13vw, 120px);
    }

    .at-footer-social-icons {
        justify-content: center;
    }

    .at-footer-bottom {
        margin-top: 0.8rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .at-footer-inner {
        padding: 1.6rem 1.1rem 0.95rem;
        max-width: 680px;
    }

    .at-footer .row {
        --bs-gutter-x: 1.1rem;
        row-gap: 0.8rem;
    }

    .at-footer .row > [class*="col-"] {
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .at-footer-title {
        margin-bottom: 0.6rem;
    }

    .at-footer-links li {
        margin-bottom: 0.4rem;
    }

    .at-footer .col-md-12.col-lg-3 {
        text-align: center;
        margin-top: 0.25rem;
    }

    .at-footer-brand-wrap {
        margin-bottom: 0.5rem;
    }

    .at-footer-logo .custom-logo,
    .at-footer-brand-wrap .custom-logo {
        max-height: clamp(84px, 18vw, 110px);
    }

    .at-footer-social-icons {
        gap: 0.72rem;
    }

    .at-footer-bottom {
        margin-top: 0.8rem;
        text-align: center;
        flex-direction: column;
        gap: 0.55rem;
    }
}

@media (max-width: 575.98px) {
    .at-footer-inner {
        padding: 1.5rem 0.95rem 0.95rem;
    }

    .at-footer .row {
        --bs-gutter-x: 0.95rem;
        row-gap: 0.4rem;
    }

    .at-footer .row > [class*="col-"] {
        text-align: center;
        margin-bottom: 0.32rem;
    }

    .at-footer-title {
        font-size: 0.93rem;
        letter-spacing: 0.07em;
        margin-bottom: 0.68rem;
    }

    .at-footer-links li {
        margin-bottom: 0.4rem;
    }

    .at-footer-links a {
        font-size: 0.96rem;
    }

    .at-footer-brand-wrap {
        margin-top: 0.15rem;
        margin-bottom: 0.45rem;
    }

    .at-footer-logo .custom-logo,
    .at-footer-brand-wrap .custom-logo {
        max-height: clamp(80px, 24vw, 98px);
    }

    .at-footer-social-icon {
        font-size: 0.98rem;
    }

    .at-footer-bottom {
        text-align: center;
        margin-top: 0.8rem;
        flex-direction: column;
        gap: 0.55rem;
    }
}

/* ---------- Navbar Toggler ---------- */

.navbar-toggler {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0.35rem 0.25rem;
    box-shadow: none;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 1.55rem;
    height: 1.2rem;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    border-radius: 99px;
    background-color: var(--at-neon-cyan);
    box-shadow: 0 0 8px rgba(0, 204, 255, 0.9);
    transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
}

.navbar-toggler-icon {
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::before { top: -0.48rem; }
.navbar-toggler-icon::after { top: 0.48rem; }

/* Morph ☰ to X when expanded */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}


/* ---------- Hero Placeholder ---------- */

/*
.at-hero {
    position: relative;
    color: #E6F0FF;
}
.at-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--at-bg-hero-tint);
    opacity: 0.55;
}
.at-hero > * {
    position: relative;
    z-index: 2;
}
*/

/* ---------- Location Attraction Pages ---------- */

/* ---------- Location Utility Band ---------- */

.at-location-visit {
    position: relative;
    padding: clamp(0.95rem, 2vw, 1.35rem) 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 42, 170, 0.14), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(0, 204, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #050812 0%, #0a1024 50%, #050812 100%);
    color: #e6f0ff;
}

.at-location-utility-band {
    position: sticky;
    top: 0;
    z-index: 1020;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.at-location-utility-band.is-stuck {
    z-index: 1020;
}

.at-location-utility-band__sentinel {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
}

.at-location-utility-band::after {
    content: "";
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 2px;
    opacity: 0;
    background-image: linear-gradient(
        90deg,
        rgba(90, 185, 255, 1) 0%,
        rgba(90, 185, 255, 1) 40%,
        rgba(255, 255, 255, 1) 47%,
        rgba(255, 255, 255, 1) 53%,
        rgba(90, 185, 255, 1) 60%,
        rgba(90, 185, 255, 1) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 1.5px rgba(0, 204, 255, 0.9),
        0 0 10px rgba(0, 204, 255, 0.65);
}

.at-location-utility-band.is-stuck::after {
    opacity: 1;
}

body.admin-bar .at-location-utility-band {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .at-location-utility-band {
        top: 46px;
    }
}

.at-location-visit__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 2.2vw, 1.6rem);
    align-items: center;
    min-height: 86px;
    padding: clamp(0.7rem, 1.6vw, 0.95rem) 0;
}

.at-location-utility-band .at-location-visit__inner {
    gap: 1rem;
    min-height: 64px;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
}

.at-location-visit--coming-soon .at-location-visit__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 112px;
    text-align: center;
}

.at-location-utility-band.at-location-visit--coming-soon .at-location-visit__inner {
    min-height: 78px;
}

.at-location-visit__coming {
    display: grid;
    justify-items: center;
    gap: 0.42rem;
    max-width: 880px;
}

.at-location-visit__coming-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.5vw, 2.15rem);
    line-height: 1.08;
    text-shadow: 0 0 16px rgba(0, 204, 255, 0.24);
}

.at-location-visit__coming-copy {
    margin: 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.45;
}

.at-location-visit__info {
    min-width: 0;
}

.at-location-visit__facts {
    display: grid;
    grid-template-columns: minmax(280px, auto) minmax(190px, auto);
    gap: 0.55rem clamp(1.4rem, 4vw, 3rem);
    align-items: center;
    min-width: 0;
}

.at-location-visit__contact {
    display: grid;
    gap: 0.48rem;
    min-width: 0;
}

.at-location-visit__fact {
    display: grid;
    grid-template-columns: 1.45rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    color: rgba(230, 240, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.35;
}

.at-location-visit__fact i {
    color: #00ccff;
    font-size: 1.05rem;
    line-height: 1.45;
    text-shadow: 0 0 12px rgba(0, 204, 255, 0.45);
}

.at-location-visit__hours-button {
    appearance: none;
    display: grid;
    gap: 0.22rem;
    justify-self: start;
    padding: 0;
    color: inherit;
    text-align: left;
    border: 0;
    background: transparent;
}

.at-location-visit__hours-status {
    display: grid;
    grid-template-columns: 1.45rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
    color: rgba(230, 240, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.35;
}

.at-location-visit__hours-status i {
    color: #00ccff;
    font-size: 1.05rem;
    line-height: 1.45;
    text-shadow: 0 0 12px rgba(0, 204, 255, 0.45);
}

.at-location-visit__hours-status span {
    text-decoration: underline;
    text-decoration-color: rgba(0, 204, 255, 0.52);
    text-underline-offset: 0.18em;
}

.at-location-visit__hours-link {
    margin-left: 2.1rem;
    color: var(--at-neon-cyan);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.at-location-visit__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(112px, auto));
    gap: 0.65rem;
    justify-content: end;
}

.at-location-visit__button {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-right: 1rem;
    padding-left: 1rem;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    white-space: nowrap;
}

.at-location-utility-band .at-location-visit__button {
    min-height: 40px;
}

.at-location-visit__label--mobile {
    display: none;
}

.at-location-visit .btn-neon.at-location-visit__button,
.at-location-visit .btn-neon.at-location-visit__button:link,
.at-location-visit .btn-neon.at-location-visit__button:visited {
    color: #ffffff;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    text-shadow: none;
}

.at-location-visit__button:hover,
.at-location-visit__button:focus,
.at-location-visit .btn-neon.at-location-visit__button:hover,
.at-location-visit .btn-neon.at-location-visit__button:focus {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.55);
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    transform: none;
}

.at-location-hours-modal .modal-content {
    color: #e6f0ff;
    border: 1px solid rgba(255, 42, 170, 0.38);
    background: #050812;
    box-shadow: 0 0 36px rgba(255, 42, 170, 0.2), 0 0 26px rgba(0, 204, 255, 0.12);
}

.at-location-hours-modal .modal-header {
    border-bottom-color: rgba(0, 204, 255, 0.18);
}

.at-location-hours-modal .modal-title {
    color: #ffffff;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
}

.at-location-hours-modal .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.85;
}

.at-location-hours-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.at-location-hours-list li {
    padding: 0.7rem 0.85rem;
    color: rgba(230, 240, 255, 0.88);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

.at-location-hours-list li.is-today {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.45);
    background: rgba(0, 204, 255, 0.1);
    box-shadow: inset 0 0 16px rgba(0, 204, 255, 0.08);
}

.at-location-hours-note {
    margin: 0.85rem 0 0;
    color: rgba(230, 240, 255, 0.68);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

.at-opentable-modal__dialog {
    width: min(94vw, 380px);
    max-width: calc(100vw - 1rem);
    margin-right: auto;
    margin-left: auto;
}

.at-opentable-modal .modal-content {
    overflow: hidden;
    color: #202633;
    border: 1px solid rgba(32, 38, 51, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.at-opentable-modal .modal-header {
    padding: 0.95rem 1rem;
    border-bottom-color: rgba(32, 38, 51, 0.1);
    background: #ffffff;
}

.at-opentable-modal .modal-title {
    color: #202633;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.at-opentable-modal .btn-close {
    filter: none;
    opacity: 0.68;
}

.at-opentable-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
}

.at-opentable-modal__iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
    background: #ffffff;
}

.at-opentable-modal__widget {
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    background: #ffffff;
}

.at-opentable-modal__fallback {
    margin: 0.85rem 0 0;
    color: #596171;
    font-size: 0.9rem;
    text-align: center;
}

.at-opentable-modal__fallback a {
    color: #c83749;
}

@media (max-width: 1199.98px) {
    .at-location-visit__inner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .at-location-visit__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .at-location-visit__button {
        min-width: 10.25rem;
        width: auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 991px) {
    .at-location-utility-band {
        padding-top: 0.46rem;
        padding-bottom: 0.46rem;
    }

    .at-location-utility-band .at-location-visit__inner {
        gap: 0.5rem;
        min-height: 0;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .at-location-visit__facts {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .at-location-visit__contact {
        display: none;
    }

    .at-location-visit__hours-button {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.28rem 0.46rem;
        align-items: center;
        justify-content: center;
        justify-self: center;
        text-align: center;
    }

    .at-location-visit__hours-status {
        grid-template-columns: auto minmax(0, 1fr);
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .at-location-visit__hours-status span {
        text-decoration: none;
    }

    .at-location-visit__hours-link {
        margin-left: 0;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .at-location-visit__hours-link::before {
        content: "·";
        margin-right: 0.46rem;
        color: rgba(230, 240, 255, 0.72);
        font-weight: 700;
        letter-spacing: 0;
    }

    .at-location-visit__actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .at-location-visit__button {
        min-width: 0;
        width: 100%;
        padding-right: 0.8rem;
        padding-left: 0.8rem;
        font-size: 0.82rem;
        white-space: normal;
    }

    .at-location-visit__label--desktop {
        display: none;
    }

    .at-location-visit__label--mobile {
        display: inline;
    }
}

@media (max-width: 575px) {
    .at-location-visit {
        padding: 0.55rem 0;
    }

    .at-location-utility-band {
        padding-top: 0.38rem;
        padding-bottom: 0.38rem;
    }

    .at-location-visit__inner,
    .at-location-visit__info {
        grid-template-columns: 1fr;
    }

    .at-location-visit__inner {
        gap: 0.62rem;
        min-height: 0;
        padding: 0.38rem 0;
    }

    .at-location-utility-band .at-location-visit__inner {
        gap: 0.42rem;
        padding-top: 0.24rem;
        padding-bottom: 0.24rem;
    }

    .at-location-visit__contact {
        display: none;
    }

    .at-location-visit__facts {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .at-location-visit__hours-button {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.28rem 0.42rem;
        align-items: center;
        justify-content: center;
        justify-self: center;
        text-align: center;
    }

    .at-location-visit__hours-status {
        grid-template-columns: auto minmax(0, 1fr);
        justify-content: center;
        gap: 0.45rem;
        font-size: 0.86rem;
    }

    .at-location-visit__hours-status span {
        text-decoration: none;
    }

    .at-location-visit__hours-link {
        margin-left: 0;
        font-size: 0.69rem;
        letter-spacing: 0.06em;
    }

    .at-location-visit__hours-link::before {
        content: "·";
        margin-right: 0.42rem;
        color: rgba(230, 240, 255, 0.72);
        font-weight: 700;
        letter-spacing: 0;
    }

    .at-location-visit__actions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(6.35rem, 1fr));
        gap: 0.5rem;
    }

    .at-location-visit__button {
        min-width: 0;
        min-height: 40px;
        width: 100%;
        padding-right: 0.55rem;
        padding-left: 0.55rem;
        font-size: 0.78rem;
        white-space: normal;
    }

    .at-location-visit__label--desktop {
        display: none;
    }

    .at-location-visit__label--mobile {
        display: inline;
    }

    .at-opentable-modal__iframe {
        min-height: 68vh;
    }
}

.at-celebrate-page,
.at-attractions-page,
.at-dining-page,
.at-celebration-single,
.at-location-celebrate-page,
.at-location-attractions-page,
.at-location-dining-page,
.at-location-celebration-page,
.at-location-attraction-page {
    background: #050812;
    color: #e6f0ff;
}

.at-fallback-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(220px, 28vw, 360px);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(2rem, 4vw, 3.6rem) 0 clamp(1.8rem, 3.3vw, 3rem);
    background-color: #050812;
    background:
        radial-gradient(circle at 82% 20%, rgba(252, 0, 255, 0.2) 0%, rgba(252, 0, 255, 0) 32%),
        radial-gradient(circle at 13% 18%, rgba(0, 204, 255, 0.2) 0%, rgba(0, 204, 255, 0) 34%),
        linear-gradient(135deg, #06152b 0%, #050812 52%, #150929 100%);
}

.at-fallback-hero::before,
.at-fallback-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.at-fallback-hero::before {
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 0.94) 0%, rgba(5, 8, 18, 0.78) 42%, rgba(5, 8, 18, 0.42) 100%),
        linear-gradient(180deg, rgba(5, 8, 18, 0) 0%, rgba(5, 8, 18, 0.72) 100%);
}

.at-fallback-hero::after {
    content: none;
}

.at-fallback-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 82% 20%, rgba(252, 0, 255, 0.14) 0%, rgba(252, 0, 255, 0) 32%),
        linear-gradient(135deg, #06152b 0%, #050812 58%, #150929 100%);
}

.at-fallback-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.06) brightness(0.78);
    opacity: 0.78;
}

.at-fallback-hero__container {
    position: relative;
    z-index: 1;
}

.at-fallback-hero__content {
    max-width: min(760px, 100%);
}

.at-fallback-hero__eyebrow {
    margin-bottom: 0.58rem;
}

.at-fallback-hero__title {
    max-width: 12.5ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 4.2vw, 4rem);
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
    text-wrap: balance;
}

.at-fallback-hero__intro {
    max-width: 46rem;
    margin: clamp(0.72rem, 1.35vw, 1rem) 0 0;
    color: rgba(230, 240, 255, 0.9);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.58;
}

.at-fallback-hero__actions {
    margin-top: clamp(0.9rem, 1.75vw, 1.3rem);
}

.at-fallback-hero--celebrate .at-fallback-hero__title,
.at-fallback-hero--location-celebrate .at-fallback-hero__title,
.at-fallback-hero--location-celebration .at-fallback-hero__title {
    max-width: 13.5ch;
}

.at-fallback-hero--dining .at-fallback-hero__title,
.at-fallback-hero--location-dining .at-fallback-hero__title {
    max-width: 12ch;
}

.at-fallback-hero--attractions .at-fallback-hero__title,
.at-fallback-hero--location-attractions .at-fallback-hero__title {
    max-width: 14ch;
}

.at-fallback-hero--title-medium .at-fallback-hero__title {
    max-width: 15ch;
    font-size: clamp(2rem, 3.9vw, 3.7rem);
}

.at-fallback-hero--title-long .at-fallback-hero__title {
    max-width: 17ch;
    font-size: clamp(1.9rem, 3.45vw, 3.3rem);
    line-height: 1;
}

.at-fallback-hero--title-xlong .at-fallback-hero__title {
    max-width: 20ch;
    font-size: clamp(1.78rem, 3.05vw, 2.95rem);
    line-height: 1.02;
}

.at-fallback-hero--location-celebration {
    min-height: clamp(220px, 24vw, 320px);
    padding: clamp(1.85rem, 3.2vw, 3rem) 0 clamp(1.65rem, 2.8vw, 2.6rem);
}

.at-fallback-hero--location-celebration .at-fallback-hero__content {
    max-width: min(900px, 100%);
}

.at-fallback-hero--location-celebration.at-fallback-hero--title-long .at-fallback-hero__title,
.at-fallback-hero--location-celebration.at-fallback-hero--title-xlong .at-fallback-hero__title {
    max-width: 21ch;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.02;
}

.at-fallback-hero--location-celebration .at-fallback-hero__intro {
    max-width: 43rem;
}

/* ===========================================================
   STANDARD WORDPRESS PAGES
   =========================================================== */

.at-standard-page {
    background: #050812;
    color: #e6f0ff;
}

.at-fallback-hero--standard-page {
    min-height: clamp(170px, 20vw, 260px);
    padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(1.5rem, 2.6vw, 2.25rem);
}

.at-fallback-hero--standard-page .at-fallback-hero__content {
    max-width: min(900px, 100%);
}

.at-fallback-hero--standard-page .at-fallback-hero__title {
    max-width: 18ch;
}

.at-standard-page__content {
    --at-standard-page-content-pad-top: clamp(2.5rem, 5vw, 4.5rem);
    position: relative;
    padding: var(--at-standard-page-content-pad-top) 0 clamp(3.2rem, 6vw, 5.5rem);
    background:
        linear-gradient(180deg, rgba(7, 13, 30, 0.98) 0%, rgba(5, 8, 18, 1) 18%, rgba(5, 8, 18, 1) 100%),
        #050812;
}

.at-standard-page__content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 2px;
    pointer-events: none;
    background-image: linear-gradient(
        90deg,
        rgba(90, 185, 255, 1) 0%,
        rgba(90, 185, 255, 1) 40%,
        rgba(255, 255, 255, 1) 47%,
        rgba(255, 255, 255, 1) 53%,
        rgba(90, 185, 255, 1) 60%,
        rgba(90, 185, 255, 1) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 1.5px rgba(0, 204, 255, 0.9),
        0 0 10px rgba(0, 204, 255, 0.65);
}

.at-standard-page__article {
    margin: 0;
}

.at-standard-page__body {
    max-width: 920px;
    margin: 0 auto;
    color: rgba(230, 240, 255, 0.92);
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.72;
}

.at-standard-page__body > *:first-child {
    margin-top: 0;
}

.at-standard-page__body > *:last-child {
    margin-bottom: 0;
}

.at-standard-page__body p,
.at-standard-page__body ul,
.at-standard-page__body ol {
    margin: 0 0 1.15rem;
}

.at-standard-page__body h2,
.at-standard-page__body h3,
.at-standard-page__body h4 {
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
    text-wrap: balance;
}

.at-standard-page__body h2 {
    margin: clamp(2rem, 4vw, 3rem) 0 0.85rem;
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.at-standard-page__body h3 {
    margin: clamp(1.7rem, 3.2vw, 2.35rem) 0 0.7rem;
    font-size: clamp(1.32rem, 2.2vw, 1.85rem);
}

.at-standard-page__body h4 {
    margin: 1.35rem 0 0.55rem;
    font-size: clamp(1.12rem, 1.6vw, 1.32rem);
}

.at-standard-page__body a {
    color: #8ee8ff;
    font-weight: 700;
    text-decoration-color: rgba(0, 204, 255, 0.5);
    text-underline-offset: 0.18em;
}

.at-standard-page__body a:hover,
.at-standard-page__body a:focus {
    color: #ffffff;
    text-decoration-color: rgba(252, 0, 255, 0.75);
}

.at-standard-page__body ul,
.at-standard-page__body ol {
    padding-left: 1.35rem;
}

.at-standard-page__body li + li {
    margin-top: 0.38rem;
}

.at-standard-page__body .page-links {
    margin-top: 1.75rem;
}

.at-contact-page {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.4rem);
}

.at-contact-page__grid {
    display: grid !important;
    grid-template-columns: minmax(330px, 0.95fr) minmax(390px, 1.05fr);
    gap: clamp(1.4rem, 3vw, 2.3rem);
    align-items: start !important;
}

.at-contact-page__grid > .wp-block-column {
    min-width: 0;
}

.at-contact-page__support {
    min-width: 0;
}

.at-contact-page__panel-title {
    margin: 0 0 0.45rem !important;
    color: #ffffff;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.at-contact-page__panel-copy {
    margin: 0 0 1rem !important;
    color: var(--at-card-copy-color);
    font-size: 0.96rem;
    line-height: 1.5;
}

.at-contact-location-finder {
    margin: 0;
    padding: 0;
}

.at-contact-location-finder__controls {
    margin-bottom: 0.85rem;
}

.at-contact-location-finder__search,
input[type="search"].at-contact-location-finder__search {
    width: 100%;
    min-height: 42px;
}

.at-contact-location-finder__grid {
    display: grid;
    gap: 0.85rem;
    max-height: 650px;
    overflow: auto;
    padding-right: 0.28rem;
}

.at-contact-location-finder__grid::-webkit-scrollbar {
    width: 8px;
}

.at-contact-location-finder__grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(0, 204, 255, 0.28);
}

.at-contact-location-finder__empty[hidden] {
    display: none !important;
}

.at-contact-location-finder__empty {
    margin-top: 0.85rem;
}

.at-contact-page__form-column iframe,
.at-contact-page__form-column form,
.at-contact-page__form-column .leadconnector-form {
    max-width: 100%;
}

.at-contact-page__form-column iframe {
    display: block;
    width: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .at-contact-page__grid {
        grid-template-columns: 1fr;
    }

    .at-contact-location-finder__grid {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

.at-module--role_category_grid {
    margin-block: 0;
    background:
        linear-gradient(180deg, #050812 0%, #091128 54%, #050812 100%);
}

.at-role-category-grid {
    color: #ffffff;
    padding: clamp(2.6rem, 5.8vw, 5rem) 0;
}

.at-standard-page__content + .at-modules .at-module--role_category_grid .at-role-category-grid {
    padding-top: clamp(1.8rem, 4vw, 3.2rem);
}

.at-role-category-grid__header {
    max-width: 56rem;
    margin: 0 auto clamp(1.35rem, 3vw, 2.35rem);
    text-align: center;
}

.at-role-category-grid__eyebrow,
.at-external-cta__eyebrow {
    color: var(--at-neon-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    margin: 0 0 0.55rem;
    text-transform: uppercase;
}

.at-role-category-grid h2,
.at-external-cta h2 {
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.02;
    margin: 0;
    text-transform: uppercase;
    text-wrap: balance;
}

.at-role-category-grid__intro {
    color: rgba(230, 240, 255, 0.78);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.65;
    margin: 0.9rem auto 0;
    max-width: 48rem;
}

.at-role-category-grid__sections {
    display: grid;
    gap: clamp(1.55rem, 3.4vw, 2.55rem);
}

.at-role-category-grid__section {
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.35rem);
}

.at-role-category-grid__section-header {
    display: grid;
    gap: 0.45rem;
    max-width: 48rem;
}

.at-role-category-grid__section-header h3 {
    color: #ffffff;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.at-role-category-grid__section-header p {
    color: rgba(230, 240, 255, 0.7);
    font-size: clamp(0.96rem, 1.25vw, 1.04rem);
    line-height: 1.5;
    margin: 0;
}

.at-role-category-grid__roles {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
}

.at-role-category-grid__role-card {
    align-items: center;
    display: flex;
    min-height: 3.7rem;
    padding: 0.78rem 0.9rem;
    border: 1px solid rgba(142, 232, 255, 0.16);
    border-radius: 0.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.at-role-category-grid__role-card h4 {
    color: rgba(245, 249, 255, 0.94);
    font-size: clamp(0.9rem, 1.08vw, 1rem);
    font-weight: 850;
    line-height: 1.18;
    margin: 0;
}

.at-module--external_cta {
    margin-block: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 1) 0%, rgba(11, 18, 45, 0.98) 52%, rgba(31, 17, 63, 0.98) 100%),
        linear-gradient(180deg, #050812 0%, #10143a 100%);
}

.at-external-cta {
    color: #ffffff;
    padding: clamp(1.9rem, 4.5vw, 3.6rem) 0;
}

.at-external-cta__inner {
    align-items: center;
    display: grid;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 74rem;
    margin: 0 auto;
}

.at-external-cta__content {
    max-width: 47rem;
}

.at-external-cta__content p:not(.at-external-cta__eyebrow) {
    color: rgba(230, 240, 255, 0.74);
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.6;
    margin: 0.78rem 0 0;
}

.at-external-cta__action {
    justify-self: end;
}

.at-external-cta__action .btn-neon {
    justify-content: center;
    min-width: min(100%, 16rem);
    text-align: center;
}

@media (max-width: 991.98px) {
    .at-role-category-grid__roles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .at-role-category-grid__roles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-external-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .at-external-cta__content {
        margin-right: auto;
        margin-left: auto;
    }

    .at-external-cta__action {
        justify-self: stretch;
    }

    .at-external-cta__action .btn-neon {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .at-role-category-grid__roles {
        grid-template-columns: 1fr;
    }
}

.at-celebrate-hero,
.at-location-celebrate-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.75rem, 5vw, 4.5rem);
    background:
        linear-gradient(135deg, rgba(0, 204, 255, 0.16) 0%, rgba(5, 8, 18, 0.98) 46%, rgba(252, 0, 255, 0.13) 100%),
        linear-gradient(180deg, #050812 0%, #0b1226 100%);
}

.at-celebrate-hero__inner,
.at-location-celebrate-hero__inner {
    max-width: 820px;
}

.at-celebrate-hero h1,
.at-location-celebrate-hero h1 {
    margin: 0.5rem 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 5.4vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
    text-wrap: balance;
}

.at-celebration-grid-section {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.at-celebration-available-section {
    padding-top: 0;
}

.at-celebration-choice-section,
.at-location-celebration-grid-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #10143a;
}

.at-celebration-choice-section::after,
.at-location-celebration-grid-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 14% 18%, rgba(252, 0, 255, 0.24) 0 12%, rgba(252, 0, 255, 0) 36%),
        radial-gradient(circle at 84% 22%, rgba(0, 204, 255, 0.3) 0 10%, rgba(0, 204, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 0, 255, 0.22) 0%, rgba(24, 28, 86, 0.92) 42%, rgba(0, 204, 255, 0.2) 100%),
        linear-gradient(180deg, rgba(12, 16, 48, 0.96) 0%, rgba(18, 20, 64, 0.98) 100%);
}

.at-celebration-choice-section > .container,
.at-location-celebration-grid-section > .container {
    position: relative;
    z-index: 1;
}

.at-celebration-grid-section__header {
    max-width: 760px;
    margin: 0 auto clamp(1.6rem, 4vw, 2.6rem);
    text-align: center;
}

.at-celebration-grid-section__heading-shadow {
    display: inline-block;
    filter:
        drop-shadow(0 8px 22px rgba(1, 4, 18, 0.84))
        drop-shadow(0 0 46px rgba(1, 4, 18, 0.62));
}

.at-celebration-grid-section__header .at-location-eyebrow {
    margin: 0 0 0.36rem;
    color: var(--at-neon-cyan);
    text-shadow:
        0 2px 8px rgba(1, 4, 18, 0.72),
        0 0 18px rgba(1, 4, 18, 0.42);
}

.at-celebration-grid-section__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 2.8vw, 3.35rem);
    line-height: 1.05;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow:
        0 3px 10px rgba(1, 4, 18, 0.78),
        0 0 28px rgba(1, 4, 18, 0.46),
        0 0 26px rgba(0, 204, 255, 0.14);
}

.at-celebration-grid-section__header > p {
    max-width: 680px;
    margin: 0.7rem auto 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.55;
    text-shadow:
        0 2px 7px rgba(1, 4, 18, 0.82),
        0 0 18px rgba(1, 4, 18, 0.58);
}

.at-celebration-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-celebration-card {
    position: relative;
    display: flex;
    min-height: 18rem;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: var(--at-card-bg-solid);
    border: var(--at-card-border-cyan-soft);
    border-radius: var(--at-card-radius);
    box-shadow: var(--at-card-shadow-cyan-soft);
}

.at-celebration-card:hover,
.at-celebration-card:focus {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.42);
    box-shadow: var(--at-card-shadow-cyan-hover);
}

.at-celebration-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: min(74%, 18rem);
    min-width: 0;
    padding: 1.35rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.at-celebration-card__content h3 {
    margin: 0.5rem 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    line-height: 1.02;
}

.at-celebration-card__content p {
    margin: 0.1rem 0 1.1rem;
    color: var(--at-card-copy-muted);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.42;
}

.at-celebration-card__media {
    position: absolute;
    inset: 0 -14% 0 auto;
    z-index: 1;
    width: 114%;
    background: var(--at-card-media-bg);
}

.at-celebration-card__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 76%;
    background: linear-gradient(90deg, rgba(8, 14, 28, 1) 0%, rgba(8, 14, 28, 0.94) 24%, rgba(8, 14, 28, 0.68) 48%, rgba(8, 14, 28, 0.24) 76%, rgba(8, 14, 28, 0) 100%);
    pointer-events: none;
}

.at-celebration-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-location-celebrations-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(2.15rem, 4vw, 3.25rem) 0;
    isolation: isolate;
    background: #10143a;
}

.at-location-celebrations-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 14% 18%, rgba(252, 0, 255, 0.24) 0 12%, rgba(252, 0, 255, 0) 36%),
        radial-gradient(circle at 84% 22%, rgba(0, 204, 255, 0.3) 0 10%, rgba(0, 204, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 0, 255, 0.22) 0%, rgba(24, 28, 86, 0.92) 42%, rgba(0, 204, 255, 0.2) 100%),
        linear-gradient(180deg, rgba(12, 16, 48, 0.96) 0%, rgba(18, 20, 64, 0.98) 100%);
}

.at-location-celebrations-showcase .container {
    position: relative;
    z-index: 1;
}

.at-location-celebrations-showcase__layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.31fr) minmax(0, 0.69fr);
    gap: clamp(1.25rem, 3vw, 2.35rem);
    align-items: center;
}

.at-location-celebrations-showcase__intro {
    min-width: 0;
}

.at-location-celebrations-showcase__intro .at-location-eyebrow {
    text-shadow:
        0 2px 8px rgba(1, 4, 18, 0.72),
        0 0 18px rgba(1, 4, 18, 0.42);
}

.at-location-celebrations-showcase__intro h2 {
    margin: 0.25rem 0 0.65rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 2.8vw, 3.35rem);
    line-height: 1.05;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow:
        0 3px 10px rgba(1, 4, 18, 0.78),
        0 0 28px rgba(1, 4, 18, 0.46),
        0 0 26px rgba(0, 204, 255, 0.14);
}

.at-location-celebrations-showcase__heading-line,
.at-location-celebrations-showcase__heading-location {
    display: block;
}

.at-location-celebrations-showcase__heading-line {
    white-space: nowrap;
}

.at-location-celebrations-showcase__intro p:not(.at-location-eyebrow) {
    max-width: 27rem;
    margin: 0;
    color: rgba(230, 240, 255, 0.76);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 600;
    line-height: 1.48;
    text-shadow:
        0 2px 7px rgba(1, 4, 18, 0.82),
        0 0 18px rgba(1, 4, 18, 0.58);
}

.at-location-celebrations-showcase__intro-cta,
.at-location-celebrations-showcase__intro-cta:link,
.at-location-celebrations-showcase__intro-cta:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 1.1rem;
    color: #00ccff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow:
        0 2px 7px rgba(1, 4, 18, 0.78),
        0 0 16px rgba(1, 4, 18, 0.54),
        0 0 12px rgba(0, 204, 255, 0.28);
    transition:
        color 0.18s ease,
        text-shadow 0.18s ease,
        transform 0.18s ease;
}

.at-location-celebrations-showcase__intro-cta::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    filter: drop-shadow(0 0 8px rgba(0, 204, 255, 0.42));
    transform: rotate(45deg);
    transition:
        transform 0.18s ease,
        filter 0.18s ease;
}

.at-location-celebrations-showcase__intro-cta:hover,
.at-location-celebrations-showcase__intro-cta:focus-visible {
    color: #7ee8ff;
    text-shadow:
        0 2px 8px rgba(1, 4, 18, 0.82),
        0 0 18px rgba(1, 4, 18, 0.58),
        0 0 16px rgba(0, 204, 255, 0.42);
    transform: translateX(2px);
}

.at-location-celebrations-showcase__intro-cta:hover::after,
.at-location-celebrations-showcase__intro-cta:focus-visible::after {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.58));
    transform: translateX(2px) rotate(45deg);
}

.at-location-celebrations-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    min-width: 0;
}

.at-location-celebration-occasion {
    position: relative;
    display: grid;
    grid-template-rows: minmax(6.35rem, 0.72fr) auto;
    min-height: 11.95rem;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: rgba(5, 10, 24, 0.88);
    border: 1px solid rgba(94, 220, 255, 0.26);
    border-radius: 8px;
    box-shadow: 0 0 28px rgba(94, 220, 255, 0.08);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.at-location-celebration-occasion:hover,
.at-location-celebration-occasion:focus-visible {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.42);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2), 0 0 22px rgba(0, 204, 255, 0.12);
    transform: translateY(-1.5px);
}

.at-location-celebration-occasion__media {
    position: relative;
    display: block;
    min-height: 6.35rem;
    overflow: hidden;
}

.at-location-celebration-occasion__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.06) 0%, rgba(5, 8, 18, 0.38) 100%),
        linear-gradient(90deg, rgba(0, 204, 255, 0.2) 0%, rgba(252, 0, 255, 0.14) 100%);
}

.at-location-celebration-occasion__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 220ms ease;
}

.at-location-celebration-occasion:hover .at-location-celebration-occasion__media img,
.at-location-celebration-occasion:focus-visible .at-location-celebration-occasion__media img {
    transform: scale(1.035);
}

.at-location-celebration-occasion__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 5.45rem;
    padding: 0.68rem 0.82rem 0.72rem;
}

.at-location-celebration-occasion__status {
    align-self: flex-start;
    margin-bottom: 0.34rem;
    padding: 0.26rem 0.44rem;
    color: #ffffff;
    background: rgba(252, 0, 255, 0.22);
    border: 1px solid rgba(252, 0, 255, 0.44);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.at-location-celebration-occasion__title {
    color: #ffffff;
    font-size: clamp(1.02rem, 1.08vw, 1.26rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.at-location-celebration-occasion__text {
    display: block;
    margin-top: 0.26rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.24;
}

.at-location-celebration-occasion__cta {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 0.46rem;
    color: #5edcff;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    .at-location-celebration-occasion__media img {
        transition: none;
    }
}

.at-celebration-location-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-celebration-location-link,
.at-celebration-highlight-list span {
    display: block;
    min-width: 0;
    padding: 1rem 1.1rem;
    color: #ffffff;
    text-decoration: none;
    background: rgba(13, 20, 38, 0.82);
    border: 1px solid rgba(94, 220, 255, 0.18);
    border-radius: 10px;
}

.at-celebration-location-link:hover,
.at-celebration-location-link:focus {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.5);
}

.at-celebration-highlight-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-celebration-available-section .at-location-finder--compact {
    display: grid;
    align-items: center;
    min-height: 5.85rem;
    margin-bottom: 1.2rem;
    padding-top: 0;
    padding-bottom: 0;
}

.at-celebration-available-section .at-celebration-store-band {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(180px, max-content) minmax(0, 1fr);
    gap: 0.75rem clamp(1.25rem, 4vw, 3rem);
    justify-content: stretch;
    margin-bottom: 0;
}

.at-celebration-available-section .at-celebration-store-band__title {
    flex: 0 0 auto;
    color: rgba(230, 240, 255, 0.88);
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.at-celebration-available-section .at-celebration-store-band__tools {
    display: grid;
    flex: 1 1 auto;
    gap: 0.45rem;
    justify-items: end;
    min-width: 0;
}

.at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__proximity {
    flex: 0 1 auto;
    justify-content: flex-end;
}

.at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__status {
    flex: none;
    min-width: 0;
    max-width: min(100%, 520px);
    text-align: right;
}

.at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__status:empty {
    display: none;
}

.at-celebration-location-card-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-celebration-location-card-item {
    min-width: 0;
}

.at-celebration-location-card {
    display: grid;
    grid-template-columns: minmax(8.5rem, 0.42fr) minmax(0, 0.58fr);
    min-height: 9.5rem;
    height: 100%;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: var(--at-card-bg-solid);
    border: var(--at-card-border-cyan-soft);
    border-radius: var(--at-card-radius);
    box-shadow: var(--at-card-shadow-cyan-soft);
}

.at-celebration-location-card:hover,
.at-celebration-location-card:focus {
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.48);
    box-shadow: 0 0 28px rgba(0, 204, 255, 0.14);
}

.at-celebration-location-card__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--at-card-media-bg);
}

.at-celebration-location-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-celebration-available-section .at-celebration-location-card__media .at-location-card__distance {
    right: auto;
    top: auto;
    bottom: 0.85rem;
    left: 0.85rem;
}

.at-celebration-location-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1rem;
}

.at-celebration-location-card__body h3 {
    margin: 0 0 0.38rem;
    color: #ffffff;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.02;
}

.at-celebration-location-card__body p,
.at-celebration-location-card__body span {
    margin: 0;
    color: rgba(230, 240, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.4;
}

.at-celebration-location-card__body p {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.at-celebration-faq-list {
    display: grid;
    gap: 1.1rem;
}

.at-celebration-faq {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(94, 220, 255, 0.16);
}

.at-celebration-faq:first-child {
    padding-top: 0;
    border-top: 0;
}

.at-celebration-faq h3 {
    margin: 0 0 0.45rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.at-celebration-faq p {
    margin: 0;
}

.at-location-attraction-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 0 3rem;
}

.at-location-attraction-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.at-location-attraction-hero__copy h1 {
    margin: 0.5rem 0;
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.at-location-attraction-intro {
    max-width: 720px;
    margin: 1.2rem 0 0;
    color: rgba(230, 240, 255, 0.88);
    font-size: 1.04rem;
    line-height: 1.7;
}

.at-location-attraction-hero__media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.35);
    box-shadow: 0 0 28px rgba(0, 204, 255, 0.14);
}

.at-location-attraction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .at-content-feature__inner {
        grid-template-columns: 1fr;
    }

    .at-content-feature--image-left .at-content-feature__media {
        order: 0;
    }

    .at-content-feature--image-treatment-edge_fade {
        display: flex;
        flex-direction: column;
    }

    .at-content-feature--image-treatment-edge_fade .container {
        order: 1;
        width: 100%;
    }

    .at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .container {
        order: 2;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 0;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__content {
        order: 1;
        width: 100%;
        padding: clamp(1.35rem, 5vw, 2.4rem);
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__media {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        order: 2;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .at-content-feature__media {
        order: -1;
    }

    .at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .container {
        margin-top: -1px;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__media img {
        position: static;
        width: 100%;
        height: 100%;
        object-position: center center;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__media::before {
        inset: 0 0 auto;
        width: auto;
        height: 68%;
        background: linear-gradient(180deg, rgba(5, 8, 18, 1) 0%, rgba(5, 8, 18, 0.76) 34%, rgba(5, 8, 18, 0.28) 70%, rgba(5, 8, 18, 0) 100%);
    }

    .at-content-feature--image-treatment-edge_fade.at-content-feature--image-left .at-content-feature__media::before {
        inset: auto 0 0;
        height: 72%;
        background: linear-gradient(180deg, rgba(5, 8, 18, 0) 0%, rgba(5, 8, 18, 0.18) 28%, rgba(5, 8, 18, 0.76) 66%, rgba(5, 8, 18, 1) 100%);
    }

    .at-content-feature--image-treatment-centered_background .at-content-feature__inner {
        min-height: clamp(30rem, 78vw, 40rem);
        padding: clamp(1.6rem, 6vw, 3rem);
    }

    .at-celebration-grid,
    .at-celebration-location-list,
    .at-celebration-highlight-list,
    .at-celebration-location-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-celebration-location-card {
        grid-template-columns: 1fr;
    }

    .at-celebration-location-card__media {
        aspect-ratio: 16 / 8;
    }

    .at-celebration-available-section .at-celebration-location-card__media .at-location-card__distance {
        right: 0.85rem;
        top: 0.85rem;
        bottom: auto;
        left: auto;
    }

    .at-celebration-available-section .at-celebration-store-band {
        align-items: center;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .at-celebration-available-section .at-celebration-store-band__tools,
    .at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__proximity {
        justify-items: center;
        justify-content: center;
        width: 100%;
    }

    .at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__status {
        flex-basis: 100%;
        min-width: 0;
        text-align: center;
    }

    .at-location-celebrations-showcase__layout {
        grid-template-columns: 1fr;
    }

    .at-location-celebrations-showcase__intro {
        max-width: 42rem;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }

    .at-location-celebrations-showcase__intro p:not(.at-location-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .at-location-celebrations-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-location-attraction-hero__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .at-fallback-hero {
        min-height: clamp(210px, 34vh, 300px);
        padding: 2rem 0 1.85rem;
        text-align: center;
    }

    .at-fallback-hero::before {
        background:
            linear-gradient(180deg, rgba(5, 8, 18, 0.76) 0%, rgba(5, 8, 18, 0.92) 100%),
            radial-gradient(circle at 50% 8%, rgba(0, 204, 255, 0.22) 0%, rgba(0, 204, 255, 0) 42%);
    }

    .at-fallback-hero__content,
    .at-fallback-hero__intro {
        margin-right: auto;
        margin-left: auto;
    }

    .at-fallback-hero__title {
        max-width: 100%;
        font-size: clamp(1.9rem, 10vw, 3rem);
    }

    .at-fallback-hero--title-long .at-fallback-hero__title,
    .at-fallback-hero--title-xlong .at-fallback-hero__title,
    .at-fallback-hero--location-celebration.at-fallback-hero--title-long .at-fallback-hero__title,
    .at-fallback-hero--location-celebration.at-fallback-hero--title-xlong .at-fallback-hero__title {
        max-width: 100%;
        font-size: clamp(1.65rem, 8.4vw, 2.45rem);
        line-height: 1.04;
    }

    .at-fallback-hero__actions {
        justify-content: center;
    }

    .at-content-feature__content,
    .at-content-feature--text-only .at-content-feature__content {
        text-align: center;
    }

    .at-content-feature__body {
        margin-right: auto;
        margin-left: auto;
    }

    .at-content-feature__cta-row {
        justify-content: center;
    }

    .at-content-feature__points {
        grid-template-columns: 1fr;
        max-width: 32rem;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .at-content-feature__points li {
        display: flex;
        align-items: center;
        min-height: 2.92em;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__content,
    .at-content-feature--image-treatment-centered_background .at-content-feature__content {
        text-align: center;
    }

    .at-content-feature--image-treatment-edge_fade .at-content-feature__body,
    .at-content-feature--image-treatment-edge_fade .at-content-feature__points {
        margin-right: auto;
        margin-left: auto;
    }

    .at-celebration-available-section .at-location-finder--compact {
        min-height: 0;
        padding-top: 0.98rem;
        padding-bottom: 0.05rem;
    }

    .at-celebration-available-section .at-celebration-store-band__tools {
        max-width: 34rem;
        margin-right: auto;
        margin-left: auto;
    }

    .at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__proximity {
        max-width: 100%;
    }

    .at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__zip,
    .at-celebration-available-section .at-celebration-store-band__tools .at-location-finder__button {
        width: 100%;
    }

    .at-location-celebration-occasion {
        min-height: 15.25rem;
    }
}

@media (max-width: 575.98px) {
    .at-celebration-grid,
    .at-celebration-location-list,
    .at-celebration-highlight-list,
    .at-celebration-location-card-grid {
        grid-template-columns: 1fr;
    }

    .at-celebration-card {
        display: grid;
        min-height: 0;
    }

    .at-celebration-card__content {
        align-items: center;
        order: 2;
        width: 100%;
        padding: 1.25rem;
        text-align: center;
        text-shadow: none;
    }

    .at-celebration-card__media {
        position: relative;
        inset: auto;
        order: 1;
        width: 100%;
        min-height: 13.5rem;
    }

    .at-location-celebrations-showcase {
        padding: 2.4rem 0 2.55rem;
    }

    .at-location-celebrations-showcase__grid {
        grid-template-columns: 1fr;
    }

    .at-location-celebration-occasion {
        grid-template-columns: minmax(6.75rem, 0.38fr) minmax(0, 0.62fr);
        grid-template-rows: auto;
        min-height: 0;
    }

    .at-location-celebration-occasion__content {
        min-height: 0;
        padding: 1rem;
    }

    .at-location-celebration-occasion__media {
        min-height: 8.25rem;
    }

    .at-location-celebration-occasion__title {
        font-size: 1.24rem;
    }

    .at-celebration-card__media::before {
        inset: auto 0 0;
        width: auto;
        height: 72%;
        background: linear-gradient(180deg, rgba(8, 14, 28, 0) 0%, rgba(8, 14, 28, 0.42) 48%, rgba(8, 14, 28, 1) 100%);
    }

    .at-celebration-available-section .at-location-finder--compact {
        padding-top: 1rem;
        padding-bottom: 0;
    }

    .at-celebration-available-section .at-celebration-store-band__title {
        white-space: normal;
    }

}

/* ===========================================================
   404 PAGE
   =========================================================== */

.at-404-page {
    background: #050812;
    color: var(--at-body-text);
}

.at-fallback-hero--error-404 {
    justify-content: center;
    min-height: clamp(360px, 48vw, 560px);
    text-align: center;
}

.at-fallback-hero--error-404::before {
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.34) 0%, rgba(5, 8, 18, 0.76) 100%),
        linear-gradient(90deg, rgba(5, 8, 18, 0.72) 0%, rgba(5, 8, 18, 0.46) 50%, rgba(5, 8, 18, 0.72) 100%);
}

.at-fallback-hero--error-404 .at-fallback-hero__content {
    max-width: min(760px, 100%);
    margin: 0 auto;
}

.at-fallback-hero--error-404 .at-fallback-hero__title {
    max-width: 14ch;
    margin-right: auto;
    margin-left: auto;
}

.at-fallback-hero--error-404 .at-fallback-hero__intro {
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
}

.at-fallback-hero--error-404 .at-fallback-hero__actions {
    justify-content: center;
}

@media (max-width: 575.98px) {
    .at-fallback-hero--error-404 {
        min-height: clamp(340px, 74vw, 460px);
    }
}

/* ===========================================================
   PRIVACY / COOKIE CONTROLS
   =========================================================== */

.at-footer-privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
    font-size: 0.82rem;
}

.at-footer-privacy-links a,
.at-footer-privacy-links button {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.at-footer-privacy-links button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.at-footer-privacy-links a:hover,
.at-footer-privacy-links button:hover {
    color: #67e8f9;
}

.at-privacy-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    display: grid;
    gap: 0.85rem;
    width: min(28rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 0.5rem;
    background: rgba(5, 8, 18, 0.96);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.42);
    color: #f8fbff;
}

.at-privacy-banner p,
.at-privacy-panel p {
    margin: 0;
}

.at-privacy-banner__actions,
.at-privacy-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.at-privacy-button {
    min-height: 2.35rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.45rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.at-privacy-button--primary {
    border-color: rgba(255, 43, 214, 0.55);
    background: #ff2bd6;
    color: #ffffff;
}

.at-privacy-button--secondary,
.at-privacy-button--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
}

.at-privacy-button--ghost {
    border-color: rgba(103, 232, 249, 0.42);
}

.at-privacy-panel__actions .at-privacy-button--full {
    flex: 1 1 100%;
    width: 100%;
}

.at-privacy-panel {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(5, 8, 18, 0.58);
}

.at-privacy-panel[hidden],
.at-privacy-banner[hidden] {
    display: none;
}

.at-privacy-panel__dialog {
    width: min(34rem, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    padding: 1.25rem;
    border: 1px solid rgba(103, 232, 249, 0.3);
    border-radius: 0.5rem;
    background: #080d1d;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.55);
    color: #f8fbff;
}

.at-privacy-panel__header {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.at-privacy-panel__header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.at-privacy-panel__close {
    position: relative;
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    border: 0;
    border-radius: 0.25rem;
    background: transparent;
    color: #ffffff;
    font-size: 0;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.at-privacy-panel__close:hover,
.at-privacy-panel__close:focus {
    color: #ffffff;
    opacity: 1;
}

.at-privacy-panel__close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.35);
}

.at-privacy-panel__close::before,
.at-privacy-panel__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.35rem;
    height: 3px;
    margin: -1.5px 0 0 -0.675rem;
    background: currentColor;
    border-radius: 999px;
}

.at-privacy-panel__close::before {
    transform: rotate(45deg);
}

.at-privacy-panel__close::after {
    transform: rotate(-45deg);
}

.at-privacy-panel__choices {
    display: grid;
    margin: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.at-privacy-choice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem 0;
}

.at-privacy-choice + .at-privacy-choice {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.at-privacy-choice input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.18rem;
}

.at-privacy-choice__body {
    display: grid;
    gap: 0.2rem;
}

.at-privacy-choice__body span,
.at-privacy-panel__gpc {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

.at-privacy-panel__gpc {
    margin-top: 0.75rem;
    color: #67e8f9;
}

@media (max-width: 575.98px) {
    .at-footer-privacy-links {
        justify-content: center;
    }

    .at-privacy-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
    }

    .at-privacy-banner__actions,
    .at-privacy-panel__actions {
        justify-content: stretch;
    }

    .at-privacy-button {
        flex: 1 1 auto;
    }
}
