/* =============================================================
   MCT – css/mod_test_bandit.css
   Bandit: erstes Auswahlspiel von getRandomSuS().
   Vertikale Namenswalze, arcadeartig inszeniert für Beamer.
   ============================================================= */

#bandit-buehne {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

#bandit-rahmen {
	position:   relative;
	width:      min(90vw, 900px);
	overflow:   hidden;
	background: linear-gradient(180deg, #000 0%, #1a1030 15%, #1a1030 85%, #000 100%);
	border:     4px solid #f59e0b;
	border-radius: 1.25rem;
	box-shadow: 0 0 60px rgba(245,158,11,.35), inset 0 0 40px rgba(0,0,0,.6);
	mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

#bandit-walze {
	position: absolute;
	top: 0; left: 0; right: 0;
	will-change: transform;
}

.bandit-name {
	height:      96px;
	display:     flex;
	align-items: center;
	justify-content: center;
	font-size:   clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	color:       #e5e7eb;
	white-space: nowrap;
	overflow:    hidden;
	text-overflow: ellipsis;
	padding:     0 1.5rem;
	box-sizing:  border-box;
}

#bandit-treffer-marker {
	position: absolute;
	left: 0; right: 0;
	border-top:    3px solid #f59e0b;
	border-bottom: 3px solid #f59e0b;
	background:    rgba(245,158,11,.12);
	pointer-events: none;
	transition: background .3s ease, box-shadow .3s ease;
}
#bandit-treffer-marker-aktiv,
.bandit-treffer-marker-aktiv {
	background: rgba(245,158,11,.35);
	box-shadow: 0 0 40px 10px rgba(245,158,11,.6) inset;
}

#bandit-btn-stop {
	font-size: clamp(1.75rem, 4vw, 3rem);
}
