@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #7c0049; /* soft pink */
  color: #111;
  overflow: hidden;
}

/* HEADER */
header h1 {
  text-align: center;
  color: #ec4899;
  margin: 10px 0;
}

/* CONTAINER */
.container {
  padding: 10px 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TOP BAR */
.top-bar {
  text-align: center;
  margin-bottom: 10px;
}

/* INPUT */
input {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #a7f3d0;
  background: white;
  font-size: 15px;
}

/* BUTTON */
button {
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #a3f0d4; /* green */
  color: black;
  font-weight: 600;
  font-size: 15px;
}

button:hover {
  background: #10b981;
}

/* MAIN */
.main {
  display: flex;
  gap: 20px;
  flex: 1;
}

/* LEFT */
.left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* RIGHT */
.right {
  flex: 1;
  max-width: 350px;
  min-width: 350px;
}

/* CARD */
.card {
  background: white;
  border-radius: 16px;
  padding: 15px;
  border: 2px solid #fbcfe8;
  margin-bottom: 14px;   /* 👈 creates gap between all cards */
}

/* STATUS + TIMER ROW */
.status-row {
  display: flex;
  gap: 10px;
}

.status-box {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #fbcfe8;
  border-radius: 12px;
}

.timer-box {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #a7f3d0;
  border-radius: 12px;
}

/* WORD */
#word {
  font-size: 2rem;
  text-align: center;
  color: #10b981;
}

/* TABOO */
#taboo {
  text-align: center;
  color: #ef4444;
}

/* CURRENT CLUE */
#currentClue {
  font-size: 1.5rem;
  text-align: center;
  color: #ec4899;
  font-weight: 600;
}

/* BIG INPUT ROW */
.inputs {
  display: flex;
  gap: 10px;
}

.inputs input {
  flex: 1;
  font-size: 16px;
}

.inputs button {
  width: 120px;
}

/* CHAT */
#chat {
  list-style: none;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

#chat li {
  padding: 6px;
  border-bottom: 1px solid #eee;
}