<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>One Word Japan</title>
  <meta name="description" content="One Word Japan - Japanese word explainer videos on YouTube">
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #0a0e14;
      color: #e6edf5;
      line-height: 1.7;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }
    .container { max-width: 640px; width: 100%; text-align: center; }
    h1 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .subtitle { color: #9aa7b5; font-size: 1.1rem; margin-bottom: 32px; }
    .card {
      background: #141a22;
      border: 1px solid #232b36;
      border-radius: 12px;
      padding: 28px;
      text-align: left;
    }
    .card h2 { font-size: 1.2rem; margin-bottom: 12px; color: #ffffff; }
    .card p { color: #b8c2cf; font-size: 0.95rem; }
    .card a { color: #6ea8fe; text-decoration: none; }
    .card a:hover { text-decoration: underline; }
    .links { margin-top: 24px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .links a {
      color: #6ea8fe;
      text-decoration: none;
      font-size: 0.95rem;
      padding: 8px 16px;
      border: 1px solid #2a3542;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .links a:hover { background: #1a2230; }
    footer { margin-top: 40px; color: #5c6a7a; font-size: 0.85rem; }
  </style>
</head>
<body>
  <div class="container">
    <img src="/logo.svg" alt="One Word Japan logo" width="96" height="96" style="margin-bottom: 20px;">
    <h1>One Word Japan</h1>
    <p class="subtitle">Discover the beauty of Japanese words</p>
    <div class="card">
      <h2>About</h2>
      <p>
        One Word Japan is a YouTube channel that explores the beauty and depth of
        Japanese words. Each short video explains a single Japanese word — its
        meaning, nuance, and the culture behind it — in a calm and visual way.
      </p>
    </div>
    <div class="links">
      <a href="https://www.youtube.com/@onewordjapan" target="_blank" rel="noopener">YouTube Channel</a>
      <a href="/privacy.html">Privacy Policy</a>
      <a href="/terms.html">Terms of Service</a>
    </div>
    <footer>&copy; 2026 One Word Japan</footer>
  </div>
</body>
</html>
