/* ── Deck-Stapel ────────────────────────── */ .hand-slot-deck { position: relative; cursor: pointer; } .deck-stack-wrap { position: relative; width: 100%; height: calc(100% - 18px); } .deck-card-back, .deck-card-top { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 7px; box-shadow: 0 2px 8px rgba(0,0,0,0.7); } .deck-shadow-3 { transform: translate(-4px, -4px); } .deck-shadow-2 { transform: translate(-2px, -2px); } .deck-shadow-1 { transform: translate(-1px, -1px); } .deck-card-top { transform: translate(0,0); border: 1px solid rgba(200,150,42,0.5); } .deck-count { position: absolute; bottom: 2px; left: 0; right: 0; text-align: center; font-family: "Cinzel", serif; font-size: 10px; color: #f0d060; text-shadow: 0 1px 3px rgba(0,0,0,0.8); } .hand-slot-card { border: 1px solid rgba(200,150,42,0.4) !important; } .hand-slot-card:hover { border-color: rgba(200,150,42,0.9) !important; transform: translateY(-4px); transition: transform 0.15s; }
Verbindung wird hergestellt