<?php
require __DIR__ . '/inc/config.php';
$meta_title = 'Les 8 catégories — ' . SITE_NAME;
$meta_description = "Découvre les 8 catégories de Mahay : Tantara (histoire), Biby & Zavamaniry (faune & flore), Sakafo Gasy (cuisine), Géographie, Hira & Mozika (musique), Sport, Science & Tech et Bonus École.";
$canonical  = SITE_URL . '/categories';
include __DIR__ . '/inc/head.php';
?>
<section class="detail-hero">
  <div class="container">
    <div class="breadcrumb"><a href="<?= url() ?>">Accueil</a> › Catégories</div>
    <div class="section-head reveal" style="margin-bottom:0;text-align:left;max-width:720px">
      <span class="pill">Le contenu du jeu</span>
      <h2>8 catégories, <?= e(NB_QUESTIONS) ?> questions</h2>
      <p style="color:var(--muted)">Chaque catégorie mêle culture malgache et ouverture sur le monde, avec 4 niveaux de difficulté (Mora → Expert).</p>
    </div>
  </div>
</section>

<section class="section">
  <div class="container">
    <div class="games-grid">
      <?php foreach ($CATEGORIES as $slug => $j){ ?>
        <div class="game-card reveal" id="<?= e($slug) ?>">
          <div class="cover" style="background:linear-gradient(135deg,<?= $j['accent'] ?>,rgba(255,255,255,.12))"><?= $j['icon'] ?></div>
          <div class="body">
            <span class="chip"><?= e($j['sub']) ?></span>
            <h3><?= e($j['name']) ?></h3>
            <p><?= e($j['desc']) ?></p>
          </div>
        </div>
      <?php } ?>
    </div>
    <div style="text-align:center;margin-top:40px">
      <a class="btn btn-primary" href="<?= e(DEMO_URL) ?>" rel="noopener" target="_blank">🎮 Jouer maintenant</a>
    </div>
  </div>
</section>
<?php include __DIR__ . '/inc/footer.php'; ?>
