
body {
  background: #0b132b;
  color: #ffffff;
  font-family: Inter, system-ui, Arial;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
}

.board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.cell {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: #ffffff;
}

.cell.marked {
  background: #22c55e;
  color: #051b11;
}

.chat-box {
  height: 240px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  color: #ffffff;
}

/* Nowe style dla inputów, selectów i textarea */
input, textarea, select {
  background-color: #1a1a2e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.bingo-ball {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: #f59e0b;
  color: #111;
}

.badge-pill {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
