/* ============================================
   Tabletop Siege Landing Page – Accent & Overrides
   ============================================ */

/* ── Accent gradient for the hero headline ── */
.ts-gradient-text {
    background: linear-gradient(120deg, #4AD9FF 0%, #7FE7FF 45%, #8C74FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Studio pill badge ── */
.ts-badge {
    display: inline-block;
    background: rgba(74, 217, 255, 0.12);
    border: 1px solid rgba(74, 217, 255, 0.3);
    color: #8FE6FF;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* ── Nav logo text ── */
.ts-logo-text {
    background: linear-gradient(90deg, #fff, #8FE6FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── "Coming soon" store notice, standing in for a store badge ──
   Deliberately not a fake App Store button: the game is not on the
   Horizon Store yet, and a badge that links nowhere reads as broken. */
.ts-store-note {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 34px;
    border: 1px solid rgba(74, 217, 255, 0.28);
    background: rgba(74, 217, 255, 0.06);
    border-radius: 14px;
}

.ts-store-note strong {
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.3px;
}

.ts-store-note span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Landscape screenshot frame. The phone-frame in the shared sheet is
   portrait and 9:19.5; headset capture is 16:9. ── */
.ts-frame {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 48px rgba(74, 217, 255, 0.18);
}

.ts-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Feature cards: cyan lift on hover ── */
.ts-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        0 0 24px rgba(74, 217, 255, 0.15);
}

/* ── Spec strip ── */
.ts-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.ts-specs div span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-bottom: 4px;
}

.ts-specs div strong {
    font-size: 1.02rem;
    color: #fff;
    font-weight: 600;
}

/* ── Bigger hero headline on wider screens ── */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* ── FAQ details open state ── */
details[open] summary {
    color: #8FE6FF;
}
