<main class="grid">
    <!-- 1) Gana CSBTC -->
    <div class="panel-box">
        <a href="/paqueteaplicaciones/juegos/index.php" class="panel-content">
            <h2>Gana CSBTC</h2>
            <p>Puzzles, quizzes, stake y más.</p>
            <?php if ($stats): ?>
                <div class="stats-grid">
                    <small>🏆 <?= htmlspecialchars($stats['pts'] ?? 0) ?> pts</small>
                    <small>🔒 <?= htmlspecialchars($stats['sCSBTC_stake'] ?? 0) ?> staked</small>
                    <small>🧩 <?= htmlspecialchars($stats['puzzles_resueltos'] ?? 0) ?> puzzles</small>
                    <small>❓ <?= htmlspecialchars($stats['quiz_respondidas'] ?? 0) ?> quiz</small>
                    <?php if (isset($stats['dias_restantes']) && $stats['dias_restantes'] > 0): ?>
                        <small>⏳ <?= $stats['dias_restantes'] ?> días</small>
                    <?php endif; ?>
                </div>
            <?php endif; ?>
        </a>
        <img src="assets/images/gana_csbtc.png" alt="Gana CSBTC" class="panel-img">
    </div>

    <!-- 2) Gran Prix -->
    <div class="panel-box">
        <a href="gp/gp_index.php" class="panel-content">
            <h2>Gran Prix</h2>
            <p>Torneos 1+0, 2+1, 3+2… Standard y 960.</p>
            <?php if ($stats): ?>
                <small>🏁 Competitivo · Premios en CSBTC</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/grandprix.png" alt="Gran Prix" class="panel-img">
    </div>

    <!-- 3) Trade CSBTC -->
    <div class="panel-box">
        <a href="trade/trade.php" class="panel-content">
            <h2>Trade CSBTC</h2>
            <p>Swap, liquidez y gráficos en tiempo real.</p>
            <?php if ($stats): ?>
                <small>💱 Exchange CSBTC/SOL</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/trade_csbtc.png" alt="Trade CSBTC" class="panel-img">
    </div>

    <!-- 4) Panel de Progreso -->
    <div class="panel-box">
        <a href="progreso.php" class="panel-content">
            <h2>Panel de Progreso</h2>
            <p>Tu avance en preguntas, puzzles y bonus.</p>
            <?php if ($stats): ?>
                <small>📊 Métricas detalladas</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/progreso.png" alt="Progreso" class="panel-img">
    </div>

    <!-- 5) Perfil del Usuario -->
    <div class="panel-box">
        <a href="perfil/perfil.php" class="panel-content">
            <h2>Perfil</h2>
            <p>Alias, avatar y preferencias.</p>
            <?php if ($stats): ?>
                <small>👤 Personaliza tu cuenta</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/perfil.png" alt="Perfil" class="panel-img">
    </div>

    <!-- 6) Historial -->
    <div class="panel-box">
        <a href="historial/historial.php" class="panel-content">
            <h2>Historial</h2>
            <p>Tu actividad reciente en la plataforma.</p>
            <?php if ($stats): ?>
                <small>📝 Ver tu actividad</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/historial.png" alt="Historial" class="panel-img">
    </div>

    <!-- 7) Recompensas -->
    <div class="panel-box">
        <a href="recompensas.php" class="panel-content">
            <h2>Recompensas</h2>
            <p>Logros desbloqueados y premios obtenidos.</p>
            <?php if ($stats): ?>
                <small>🎁 Reclama tus premios</small>
            <?php endif; ?>
        </a>
        <img src="assets/images/recompensas.png" alt="Recompensas" class="panel-img">
    </div>

    <!-- 8) Ranking -->
    <div class="panel-box">
        <a href="ranking_tabla.php" class="panel-content">
            <h2>Ranking</h2>
            <p>Top 20 jugadores por puntos totales.</p>
            <?php if ($stats && isset($stats['pts'])): ?>
                <small>🏅 Tus puntos: <?= htmlspecialchars($stats['pts']) ?></small>
            <?php endif; ?>
        </a>
        <img src="assets/images/ranking.png" alt="Ranking" class="panel-img">
    </div>
</main>