* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', monospace;
  background: #2c2c3e;
  color: #f0ead6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  text-align: center;
  padding: 48px 36px;
  background: #3a3a52;
  border: 4px solid #5a5a7a;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
  max-width: 420px;
  width: 90%;
}

.title {
  font-size: 28px;
  line-height: 1.4;
  color: #ffd700;
  text-shadow: 3px 3px 0 #b8860b;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 10px;
  color: #a0a0c0;
  margin-bottom: 36px;
}

.btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  padding: 14px 28px;
  border: 3px solid #333;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 4px 4px 0 #1a1a2e;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #1a1a2e;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1a1a2e;
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

.btn-primary {
  background: #4caf50;
  color: white;
  width: 100%;
}

.btn-secondary {
  background: #5a7abf;
  color: white;
  padding: 12px 20px;
  font-size: 10px;
}

.divider {
  font-size: 8px;
  color: #7a7a9a;
  margin: 28px 0 20px;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #5a5a7a;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.join-row {
  display: flex;
  gap: 8px;
}

.input {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 12px;
  border: 3px solid #5a5a7a;
  border-radius: 4px;
  background: #2c2c3e;
  color: #f0ead6;
  flex: 1;
  min-width: 0;
}

.input::placeholder {
  color: #6a6a8a;
}

.input:focus {
  outline: none;
  border-color: #5a7abf;
}
