:root {
  --primary: #ffffff;
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.6);
  --bg-dark: #050505;
  --bg-glass: rgba(10, 10, 10, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-dim: #aaaaaa;
  --radius-lg: 16px;
  --radius-md: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  outline: none;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* keep bg full screen */
  height: 100vh;
}

/* --- Background & Effects --- */
.player-list {
  width: 320px;
  max-width: 36vw;
}
.player-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:8px;
  margin-bottom:8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
}
.player-color { width:14px; height:14px; border-radius:4px; flex:0 0 14px; }
.player-item .player-name { color:var(--primary); font-weight:600; }
.player-item.active-turn { box-shadow: 0 6px 18px rgba(255,255,255,0.04); background: rgba(255,255,255,0.04); }

.lobby-panel { display:flex; gap:16px; align-items:flex-start; }
.lobby-info { flex:1 1 auto; }
.lobby-card { padding:16px; }
.lobby-controls { display:flex; gap:8px; margin-top:10px; align-items:center; }
.color-picker { display:flex; gap:8px; margin-top:8px; }
.color-swatch { width:28px; height:20px; border-radius:6px; cursor:pointer; border:2px solid transparent; }
.color-swatch.selected { box-shadow:0 6px 18px rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.12); }

/* restore full-screen background video */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
  filter: grayscale(0.8) brightness(0.15);
}

/* Top-centered start button and adjacent editbox */
.lobby-top-controls { display:flex; justify-content:center; align-items:center; gap:10px; margin-top:12px; }
.lobby-start { display:inline-flex; align-items:center; justify-content:center; }
.lobby-start .editbox { display:none; margin-left:8px; }

/* Game buttons inside lobby should match left menu look */
.games-wrap .ui-btn { background: rgba(255,255,255,0.03); border-color: var(--border-glass); color: var(--text-dim); }
.games-wrap .ui-btn.ui-btn-primary { background: #fff; color: #000; }
.player-list {
  width: 320px;
  max-width: 36vw;
}
.player-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:8px;
  margin-bottom:8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
}
.player-color { width:14px; height:14px; border-radius:4px; flex:0 0 14px; }
.player-item .player-name { color:var(--primary); font-weight:600; }
.player-item.active-turn { box-shadow: 0 6px 18px rgba(255,255,255,0.04); background: rgba(255,255,255,0.04); }

.lobby-panel { display:flex; gap:16px; align-items:flex-start; }
.lobby-info { flex:1 1 auto; }
.lobby-card { padding:16px; }
.lobby-controls { display:flex; gap:8px; margin-top:10px; }
.color-picker { display:flex; gap:8px; margin-top:8px; }
.color-swatch { width:28px; height:20px; border-radius:6px; cursor:pointer; border:2px solid transparent; }
.color-swatch.selected { box-shadow:0 6px 18px rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.12); }

.memory-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap:10px;
}
.memory-card{
  background:linear-gradient(180deg,#1b1b1b,#141414);
  color:#fff;
  border-radius:8px;
  aspect-ratio: 1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.04);
  padding:8px;
  box-sizing:border-box;
  overflow:hidden;
}

/* Images used inside memory cards */
.memory-card .memory-img{
  width:60%;
  height:auto;
  max-height:60%;
  object-fit:contain;
  display:block;
}

.memory-card .memory-face{ /* face used for emoji or fallback text */
  font-size:28px;
  line-height:1;
}


.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

/* Make .site-plaque look like a mem card (no image) */
.site-plaque.ui-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.site-plaque .ui-card-content { padding: 14px 18px; }

.site-plaque .ui-card-content div { line-height:1.2; }

.site-plaque {
  display: block;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 13px;
  border-radius: 10px;
  width: 100%;
  max-width: 720px;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.site-plaque:hover { transform: translateY(-2px); }

/* --- Layout --- */
nav {
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

#main-app {
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  transition: 1.2s ease;
  padding-top: 140px;
  /* ensure footer doesn't overlap content when fixed */
  padding-bottom: 140px;
}

#main-app.visible {
  opacity: 1;
}

.page-section {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 180px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-section.active {
  display: flex;
  /* animation shorthand was using var(--transition) (which itself contains a duration + timing)
     which produced an invalid/ambiguous value and caused animation glitches. Use explicit timing. */
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Components: Navigation --- */
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.brand-subtitle {
  font-family: 'Rajdhani';
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.6;
}

.nav-menu {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* --- Unified Card System --- */
.ui-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
}

.ui-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.ui-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-glass);
  cursor: pointer;
}

.ui-card-content {
  padding: 24px;
  flex-grow: 1;
}

.ui-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  text-transform: uppercase;
}

.ui-card-text {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Unified Button System --- */
.ui-btn {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ui-btn-primary {
  background: #fff;
  color: #000;
}

.ui-btn-primary:hover {
  background: #ccc;
  transform: scale(1.02);
}

.ui-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: var(--border-glass);
}

.ui-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* --- Story Panel (Large View) --- */
.story-view {
  max-width: 900px;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Slightly different, tighter variant of story-view for lists */
.story-view.list-view {
  padding: 20px 24px;
  gap: 12px;
}

/* compact story card used in history list to match story style */
.story-view.story-card {
  /* Match mem card visuals so history list blends with mem gallery */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.story-view.story-card .story-node-title {
  font-size: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
}

.story-view.story-card .story-node-body {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 6px;
}

.story-view.story-card .story-text {
  flex: 1 1 auto;
}

.story-view.story-card .ui-btn-primary {
  background: #fff;
  color: #000;
  padding: 10px 18px;
}

/* reduce the outer grid max-width for list view so cards align to panel width */
.story-view.list-view { max-width: 900px; }

.story-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.story-node-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}

.story-node-body {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.8;
}

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Notif --- */
#notif-box {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif {
  background: #fff;
  color: #000;
  padding: 14px 28px;
  font-family: 'Rajdhani';
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.5s var(--transition) forwards;
  border-left: 5px solid #000;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- Music Player --- */
#music-player {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 500;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-glass);
}

.mute-btn {
  background: none;
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Misc --- */
#enter-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

footer {
  text-align: center;
  color: var(--text-dim);
  padding: 60px 0 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Make the footer visible and sticky at the bottom of the viewport */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.0));
  backdrop-filter: blur(6px);
  padding: 14px 10px;
}

/* --- Husky Card Specific --- */
.husky-card {
  max-width: 800px;
  width: 100%;
  padding: 30px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}

.husky-card .indo-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.husky-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 800px) {
  .husky-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .choices {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 20px;
  }
}

/* Transition for the story panel (used by JS for content enter/exit) */
#storyPanel {
  width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Server-like history list */
.server-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.server-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  justify-content: space-between;
}

.server-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.server-card img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.server-card .meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.server-card .meta .title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.server-card .meta .subtitle {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* add a subtle chevron to the right to indicate click */
.server-card .chev {
  margin-left: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  flex-shrink: 0;
}

/* Make list-view full-width inside panel */
.story-view.list-view .server-grid { width: 100%; }

@media (max-width: 800px) {
  .story-view.list-view { padding: 16px; }
  .server-card { padding: 12px; border-radius: 12px; }
  .server-card .meta .title { font-size: 16px; }
}

/* Small helper: hide image on very small screens to keep clean look */
@media (max-width: 520px) {
  .server-card img { display: none; }
  .server-card { padding: 12px; }
}

/* --- Mems gallery grid --- */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 1000px) {
  .card-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .card-list { grid-template-columns: 1fr; }
  .ui-card img { height: 180px; }
}

/* Minigry layout */
.minigry-panel { display:flex; gap:20px; width:100%; margin-top:16px; }
.minigry-list { width:220px; display:flex; flex-direction:column; gap:12px; }
.minigry-container { flex:1; }
.minigry-placeholder { color:var(--text-dim); padding:20px; }

.target-dot { box-shadow: 0 6px 14px rgba(0,0,0,0.6); }

/* Obrona Podlasia styles */
.intruder { background: linear-gradient(180deg,#ff6b6b,#e63946); border-radius:6px; box-shadow:0 8px 18px rgba(0,0,0,0.6); border:2px solid rgba(0,0,0,0.2); }

/* Indor Rescue styles */
.indor { background-size: cover; background-position: center; }
.falling-item { transition: top 0.06s linear; }

/* projectiles and intruder visuals */
.projectile { box-shadow: 0 6px 12px rgba(0,0,0,0.4); }
.intruder { display:inline-block; }
.intruder::after { content: ''; display:block; width:100%; height:100%; border-radius:6px; background: linear-gradient(180deg,#ff6b6b,#e63946); }

/* SVG player adjustments */
svg { pointer-events: none; }

/* ensure game-area children appear properly */
#obrona-area > *, #indor-area > * { pointer-events: auto; }

/* Quiz styles */
.choice-btn { padding:10px 12px; text-align:left; border-radius:8px; border:1px solid rgba(255,255,255,0.04); background:rgba(255,255,255,0.02); }
.choice-btn:hover { transform: translateY(-2px); }

/* Memory styles */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.memory-card {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  height: 80px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 28px;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  transition: transform 0.12s ease;
}
.memory-card.flipped { background: rgba(255,255,255,0.08); transform: translateY(-6px); }
.memory-card.matched { background: rgba(155,231,255,0.12); border-color: rgba(155,231,255,0.25); cursor: default; }
.memory-face { display:block; }

@media (max-width: 800px) {
  .memory-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .memory-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Meme modal / lightbox --- */
.meme-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  padding: 20px;
}

.meme-modal-inner {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  text-align: center;
}

.meme-modal-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

.meme-modal-close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.meme-modal-meta { margin-top: 12px; color: var(--text-dim); }
.meme-modal-title { font-weight:700; color:var(--primary); margin-bottom:6px; }
.meme-modal-desc { font-size:14px; }

/* --- Minigramy styles --- */
.minigram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}

.minigram-card .ui-card-content { padding: 18px; }
.minigram-card .ui-card-title { font-size:18px; margin-bottom:8px; }
.minigram-card .ui-card-text { font-size:14px; color:var(--text-dim); line-height:1.5; }

@media (max-width: 1000px) {
  .minigram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .minigram-grid { grid-template-columns: 1fr; }
}

/* Lobby panel styles */
.lobby-panel { display:flex; gap:16px; align-items:flex-start; }
.lobby-info { width: 360px; }
.lobby-card { padding:14px; border-radius:12px; background: rgba(255,255,255,0.02); border:1px solid var(--border-glass); }
.lobby-key { font-family:'Rajdhani'; font-weight:700; font-size:20px; letter-spacing:1px; }
.player-list { flex: 1; margin-left:0; }
.player-item { display:flex; gap:8px; align-items:center; padding:8px; border-radius:8px; background: rgba(255,255,255,0.01); border:1px solid rgba(255,255,255,0.02); margin-bottom:8px; }
.player-color { width:18px; height:18px; border-radius:4px; border:1px solid rgba(0,0,0,0.2); }
.lobby-controls { display:flex; gap:8px; margin-top:10px; }
.custom-input { width:100%; padding:10px 12px; border-radius:8px; background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04); color:var(--text-main); }
.color-picker { display:flex; gap:8px; margin-top:8px; }
.color-swatch { width:28px; height:28px; border-radius:6px; cursor:pointer; border:2px solid transparent; }
.color-swatch.selected { box-shadow: 0 4px 14px rgba(0,0,0,0.6); transform: translateY(-2px); border-color: rgba(255,255,255,0.12); }

@media (max-width: 900px) {
  .lobby-panel { flex-direction:column; }
  .player-list { width:100%; }

/* Remove large decorative background for the minigry area per user request
   Ensure the minigry panel/container does not display any large background image. */
.minigry-panel, .minigry-container, #minigry-view {
  background-image: none !important;
  background: transparent !important;
}

.minigry-list.ui-card, .minigry-container.ui-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
}
}

/* Make minigry area cover underlying large background/video visually */
#minigry-view { position: relative; z-index: 4; }
.minigry-panel { background: rgba(0,0,0,0.62); padding: 18px; border-radius: 12px; backdrop-filter: blur(6px); }

/* Tweak lobby layout to match screenshot: left info, right players */
.lobby-panel { display:flex; gap:18px; align-items:flex-start; }
.lobby-info { width:360px; }
.player-list { display:block; }
.player-list .ui-card-title { font-size:16px; }
.player-item { padding:10px; }