/* リセットと基本フォント */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background: #111827; /* ダークグレー */
  color: #e5e7eb; /* 明るいグレー */
}

/* 共通レイアウト */
section {
  padding: 4rem 2rem;
}

h1, h2, h3 {
  font-weight: 600;
  color: #f9fafb; /* 白に近い文字色 */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  color: #3b82f6; /* アクセントの青 */
}
.hero-buttons {
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center;
  gap: 2rem; /* ボタン間の距離 */
  margin-top: 2rem;
  transform: translateX(-5px); /* 左に10pxずらす */
}

.hero-btn {
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.discord-btn {
  background-color: #7289da; /* Discordブルー */
  color: white;
}

.discord-btn:hover {
  background-color: #5b6eae;
}

.wiki-btn {
  background-color: #10b981; /* 緑系 */
  color: white;
}

.wiki-btn:hover {
  background-color: #0e946f;
}

.help-btn {
  background-color: #f68b1e;
  color: white;
}

.help-btn:hover {
  background-color: #f68b1e;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 80%;
    text-align: center;
  }
}