<div class="max-w-4xl mx-auto px-4 py-20">


    <h2 class="text-2xl font-black text-gray-900 dark:text-white mb-8 uppercase tracking-widest text-center"><%= t('bookDetail.readerTitle') %>
    </h2>
    <div class="aspect-[16/22] w-full rounded-2xl overflow-hidden shadow-2xl bg-white">
        <iframe src="<%= book.file_path %>" class="w-full h-full border-none">
            <%= t('bookDetail.noPdfSupport') %> <a href="<%= book.file_path %>"><%= t('bookDetail.downloadPdf') %></a>
        </iframe>

    </div>

</div>
<!-- Download Link -->
<div class="flex justify-center mb-20">
    <a href="<%= book.file_path %>" download
        class="inline-flex items-center bg-gray-900 dark:bg-white text-white dark:text-gray-900 px-10 py-5 rounded-full font-bold hover:scale-105 transition-transform shadow-2xl">
        <i class="fas fa-download mr-3 text-xl"></i> <%= t('bookDetail.downloadPdf') %>
    </a>
</div>

<div
    class="inline-block px-6 py-3 bg-gray-100 dark:bg-black rounded-full text-sm font-black uppercase tracking-widest text-gray-500 dark:text-gray-400 border border-transparent dark:border-gray-900">
    <%= book.genre || t('books.genreDefault') %>
</div>
</div>
