/* The lobby scales html to ~100px per rem. Keep this component independent. */
.home-special {
    --special-card-width: clamp(104px, 23vw, 180px);
    box-sizing: border-box;
    container-type: inline-size;
    width: 100%;
    min-width: 0;
    padding: 16px 0 8px;
    overflow: hidden;
    color: inherit;
    font-size: 16px;
    line-height: 1.3;
}
.home-special *, .home-special *::before, .home-special *::after { box-sizing: border-box; }
.home-special h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
    padding: 0 8px;
    font-size: clamp(20px, 3.8vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    color: inherit;
}
.home-special h2::before, .home-special h2::after {
    content: '◇ ◆';
    flex: 0 0 auto;
    font-size: .55em;
    letter-spacing: .25em;
    color: var(--theme-color, #c69b63);
}
.home-special-track {
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px calc(50% - var(--special-card-width) / 2);
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}
.home-special-track::-webkit-scrollbar { display: none; }
.home-special-card {
    position: relative;
    flex: 0 0 var(--special-card-width);
    width: var(--special-card-width);
    min-width: var(--special-card-width);
    aspect-ratio: 3 / 4;
    padding: 0;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #251a25;
    color: white;
    cursor: pointer;
    scroll-snap-align: center;
    transform: scale(.86);
    transition: transform .25s;
    box-shadow: 0 6px 18px #0002;
    font: inherit;
}
.home-special-card.is-center, .home-special-card:focus-visible { transform: scale(1); }
.home-special-card:focus-visible { outline: 3px solid #dfb879; outline-offset: 3px; }
.home-special-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-special-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 8px 12px;
    background: linear-gradient(transparent, #000a);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.home-special-controls { display: flex; justify-content: center; gap: 16px; }
.home-special-controls button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.home-special-status { text-align: center; font-size: 14px; margin: 8px; }
.home-special-status:empty { display: none; }
@supports (width: 1cqw) {
    .home-special-track { --special-card-width: clamp(104px, 23cqw, 180px); }
    .home-special h2 { font-size: clamp(20px, 3.8cqw, 30px); }
    .home-special-card span { font-size: clamp(14px, 2.4cqw, 18px); }
}
@media (prefers-reduced-motion: reduce) { .home-special-card { transition: none; } }

.home-special-track { cursor: grab; user-select: none; }
.home-special-track:active { cursor: grabbing; }
.home-special-controls:empty { display: none; }
