/* src/client/styles.css */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #999;
  background-color: black;
  text-align: center;
  padding-top: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
#app {
  padding: 1rem;
}
h1 {
  color: white;
}
b {
  color: white;
  font-weight: bold;
}
a {
  color: #ccc;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: #555;
}
.globe-container {
  position: relative;
  display: inline-block;
}
.curved-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.players-panel {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  min-width: 180px;
  backdrop-filter: blur(10px);
  z-index: 100;
}
.players-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.players-count {
  font-size: 28px;
  font-weight: 700;
  color: #22d168;
}
.players-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.players-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}
.players-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #ccc;
}
.player-dot {
  width: 8px;
  height: 8px;
  background: #22d168;
  border-radius: 50%;
  flex-shrink: 0;
}
/*# sourceMappingURL=index.css.map */
