/* Suchtlappen Core – Komponenten-Styles (funktionieren auch ohne das Clan-Theme) */
:root {
	--sl-bg: #0a0d14;
	--sl-panel: #121826;
	--sl-panel-2: #171f30;
	--sl-line: #232c42;
	--sl-text: #e8ecf6;
	--sl-muted: #8b95ad;
	--sl-green: #3dff88;
	--sl-purple: #8b5cf6;
	--sl-pink: #ff4d6d;
	--sl-gold: #ffd166;
	--sl-accent: var(--sl-green);
}

/* ---------- Karten & Layout ---------- */
.sl-section { display: flex; flex-direction: column; gap: 16px; }
.sl-card {
	background: var(--sl-panel);
	border: 1px solid var(--sl-line);
	border-radius: 14px;
	padding: 18px 20px;
	color: var(--sl-text);
	position: relative;
	overflow: hidden;
}
.sl-card h3, .sl-card h4 { margin: 0 0 10px; color: var(--sl-text); }
.sl-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin: 12px 0; }
.sl-grid-2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.sl-heading { display: flex; align-items: baseline; gap: 12px; justify-content: space-between; margin: 18px 0 8px; }
.sl-more { color: var(--sl-green); text-decoration: none; font-size: .85em; white-space: nowrap; }
.sl-more:hover { text-decoration: underline; }
.sl-hint { color: var(--sl-muted); font-size: .82em; margin: 8px 0 0; }
.sl-notice {
	background: rgba(61, 255, 136, .1);
	border: 1px solid rgba(61, 255, 136, .4);
	color: var(--sl-green);
	border-radius: 10px;
	padding: 10px 14px;
	margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.sl-btn {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--sl-panel-2);
	color: var(--sl-text);
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	padding: 9px 16px;
	font: inherit; font-weight: 600; font-size: .9em;
	cursor: pointer;
	text-decoration: none;
	transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.sl-btn:hover { transform: translateY(-1px); border-color: var(--sl-green); color: var(--sl-text); }
.sl-btn-primary {
	background: linear-gradient(135deg, var(--sl-green), #21d970);
	color: #06240f; border: none;
	box-shadow: 0 0 18px rgba(61, 255, 136, .25);
}
.sl-btn-primary:hover { color: #06240f; box-shadow: 0 0 26px rgba(61, 255, 136, .45); }
.sl-btn-discord { background: #5865F2; color: #fff; border: none; justify-content: center; width: 100%; }
.sl-btn-discord:hover { color: #fff; box-shadow: 0 0 22px rgba(88, 101, 242, .5); }
.sl-btn-s { padding: 4px 10px; font-size: .8em; margin-left: 8px; }
.sl-btn-yes.is-active { background: rgba(61, 255, 136, .15); border-color: var(--sl-green); color: var(--sl-green); }
.sl-btn-maybe.is-active { background: rgba(255, 209, 102, .15); border-color: var(--sl-gold); color: var(--sl-gold); }
.sl-btn-no.is-active { background: rgba(255, 77, 109, .15); border-color: var(--sl-pink); color: var(--sl-pink); }

/* ---------- Mitglieder-Karten ---------- */
.sl-member { border-top: 3px solid var(--sl-accent); }
.sl-member-head { display: flex; align-items: center; gap: 12px; }
.sl-member-id { flex: 1; min-width: 0; }
.sl-avatar img, .sl-avatar-s img { border-radius: 50%; display: block; border: 2px solid var(--sl-accent); }
.sl-member-name { font-weight: 800; font-size: 1.05em; color: var(--sl-text); text-decoration: none; }
.sl-member-name:hover { color: var(--sl-accent); }
.sl-member-points { color: var(--sl-muted); font-size: .82em; }
.sl-live {
	background: rgba(61, 255, 136, .12);
	color: var(--sl-green);
	border-radius: 999px; padding: 4px 10px;
	font-size: .75em; font-weight: 700; white-space: nowrap;
	animation: sl-pulse 2s infinite;
}
@keyframes sl-pulse { 50% { box-shadow: 0 0 12px rgba(61, 255, 136, .5); } }
.sl-motto { color: var(--sl-muted); font-style: italic; margin: 10px 0 0; }
.sl-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.sl-chip {
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 999px;
	padding: 3px 10px;
	font-size: .75em; color: var(--sl-muted);
}
.sl-chip-badge {
	border-color: rgba(255, 209, 102, .5);
	color: var(--sl-gold);
	background: rgba(255, 209, 102, .08);
	font-weight: 700;
}

/* ---------- Events ---------- */
.sl-event-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.sl-event-title { font-weight: 800; font-size: 1.1em; color: var(--sl-text); text-decoration: none; }
.sl-event-title:hover { color: var(--sl-green); }
.sl-event-meta { color: var(--sl-muted); font-size: .85em; margin-top: 4px; }
.sl-event-count { font-weight: 800; color: var(--sl-green); white-space: nowrap; }
.sl-event-body { margin-top: 10px; color: var(--sl-text); }
.sl-rsvp { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.sl-avatars { display: flex; align-items: center; gap: 4px; margin-top: 12px; flex-wrap: wrap; }
.sl-avatar-s img { border-width: 1px; }
.sl-maybe { color: var(--sl-muted); font-size: .8em; margin-left: 6px; }

/* ---------- Formulare ---------- */
.sl-form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.sl-form-row input, .sl-form-row select,
.sl-field input, .sl-field select {
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	color: var(--sl-text);
	border-radius: 10px;
	padding: 9px 12px;
	font: inherit; font-size: .9em;
}
.sl-form-row input:focus, .sl-form-row select:focus, .sl-field input:focus { outline: none; border-color: var(--sl-green); }
.sl-form-row input[type=text], .sl-form-row input[type=url] { flex: 1; min-width: 180px; }
.sl-form-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.sl-field { display: flex; flex-direction: column; gap: 5px; margin: 8px 0; }
.sl-field > span { font-weight: 700; font-size: .85em; }
.sl-field small { color: var(--sl-muted); }
.sl-field input[type=color] { padding: 3px; height: 42px; width: 90px; cursor: pointer; }
.sl-check-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sl-check { cursor: pointer; }
.sl-check input { position: absolute; opacity: 0; }
.sl-check span {
	display: inline-block;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 999px;
	padding: 6px 14px; font-size: .85em;
	transition: all .12s ease;
}
.sl-check input:checked + span {
	background: rgba(61, 255, 136, .14);
	border-color: var(--sl-green);
	color: var(--sl-green);
	font-weight: 700;
}

/* ---------- Rangliste ---------- */
.sl-table { width: 100%; border-collapse: collapse; }
.sl-table th { text-align: left; color: var(--sl-muted); font-size: .8em; text-transform: uppercase; letter-spacing: .06em; padding: 8px 10px; }
.sl-table td { padding: 10px; border-top: 1px solid var(--sl-line); vertical-align: middle; }
.sl-table .sl-rank { font-size: 1.1em; width: 44px; }
.sl-table .sl-pts { text-align: right; font-weight: 800; color: var(--sl-green); white-space: nowrap; }
.sl-top td { background: rgba(255, 209, 102, .04); }
.sl-lb-user { display: inline-flex; align-items: center; gap: 8px; color: var(--sl-text); text-decoration: none; font-weight: 700; margin-right: 8px; }
.sl-lb-user img { border-radius: 50%; border: 2px solid var(--sl-accent); }
.sl-lb-user:hover span { color: var(--sl-green); }
.sl-log { list-style: none; margin: 0; padding: 0; }
.sl-log li { padding: 7px 0; border-bottom: 1px solid var(--sl-line); font-size: .9em; }
.sl-log li:last-child { border-bottom: none; }
.sl-log-pts { font-weight: 800; margin-right: 6px; }
.sl-log-pts.is-plus { color: var(--sl-green); }
.sl-log-pts.is-minus { color: var(--sl-pink); }
.sl-log-time { color: var(--sl-muted); font-size: .82em; float: right; }
.sl-minilb { list-style: none; margin: 0; padding: 0; }
.sl-minilb li { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--sl-line); }
.sl-minilb li:last-child { border-bottom: none; }
.sl-minilb a { color: var(--sl-text); text-decoration: none; font-weight: 600; flex: 1; }
.sl-minilb a:hover { color: var(--sl-green); }
.sl-minilb .sl-pts { color: var(--sl-green); font-weight: 800; }

/* ---------- Clips ---------- */
.sl-clip-media { border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.sl-clip-media iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; border: 0; }
.sl-clip-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sl-vote {
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	color: var(--sl-text);
	border-radius: 999px;
	padding: 7px 14px;
	font: inherit; font-weight: 700; cursor: pointer;
	transition: all .12s ease;
}
button.sl-vote:hover { border-color: var(--sl-pink); transform: scale(1.05); }
.sl-vote.is-voted { background: rgba(255, 77, 109, .15); border-color: var(--sl-pink); color: var(--sl-pink); }
.sl-clip-week { border: 1px solid rgba(255, 209, 102, .5); box-shadow: 0 0 30px rgba(255, 209, 102, .12); }
.sl-ribbon {
	display: inline-block;
	background: linear-gradient(135deg, var(--sl-gold), #ff9f43);
	color: #3a2a00; font-weight: 800; font-size: .8em;
	border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
}

/* ---------- WoW-Ecke ---------- */
.sl-wow {
	border: 1px solid rgba(139, 92, 246, .55);
	background: radial-gradient(ellipse at top left, rgba(139, 92, 246, .18), var(--sl-panel) 60%);
}
.sl-wow-glow {
	position: absolute; inset: -40px auto auto -40px;
	width: 160px; height: 160px; border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, .35), transparent 70%);
	pointer-events: none;
}
.sl-wow-crown { font-size: 1.6em; }
.sl-wow-title {
	background: linear-gradient(135deg, #c4b5fd, var(--sl-purple));
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
}
.sl-wow p { color: var(--sl-muted); }

/* ---------- Dashboard ---------- */
.sl-dashboard { display: grid; gap: 18px; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); align-items: start; }
.sl-dash-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
@media (max-width: 860px) {
	.sl-dashboard { grid-template-columns: 1fr; }
}

.sl-checkin-mine { margin: 0; }

/* ---------- Online-Status & Streaks ---------- */
.sl-dot {
	display: inline-block;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: #3a4360;
	margin-right: 4px;
	vertical-align: middle;
}
.sl-dot.is-on {
	background: var(--sl-green);
	box-shadow: 0 0 8px rgba(61, 255, 136, .8);
	animation: sl-pulse 2s infinite;
}
.sl-chip-streak {
	border-color: rgba(255, 77, 109, .5);
	color: var(--sl-pink);
	background: rgba(255, 77, 109, .08);
	font-weight: 700;
}

/* ---------- Shoutbox ---------- */
.sl-shout-form { display: flex; gap: 8px; margin-bottom: 12px; }
.sl-shout-form input { flex: 1; }
.sl-shouts { list-style: none; margin: 0; padding: 0; max-height: 340px; overflow-y: auto; }
.sl-shout {
	display: flex; align-items: flex-start; gap: 8px;
	padding: 8px 0;
	border-bottom: 1px solid var(--sl-line);
	font-size: .9em;
}
.sl-shout:last-child { border-bottom: none; }
.sl-shout-body { flex: 1; min-width: 0; }
.sl-shout-body strong { color: var(--sl-accent); margin-right: 6px; }
.sl-shout-msg { color: var(--sl-text); word-wrap: break-word; }
.sl-shout-time { color: var(--sl-muted); font-size: .8em; white-space: nowrap; }
.sl-shout-del {
	background: none; border: none;
	color: var(--sl-muted);
	cursor: pointer; font-size: .9em;
	padding: 0 4px;
}
.sl-shout-del:hover { color: var(--sl-pink); }

/* ---------- Abstimmung ---------- */
.sl-poll-opts { display: flex; flex-direction: column; gap: 8px; }
.sl-poll-opt {
	position: relative;
	display: flex; justify-content: space-between; align-items: center; gap: 10px;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	padding: 11px 14px;
	font: inherit; font-weight: 600; font-size: .92em;
	color: var(--sl-text);
	cursor: pointer;
	overflow: hidden;
	text-align: left;
	transition: border-color .12s ease;
}
.sl-poll-opt:hover:not(:disabled) { border-color: var(--sl-green); }
.sl-poll-opt.is-mine { border-color: var(--sl-green); }
.sl-poll-opt.is-mine .sl-poll-label { color: var(--sl-green); }
.sl-poll-bar {
	position: absolute; inset: 0 auto 0 0;
	background: linear-gradient(90deg, rgba(61, 255, 136, .16), rgba(139, 92, 246, .14));
	transition: width .3s ease;
	pointer-events: none;
}
.sl-poll-label, .sl-poll-pct { position: relative; z-index: 1; }
.sl-poll-pct { color: var(--sl-muted); font-size: .85em; white-space: nowrap; }

/* ---------- Login / Registrierung ---------- */
.sl-auth-wrap { max-width: 520px; margin: 0 auto; }
.sl-auth h3 { font-size: 1.3em; }
.sl-auth .sl-field input { width: 100%; }
.sl-btn-block { width: 100%; justify-content: center; }
.sl-remember { display: block; margin: 10px 0; color: var(--sl-muted); font-size: .9em; cursor: pointer; }
.sl-auth-links { color: var(--sl-muted); font-size: .85em; text-align: center; margin: 14px 0 0; }
.sl-notice-error {
	background: rgba(255, 77, 109, .1);
	border-color: rgba(255, 77, 109, .4);
	color: var(--sl-pink);
}

/* ---------- Geburtstag ---------- */
.sl-birthday { border-top: 3px solid var(--sl-gold); }
.sl-birthday p { margin: 0; }

/* ---------- Profil-Editor: Bilder & Skills ---------- */
.sl-edit-section {
	margin: 26px 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--sl-line);
	font-size: 1.05em;
}
.sl-media-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.sl-media-box {
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 12px;
	padding: 14px;
	display: flex; flex-direction: column; gap: 10px;
}
.sl-media-box small { color: var(--sl-muted); line-height: 1.5; }
.sl-field-label { font-weight: 700; font-size: .85em; }
.sl-avatar-preview img {
	border-radius: 50%;
	border: 3px solid var(--sl-accent);
	display: block;
}
.sl-banner-preview {
	aspect-ratio: 4 / 1;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--sl-line);
}
.sl-banner-empty {
	display: flex; align-items: center; justify-content: center;
	color: var(--sl-muted); font-size: .85em;
}
.sl-media-box input[type=file] { font-size: .82em; color: var(--sl-muted); }
.sl-skills-grid { display: grid; gap: 12px 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.sl-skill-edit span { display: flex; justify-content: space-between; font-size: .88em; font-weight: 600; margin-bottom: 4px; }
.sl-skill-edit output { color: var(--sl-green); font-weight: 800; }
.sl-skill-edit input[type=range] { width: 100%; accent-color: var(--sl-green); cursor: pointer; }
.sl-skill-bar { margin-bottom: 10px; }
.sl-skill-bar > span { display: flex; justify-content: space-between; font-size: .85em; margin-bottom: 4px; }
.sl-skill-bar b { color: var(--sl-green); }
.sl-skill-track {
	height: 8px;
	background: var(--sl-panel-2);
	border-radius: 4px;
	overflow: hidden;
}
.sl-skill-fill {
	height: 100%;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--sl-green), var(--sl-purple));
	transition: width .6s cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Arcade ---------- */
.sl-arcade-flex { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.sl-arcade-stage { flex: 1 1 480px; min-width: 0; }
.sl-arcade-lb { flex: 1 1 220px; min-width: 220px; }
.sl-arcade-stage canvas {
	width: 100%;
	max-width: 480px;
	height: auto;
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	touch-action: none;
	display: block;
	image-rendering: pixelated;
}
.sl-arcade-bar { display: flex; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.sl-arcade-score { font-weight: 800; color: var(--sl-green); font-size: 1.05em; }
.sl-arcade-msg {
	min-height: 22px;
	margin-top: 8px;
	color: var(--sl-gold);
	font-weight: 600;
	font-size: .9em;
	opacity: 0;
	transition: opacity .3s ease;
}
.sl-arcade-msg.is-show { opacity: 1; }
.sl-table-s td { padding: 6px 8px; font-size: .88em; }
.sl-reflex {
	display: flex; align-items: center; justify-content: center;
	min-height: 220px;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	font-size: 1.15em; font-weight: 700;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	text-align: center;
	padding: 16px;
	transition: background .12s ease;
}

/* ---------- Grow-Imperium ---------- */
#sl-weed { position: relative; }
.sl-weed-top {
	display: flex; align-items: center; gap: 18px;
	position: relative;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.sl-weed-plant {
	font-size: 64px;
	line-height: 1;
	background: radial-gradient(circle, rgba(61, 255, 136, .18), transparent 70%), var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 50%;
	width: 120px; height: 120px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	transition: transform .1s ease, box-shadow .2s ease;
	flex: 0 0 auto;
}
.sl-weed-plant:hover { box-shadow: 0 0 30px rgba(61, 255, 136, .35); }
.sl-weed-plant:active { transform: scale(.94); }
.sl-weed-plant.is-pop { animation: slPop .25s ease; }
@keyframes slPop {
	40% { transform: scale(1.12) rotate(-4deg); }
	100% { transform: scale(1); }
}
.sl-weed-stats { flex: 1; min-width: 200px; }
.sl-weed-g { font-size: 1.9em; font-weight: 800; color: var(--sl-green); font-variant-numeric: tabular-nums; }
.sl-weed-rate { color: var(--sl-muted); font-size: .9em; margin-bottom: 10px; }
.sl-weed-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.sl-weed-fx {
	position: absolute;
	top: 20px;
	color: var(--sl-green);
	font-weight: 800;
	pointer-events: none;
	animation: slFloatUp .9s ease-out forwards;
	z-index: 2;
}
@keyframes slFloatUp {
	to { transform: translateY(-46px); opacity: 0; }
}
.sl-weed-shop { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.sl-weed-item {
	display: flex; align-items: center; gap: 10px;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	padding: 10px 12px;
	font: inherit; color: var(--sl-text);
	cursor: pointer;
	text-align: left;
	transition: border-color .15s ease, transform .15s ease, opacity .15s ease;
}
.sl-weed-item:hover:not(:disabled) { border-color: var(--sl-green); transform: translateY(-1px); }
.sl-weed-item:disabled { opacity: .45; cursor: default; }
.sl-weed-item.is-bought { border-color: var(--sl-green); box-shadow: 0 0 16px rgba(61, 255, 136, .3); }
.sl-weed-ico { font-size: 1.6em; flex: 0 0 auto; }
.sl-weed-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sl-weed-info strong { font-size: .9em; }
.sl-weed-info small { color: var(--sl-muted); font-size: .78em; }
.sl-weed-cost { font-weight: 800; color: var(--sl-gold); font-size: .85em; white-space: nowrap; }

/* ---------- Spiel-Glücksrad ---------- */
.sl-wheel-wrap {
	position: relative;
	width: min(380px, 92vw);
	margin: 18px auto 6px;
}
.sl-wheel-wrap canvas {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50%;
	box-shadow: 0 0 40px rgba(139, 92, 246, .18), 0 0 0 6px var(--sl-panel-2), 0 0 0 7px var(--sl-line);
}
.sl-wheel-pointer {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	font-size: 30px;
	line-height: 1;
	color: var(--sl-gold);
	text-shadow: 0 0 12px rgba(255, 209, 102, .8), 0 2px 4px rgba(0, 0, 0, .6);
	pointer-events: none;
}
.sl-roulette-result {
	min-height: 44px;
	text-align: center;
	font-size: 1.6em;
	font-weight: 800;
	color: var(--sl-green);
	margin: 8px 0 4px;
}
.sl-roulette-result.is-pop { animation: slRouletteWin .5s cubic-bezier(.22, 1.4, .36, 1); }
.sl-roulette .sl-arcade-bar { justify-content: center; }

/* (Alt, wird nicht mehr genutzt – bleibt für Abwärtskompatibilität) */
.sl-roulette-display {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	margin: 16px 0 12px;
	padding: 14px 20px;
	background:
		radial-gradient(circle at 50% 0%, rgba(139, 92, 246, .12), transparent 65%),
		var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	border-radius: 14px;
	font-family: inherit;
	font-size: clamp(1.4em, 4vw, 2.1em);
	font-weight: 800;
	text-align: center;
	letter-spacing: .02em;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.sl-roulette-display.is-rolling {
	color: var(--sl-muted);
	animation: slRouletteShake .14s linear infinite;
}
@keyframes slRouletteShake {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-2px); }
}
.sl-roulette-display.is-final {
	color: var(--sl-green);
	border-color: var(--sl-green);
	box-shadow: 0 0 34px rgba(61, 255, 136, .25);
	animation: slRouletteWin .5s cubic-bezier(.22, 1.4, .36, 1);
}
@keyframes slRouletteWin {
	0% { transform: scale(.85); }
	60% { transform: scale(1.06); }
	100% { transform: scale(1); }
}

/* ---------- Zwei-Klick-Video (Datenschutz) ---------- */
.sl-embed-consent {
	aspect-ratio: 16 / 9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	padding: 20px;
	background:
		radial-gradient(circle at 50% 40%, rgba(61, 255, 136, .08), transparent 60%),
		var(--sl-panel-2);
	border: 1px dashed var(--sl-line);
	border-radius: 10px;
}
.sl-embed-play {
	font-size: 2.2em;
	line-height: 1;
	color: var(--sl-green);
	text-shadow: 0 0 18px rgba(61, 255, 136, .6);
	animation: sl-pulse 2.2s infinite;
}
.sl-embed-consent p { color: var(--sl-muted); font-size: .8em; margin: 0; max-width: 380px; }
.sl-embed-remember { color: var(--sl-muted); font-size: .78em; cursor: pointer; }

/* ---------- Lebendigkeit: Buttons & Karten ---------- */
.sl-btn-primary { position: relative; overflow: hidden; }
.sl-btn-primary::after {
	content: '';
	position: absolute;
	top: 0; left: -70%;
	width: 45%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
	transform: skewX(-20deg);
	animation: slShine 5s ease-in-out infinite;
	pointer-events: none;
}
@keyframes slShine {
	0%, 55% { left: -70%; }
	100% { left: 140%; }
}
.sl-card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.sl-member:hover, .sl-clip:hover, .sl-checkin-card:hover { transform: translateY(-3px); border-color: var(--sl-accent, var(--sl-green)); }
.sl-clip-week { animation: slGoldGlow 3.2s ease-in-out infinite; }
@keyframes slGoldGlow {
	0%, 100% { box-shadow: 0 0 22px rgba(255, 209, 102, .1); }
	50% { box-shadow: 0 0 38px rgba(255, 209, 102, .28); }
}
.sl-top .sl-rank { display: inline-block; animation: slMedal 3s ease-in-out infinite; }
@keyframes slMedal {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.18) rotate(-6deg); }
}
.sl-wow-crown { animation: slFloatS 4s ease-in-out infinite; display: inline-block; }
@keyframes slFloatS {
	50% { transform: translateY(-4px) rotate(4deg); }
}
.sl-weed-plant { animation: slPlantIdle 6s ease-in-out infinite; }
@keyframes slPlantIdle {
	0%, 100% { box-shadow: 0 0 14px rgba(61, 255, 136, .15); }
	50% { box-shadow: 0 0 30px rgba(61, 255, 136, .4); }
}

@media (prefers-reduced-motion: reduce) {
	.sl-btn-primary::after { animation: none; display: none; }
	.sl-embed-play, .sl-clip-week, .sl-top .sl-rank, .sl-wow-crown, .sl-weed-plant, .sl-live, .sl-dot.is-on { animation: none; }
}

/* ---------- Responsive Feinschliff ---------- */
@media (max-width: 640px) {
	.sl-card { padding: 14px 14px; }
	.sl-form-row { flex-direction: column; }
	.sl-form-row input, .sl-form-row select, .sl-form-row button { width: 100%; }
	.sl-rsvp { flex-direction: column; }
	.sl-rsvp .sl-btn { width: 100%; justify-content: center; }
	.sl-weed-plant { width: 96px; height: 96px; font-size: 52px; }
	.sl-leaderboard .sl-table th:nth-child(3), .sl-leaderboard .sl-table td:nth-child(3) { display: none; } /* Streak-Spalte mobil ausblenden */
	.sl-clip-foot { flex-direction: column; align-items: flex-start; }
}

/* ---------- Integrationen ---------- */
.sl-now-playing {
	margin: 10px 0 0;
	font-size: .85em;
	color: var(--sl-green);
}
.sl-chip-link { text-decoration: none; transition: border-color .12s ease; }
.sl-chip-link:hover { border-color: var(--sl-green); color: var(--sl-green); }
.sl-rio { margin-top: 8px; }
.sl-discord-live { border-top: 3px solid #5865F2; }
.sl-discord-list { list-style: none; margin: 0 0 12px; padding: 0; }
.sl-discord-list li {
	display: flex; align-items: center; gap: 8px;
	padding: 5px 0;
	font-size: .9em;
	border-bottom: 1px solid var(--sl-line);
}
.sl-discord-list li:last-child { border-bottom: none; }
.sl-discord-list img { border-radius: 50%; }
.sl-discord-list .sl-voice { margin-left: auto; }
.sl-discord-game { color: var(--sl-muted); font-size: .85em; margin-left: auto; }
.sl-discord-list .sl-voice + .sl-discord-game,
.sl-discord-list li .sl-discord-game { margin-left: 0; }
.sl-discord-list li > span:first-of-type { font-weight: 600; }
