        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Silkscreen:wght@400;700&display=swap');

        * { font-family: 'Poppins', sans-serif; }
        .font-pixel { font-family: 'Silkscreen', cursive; }

        body {
            background-color: #0c0a09;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231c1917' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Minecraft Book Styling */
        .book-frame {
            background-color: #3f2111; /* Dark Brown Border */
            padding: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 4px solid #1e1008;
            border-radius: 4px;
        }

        .book-pages {
            background-color: #f7f7f7; /* Crisp Paper Color */
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            position: relative;
            border: 4px solid #c6c6c6;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
        }

        /* Middle binding */
        .book-pages::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(0,0,0,0.1);
            transform: translateX(-50%);
        }

        .page {
            padding: 40px;
            color: #1a1a1a;
        }

        .page-left { border-right: 1px solid rgba(0,0,0,0.05); }

        h2 { color: #000; margin-bottom: 24px; font-size: 1.5rem; text-align: center; }
        h3 { color: #444; margin-top: 20px; margin-bottom: 8px; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid #ddd; padding-bottom: 4px; }
        p, li { font-size: 0.95rem; line-height: 1.6; color: #222; margin-bottom: 12px; }
        
        ol { list-style-type: decimal; margin-left: 20px; }
        li { margin-bottom: 8px; padding-left: 4px; }

        /* Page Corner Flip */
        .corner {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, transparent 50%, #e0e0e0 50%);
        }

        /* Back Button */
        .back-btn {
            position: fixed;
            top: 24px;
            left: 24px;
            z-index: 50;
        }

        @media (max-width: 1024px) {
            .book-pages { grid-template-columns: 1fr; }
            .page-left { border-right: none; border-bottom: 2px solid #ddd; }
        }