*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
}

.landing {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

.landing__header {
  margin-bottom: 3rem;
}

.landing__title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.landing__description {
  font-size: 1.125rem;
  color: #a0aec0;
  line-height: 1.6;
}

.landing__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 480px) {
  .landing__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 180px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn--vtuber {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: #ffffff;
}

.btn--moderator {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #ffffff;
}

.info-panel {
  background: rgba(99, 179, 237, 0.1);
  border: 1px solid rgba(99, 179, 237, 0.25);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  line-height: 1.6;
  color: #bee3f8;
}

.info-panel p + p {
  margin-top: 0.75rem;
}

.landing__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.landing__communities {
  margin-bottom: 2.5rem;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.community-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.community-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(99, 179, 237, 0.4);
}

.community-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.community-card__stat {
  font-size: 0.875rem;
  color: #a0aec0;
}

.community-card__stat strong {
  color: #63b3ed;
  font-size: 1.125rem;
}
