/* ═══════════════════════════════════════════════════════════
   ZODIAC SIGN DEEP DIVE — MULTIPLAYER — Game-Specific Styles
   Shared styles (buttons, lang dropdown, modal, rejoin banner, tools grid,
   verdict card) → game-shared-style.css. The hero glow box + choice-card
   grid below are NOT shared (matches the pattern every other game uses —
   Cosmic Court has its own .cc-choice-card, the Soulmate Compatibility Test's
   multiplayer mode has its own .scm-choice-card — each game owns this styling, it was never meant to
   live in game-shared-style.css as ".zg-choice-*").
   ═══════════════════════════════════════════════════════════ */

.zsm-hero-glow-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px 28px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.07), transparent 60%);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.18), inset 0 0 30px rgba(139, 92, 246, 0.05);
}
.zsm-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .zsm-choice-grid { grid-template-columns: 1fr; } }
.zsm-choice-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-card, rgba(255,255,255,0.1));
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    display: block;
    width: 100%;
}
.zsm-choice-card:hover { border-color: var(--brand-primary-light, #a78bfa); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25); }
.zsm-choice-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.zsm-choice-card h3 { color: var(--text-primary, #fff); font-size: 1.08rem; margin-bottom: 6px; font-weight: 600; }
.zsm-choice-card p { color: var(--text-secondary, #ccc); font-size: 0.85rem; margin: 0; line-height: 1.4; }

.zsm-view { display: none; }
.zsm-view-active { display: block; animation: zsm-fade-in 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes zsm-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.zsm-view-title { font-family: 'Playfair Display', serif; color: var(--text-primary); font-size: 1.3rem; margin-bottom: 14px; text-align: center; }

.zsm-lobby-code { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-primary); background: rgba(139,92,246,0.1); border: 1px solid var(--brand-primary-light); border-radius: 16px; padding: 12px 22px; display: block; text-align: center; margin: 0 auto 16px; }
.zsm-players-panel { background: rgba(255,255,255,0.025); border-radius: 14px; padding: 14px 18px; margin-bottom: 16px; }
.zsm-players-panel ul { list-style: none; padding: 0; margin: 0; }
.zsm-players-panel li { color: var(--text-secondary); font-size: 0.9rem; padding: 6px 0; }
.zg-host-badge { font-size: 0.65rem; background: var(--gradient-primary); color: white; padding: 2px 8px; border-radius: 50px; }
.zg-offline-badge { color: var(--text-muted); font-size: 0.75rem; }

.zsm-date-form { text-align: center; }
.zsm-date-form input { background: rgba(255,255,255,0.03); border: 1px solid var(--border-card); border-radius: 12px; padding: 12px 14px; color: var(--text-primary); font-size: 1rem; margin-bottom: 14px; width: 100%; box-sizing: border-box; }

.zsm-clues-list { list-style: none; padding: 0; margin: 0 0 18px; }
.zsm-clues-list li { background: rgba(139,92,246,0.06); border-left: 3px solid var(--brand-primary-light); border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; color: var(--text-primary); font-size: 0.92rem; line-height: 1.5; }

.zsm-sign-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
@media (max-width: 480px) { .zsm-sign-grid { grid-template-columns: repeat(3, 1fr); } }
.zsm-sign-btn { padding: 14px 6px !important; }
.zsm-sign-btn h3 { font-size: 0.78rem !important; }
.zsm-sign-btn .zsm-choice-icon { font-size: 1.6rem !important; margin-bottom: 4px !important; }
.zsm-sign-selected { border-color: var(--brand-primary-light) !important; background: rgba(139,92,246,0.2) !important; }

.zsm-result-list, .zsm-scoreboard-list { list-style: none; padding: 0; margin: 0 0 14px; }
.zsm-result-list li, .zsm-scoreboard-list li { padding: 7px 12px; border-radius: 8px; font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 6px; background: rgba(255,255,255,0.03); }
.zsm-result-correct { border-left: 3px solid #38a169; }
.zsm-result-wrong { border-left: 3px solid #c97b84; opacity: 0.75; }
