/* General page styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
  color: #444;
}

/* Game links */
.game-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.game-links a {
  background: #4a90e2;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.game-links a:hover {
  background: #357bd8;
}

/* Chat box styles */
.chat-messages {
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.chat-messages div {
  margin-bottom: 10px;
  padding: 5px;
  border-bottom: 1px solid #eee;
  word-wrap: break-word;
}

input[type="text"] {
  padding: 10px;
  margin: 5px;
  width: calc(100% - 140px);
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 16px;
  background: #28c76f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

button:hover {
  background: #22b05d;
}

/* Link to chat from index */
a[href*="chat"] {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #28c76f;
  text-decoration: none;
}

a[href*="chat"]:hover {
  text-decoration: underline;
}
