:root {
  --bg: #0f1115;
  --bg-elev: #151923;
  --text: #e7eaf3;
  --muted: #9aa3b2;
  --primary: #6dd3fb; /* genel vurgu */
  --primary-700: #39bdf5;
  --success: #22c55e;
  --success-700: #16a34a;
  --warning: #f59e0b;
  --warning-700: #d97706;
  --danger: #ef4444;
  --danger-700: #dc2626;
  --card: #121521;
  --border: #232836;
  --glow: rgba(109, 211, 251, 0.35);
  --rainbow: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399, #fbbf24, #fb7185);
}

/* iOS/Android safe areas */
body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); padding-top: calc(env(safe-area-inset-top) + 0px); padding-bottom: env(safe-area-inset-bottom); }

/* Prefer reduced motion: tone down animations */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
/* Prevent accidental horizontal scroll on small screens */
html, body { overflow-x: hidden; }

/* Transitions */
.fade-in { animation: fade-in .28s ease-out both; }
.slide-up { animation: slide-up .32s ease-out both; }
.pulse { animation: pulse 1s ease-in-out infinite; }
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }
@keyframes slide-up { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: translateY(0) } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 16px; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15,17,21,0.8); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; background: var(--bg-elev); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand .logo { font-size: 20px; }
.brand-text { letter-spacing: .3px; }
.nav { display: flex; align-items: center; gap: 14px; }
.nav a { color: var(--text); text-decoration: none; opacity: .9; }
.nav a:hover { color: var(--primary); }
.nav button { background: transparent; border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 10px 12px; cursor: pointer; }

.hero { padding: 40px 0 24px; text-align: center; }
.hero h1 { margin: 0 0 8px; font-size: 28px; background: var(--rainbow); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.hero p { margin: 0 0 16px; color: var(--muted); }
.hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.btn { background: var(--bg-elev); border: 1px solid var(--border); color: var(--text); padding: 12px 16px; border-radius: 14px; cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease; box-shadow: 0 2px 0 rgba(0,0,0,0.2); min-height: 44px; min-width: 44px; }
.btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: 0 8px 24px var(--glow); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 0 rgba(0,0,0,0.25); }
.btn.primary { background: var(--primary); color: #081018; border-color: var(--primary-700); }
.btn.primary:hover { background: var(--primary-700); }
.btn:disabled, .btn[disabled] { opacity: .6; cursor: not-allowed; box-shadow: none; transform: none; }
.btn.success { background: var(--success); color: #05150b; border-color: var(--success-700); }
.btn.success:hover { background: var(--success-700); }
.btn.warning { background: var(--warning); color: #140c01; border-color: var(--warning-700); }
.btn.warning:hover { background: var(--warning-700); }
.btn.danger { background: var(--danger); color: #170303; border-color: var(--danger-700); }
.btn.danger:hover { background: var(--danger-700); }
.btn.lg { padding: 14px 18px; font-weight: 700; }
.icon-btn { background: var(--bg-elev); border: 1px solid var(--border); color: var(--text); border-radius: 999px; padding: 10px 12px; cursor: pointer; min-height: 44px; min-width: 44px; }
.icon-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--glow); }

/* Mobile header compaction */
@media (max-width: 480px) {
  .header-inner { height: 56px; padding-left: 4px; padding-right: 4px; }
  .brand { gap: 8px; }
  .brand .logo { font-size: 18px; }
  .brand-text { font-size: 14px; white-space: nowrap; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
  .nav { gap: 8px; }
  .nav .btn { padding: 8px 10px; border-radius: 12px; min-height: 40px; min-width: 40px; }
  .icon-btn { padding: 8px 10px; min-height: 40px; min-width: 40px; }
}

/* Light mode button contrasts */
.light .btn { box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.light .btn:hover { box-shadow: 0 6px 18px rgba(14,165,233,0.18); }
.light .btn.primary { color: #062333; }

.cards { margin: 18px 0 32px; }
.cards h2 { margin: 0 0 12px; font-size: 20px; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tab { background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 8px 12px; border-radius: 999px; cursor: pointer; }
.tab.active { border-color: var(--primary); color: var(--primary); }

.question-panel { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 16px; position: relative; overflow: hidden; }
.question-panel::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(120deg, transparent, transparent, rgba(109,211,251,.15)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.question-text { min-height: 56px; font-size: 16px; margin-bottom: 12px; }
.question-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.favorites { margin-top: 12px; }
.favorites summary { cursor: pointer; color: var(--muted); }
.favorites ul { list-style: none; padding: 8px 0 0; margin: 0; display: grid; gap: 8px; }
.favorites li { border: 1px dashed var(--border); border-radius: 8px; padding: 8px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.favorites button { padding: 6px 10px; }

.game { margin-top: 16px; }
.game-card { background: var(--card); border: 2px solid var(--team-border, var(--border)); border-radius: 18px; padding: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.02); position: relative; overflow: hidden; }
.game-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(800px 200px at var(--mx,50%) var(--my,0%), var(--team-glow, rgba(109,211,251,0.08)), transparent 60%); pointer-events: none; }
.game-card:fullscreen { border-radius: 0; width: 100vw; height: 100vh; padding: 12px; }
.game-card::-webkit-full-screen { border-radius: 0; width: 100vw; height: 100vh; padding: 12px; }
.tabu-main { display: grid; gap: 6px; margin-bottom: 10px; }
.tabu-main .label { color: var(--muted); font-weight: 600; letter-spacing: .3px; }
#tabuWord, .main-word { font-size: 32px; font-weight: 900; letter-spacing: .6px; text-shadow: 0 3px 18px rgba(109,211,251,.22); }
.banned-list { display: grid; gap: 6px; margin-top: 4px; }
.banned-list .item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px dashed var(--border); border-radius: 10px; background: var(--bg-elev); font-weight: 700; }
.banned-list .item::before { content: '⛔'; }
.light .banned-list .item { background: var(--card); }
.badge.tabu-title { background: #0b1220; border-color: #1d2540; color: #9ecbff; box-shadow: 0 0 0 1px rgba(30, 37, 64, .9), 0 0 24px rgba(158, 203, 255, .15); }

/* Gamey card header spacing */
#gameTabu .game-card h3 { font-size: 20px; letter-spacing: .3px; }

/* Pop-in animation when a new Tabu card is shown */
.pop-in { animation: pop-in .18s ease-out; }
@keyframes pop-in { from { transform: scale(.96); opacity: .2; } to { transform: scale(1); opacity: 1; } }

@media (max-width: 480px) {
  #tabuWord, .main-word { font-size: 26px; }
  .banned-list .item { padding: 6px 8px; }
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips .chip { background: var(--bg-elev); border: 1px solid var(--border); color: var(--text); border-radius: 999px; padding: 6px 10px; transition: transform .12s ease; }
.chips .chip:hover { transform: translateY(-1px) scale(1.03); }
.muted { color: var(--muted); }
.game-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pad { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; }
@media (min-width: 480px) { .pad { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { #gameTabu .pad { position: sticky; bottom: 8px; background: var(--card); padding: 8px; border-radius: 12px; z-index: 2; }
  body.light #gameTabu .pad { background: var(--card); }
}
.pad .btn { font-size: 18px; }
.pad .icon-btn { justify-self: center; }
.hide-when-playing { display: none; }

/* Emoji & Kelime games */
.emoji-display { font-size: 36px; text-align: center; padding: 16px; border: 1px dashed var(--border); border-radius: 12px; background: var(--bg-elev); margin: 10px 0; }
.wc-display { display: grid; gap: 10px; align-items: center; }
.wc-letter { font-size: 40px; font-weight: 800; text-align: center; padding: 12px; border: 1px dashed var(--border); border-radius: 12px; background: var(--bg-elev); }
.wc-timer { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.hidden { display: none !important; }

.td-controls { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.td-result { min-height: 48px; }
.td-result { font-size: 18px; font-weight: 600; line-height: 1.5; }
.light .td-result { color: var(--text); }

/* Truth or Dare Spinner */
.td-spinner { margin-bottom: 12px; display: grid; gap: 10px; }
.td-player-form { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.spinner-wrap { position: relative; width: 100%; display: grid; place-items: center; }
.spinner-wrap canvas { max-width: 320px; width: 100%; height: auto; border-radius: 50%; box-shadow: 0 16px 50px rgba(0,0,0,.35); background: radial-gradient(200px 200px at 50% 30%, rgba(255,255,255,.05), transparent 60%); }
.spinner-pointer { position: absolute; top: 8px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 16px solid var(--primary); filter: drop-shadow(0 4px 10px var(--glow)); }
.spinner-actions { display: flex; align-items: center; gap: 8px; justify-content: center; }

.site-footer { border-top: 1px solid var(--border); margin-top: 32px; padding: 18px 0; text-align: center; color: var(--muted); }

@media (min-width: 800px) {
  .hero h1 { font-size: 34px; }
}

/* Light theme */
.light {
  --bg: #f8fafc; /* slate-50 */
  --bg-elev: #ffffff;
  --text: #000000; /* slate-900 */
  --muted: #64748b; /* slate-500 */
  --primary: #0ea5e9; /* sky-500 */
  --primary-700: #0284c7; /* sky-600 */
  --card: #ffffff;
  --border: #e2e8f0; /* slate-200 */
  --glow: rgba(255, 255, 255, 0.2);
}

.hidden { display: none !important; }

.input { background: var(--bg-elev); border: 1px solid var(--border); color: var(--text); padding: 12px 12px; border-radius: 10px; width: 100%; min-height: 44px; }
.team-manager { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.team-form { display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 8px; margin-bottom: 10px; }
@media (max-width: 480px) { .team-form { grid-template-columns: 1fr; } }
.color-picker { display: flex; align-items: center; gap: 8px; }
.color-input { width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-elev); }
.color-label { color: var(--muted); font-size: 12px; }
.team-controls { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.team-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.team-list li { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; border: 1px dashed var(--border); border-radius: 10px; padding: 8px; }
.score { font-weight: 700; }
.active-team { outline: 2px solid var(--primary); border-radius: 8px; }

.game-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-bottom: 12px; }
.game-tile { padding: 14px; border-radius: 16px; border: 1px solid var(--border); background: var(--bg-elev); color: var(--text); cursor: pointer; transition: transform .14s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease; box-shadow: 0 2px 0 rgba(0,0,0,0.2); position: relative; overflow: hidden; }
.game-tile:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 30px var(--glow); }
.light .game-tile:hover { box-shadow: 0 10px 24px rgba(14,165,233,0.16); }
.game-tile:active { transform: translateY(0); }

/* Simple topbar for subviews */
.topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.spacer { flex: 1; }
.top-score { font-weight: 700; }

.badge { border: 1px solid var(--border); background: var(--bg-elev); padding: 6px 10px; border-radius: 999px; font-weight: 600; }
.in-game-row .icon-btn { min-width: 36px; min-height: 36px; padding: 6px 8px; }
.badge.timer { display: none; }
.badge.turn { background: #101a12; border-color: #1e3a22; color: #8de3a5; }
.badge.passes { background: #231a0c; border-color: #3a2a12; color: #ffd28a; }
.light .badge.timer { background: #eaf6ff; border-color: #bfdbfe; color: #075985; }
.light .badge.turn { background: #e8f7ee; border-color: #bfe8cd; color: #14532d; }
.light .badge.passes { background: #fff4e5; border-color: #fed7aa; color: #8a4b0a; }
.theme-chat h2 { color: #a5b4fc; }
.theme-games h2 { color: #fca5a5; }
.light .theme-games h2 { color: #e11d48; }
.theme-chat .select-tile { border-color: #353a57; }
.theme-games .game-tile { border-color: #3a2e36; }

.controls { display: flex; align-items: center; gap: 8px; }
.input.small { padding: 6px 8px; border-radius: 8px; width: auto; }

/* Tabu mobile layout refinements */
@media (max-width: 480px) {
  #gameTabu .game-card { padding: 12px; }
  #gameTabu .controls { flex-wrap: wrap; }
  #gameTabu .controls > * { flex: 1 1 140px; }
  #gameTabu .in-game-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  #gameTabu .pad .btn { font-size: 16px; padding: 12px 14px; }
  #gameTabu .chips .chip { padding: 4px 8px; }
  #gameTabu .badge { padding: 6px 8px; }
}

.countdown { display: flex; justify-content: center; margin: 8px 0 12px; }
.ring { width: 80px; height: 80px; }
@media (min-width: 480px) { .ring { width: 100px; height: 100px; } }
.ring-bg { fill: none; stroke: #273043; stroke-width: 3; }
.ring-progress { fill: none; stroke: var(--primary); stroke-width: 3; stroke-linecap: round; transition: stroke-dasharray .2s linear; }
.ring-text { fill: var(--text); font-size: 10px; text-anchor: middle; }
.light .ring-bg { stroke: #dbe3f1; }

/* Sparkle particles */
.sparkle {
  position: fixed;
  left: 0; top: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #fff, #fff0 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: sparkle-pop .6s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.6));
}
@keyframes sparkle-pop {
  0% { transform: translate(var(--sx, -50%), var(--sy, -50%)) scale(.4); opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(var(--ex, -50%), var(--ey, -50%)) scale(0); opacity: 0; }
}

/* Confetti pieces */
.confetti {
  position: fixed; left: 0; top: 0; width: 8px; height: 12px;
  background: var(--c, #fff);
  transform: translate(-50%, -50%) rotate(0deg);
  will-change: transform, opacity;
  pointer-events: none;
  animation: confetti-fall var(--t, 900ms) cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes confetti-fall {
  0% { opacity: 1; }
  100% { transform: translate(var(--cx, -50%), var(--cy, -50%)) rotate(var(--r, 45deg)); opacity: 0; }
}

.view-enter { animation: fade-in .25s ease-out, slide-up .28s ease-out; }

.scoreboard-large { margin-top: 12px; border: 1px solid var(--border); border-radius: 12px; padding: 10px; background: var(--bg-elev); }
.scoreboard-large .row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 6px 8px; border-bottom: 1px dashed var(--border); }
.scoreboard-large .row:last-child { border-bottom: 0; }
.scoreboard-large .team { font-weight: 600; }
.scoreboard-large .pts { font-size: 18px; font-weight: 800; }

/* Chat category selection */
.select-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.select-tile { padding: 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-elev); color: var(--text); cursor: pointer; text-align: left; }
.select-tile:hover { border-color: var(--primary); color: var(--primary); }

.chat-view h3 { margin: 8px 0 10px; }


/* Quiz Night */
.quiz-rooms { display: grid; gap: 12px; margin-bottom: 12px; }
.quiz-rooms > div { background: var(--bg-elev); border: 1px dashed var(--border); border-radius: 12px; padding: 10px; }
.quiz-room-form, .quiz-join-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.quiz-join-form { grid-template-columns: 1fr 1fr auto; }
@media (max-width: 480px) { .quiz-join-form { grid-template-columns: 1fr; } }
.quiz-room-info { margin-top: 8px; }

/* Quiz role chooser */
.quiz-role { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-bottom: 12px; text-align: center; }
.quiz-role-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.quiz-builder { margin-top: 10px; }
.qb-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 8px 0; }
@media (max-width: 480px) { .qb-row { grid-template-columns: 1fr; } }
.qb-choices { display: grid; gap: 8px; }
.qb-choice { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
@media (max-width: 480px) { .qb-choice { grid-template-columns: 1fr; } }
.qb-list ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.qb-list li { border: 1px solid var(--border); border-radius: 10px; padding: 8px; }

.quiz-live { display: grid; gap: 10px; }
.quiz-status { display: flex; gap: 8px; align-items: center; }
.quiz-question { font-size: 18px; font-weight: 700; padding: 10px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; }
.quiz-choices { display: grid; gap: 8px; }
@media (max-width: 480px) { .quiz-choices { grid-template-columns: 1fr; } }
.quiz-choice-btn { text-align: left; }
.quiz-choice-correct { outline: 2px solid var(--success); }
.quiz-choice-wrong { outline: 2px solid var(--danger); }
.quiz-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.quiz-scoreboard ul { list-style: none; padding: 8px 0 0; margin: 0; display: grid; gap: 6px; }
.quiz-scoreboard li { display: grid; grid-template-columns: 1fr auto; gap: 8px; border: 1px dashed var(--border); border-radius: 10px; padding: 6px 8px; }


/* === Arcade/Game look enhancements === */
/* Neon grid background for games section */
.theme-games { position: relative; isolation: isolate; }
.theme-games::before {
  content: "";
  position: absolute; inset: -1px; z-index: 0;
  background:
    radial-gradient(70% 40% at 50% -10%, rgba(109,211,251,0.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(96,165,250,0.08) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(90deg, rgba(96,165,250,0.08) 0 2px, transparent 2px 44px);
  mix-blend-mode: screen;
  opacity: .55;
  animation: grid-pan 18s linear infinite;
  pointer-events: none;
}
.light .theme-games::before {
  background:
    radial-gradient(70% 40% at 50% -10%, rgba(14,165,233,0.12), transparent 60%),
    repeating-linear-gradient(0deg, rgba(14,165,233,0.10) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(90deg, rgba(14,165,233,0.10) 0 2px, transparent 2px 44px);
  mix-blend-mode: multiply;
  opacity: .45;
  pointer-events: none;
}
@keyframes grid-pan {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 88px, 88px 0; }
}

/* Tilt and shine for tiles and cards */
.game-card, .game-tile {
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .12s ease, border-color .2s ease, box-shadow .25s ease;
  z-index: 1; /* over grid */
}
.game-card:hover { border-color: var(--team-border, var(--primary)); box-shadow: 0 14px 40px var(--glow), inset 0 0 0 1px rgba(255,255,255,0.03); }
.light .game-card:hover { box-shadow: 0 12px 36px rgba(14,165,233,0.18), inset 0 0 0 1px rgba(0,0,0,0.02); }

.game-tile::after {
  content: "";
  position: absolute; inset: -1px; pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.08) 55%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.game-tile:hover::after { transform: translateX(120%); }

/* Glowing badges */
.badge { box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.badge.timer { box-shadow: 0 0 0 1px rgba(30, 37, 64, .9), 0 0 24px rgba(158, 203, 255, .15); text-shadow: 0 0 8px rgba(158,203,255,.35); }
.badge.turn { box-shadow: 0 0 0 1px rgba(30, 58, 34, .9), 0 0 24px rgba(141, 227, 165, .12); text-shadow: 0 0 8px rgba(141,227,165,.35); }
.badge.passes { box-shadow: 0 0 0 1px rgba(58, 42, 18, .9), 0 0 24px rgba(255,210,138,.12); text-shadow: 0 0 8px rgba(255,210,138,.35); }
