@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Oswald:wght@300;400;600&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Oswald', sans-serif;
            background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #0d0704 100%);
            color: #e57a08;
            overflow-x: hidden;
        }
        
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.02"/></svg>');
            pointer-events: none;
            z-index: 1000;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: 
                radial-gradient(ellipse at 20% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
        }
        
        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }
        
        .title {
            font-family: 'Creepster', cursive;
            font-size: clamp(3rem, 8vw, 8rem);
            color: #ff8c00;
            text-shadow: 
                0 0 20px rgba(255, 140, 0, 0.5),
                0 0 40px rgba(255, 140, 0, 0.3),
                3px 3px 0px rgba(139, 69, 19, 0.8);
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            animation: flicker 3s infinite alternate;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .subtitle {
            font-family: 'Courier Prime', monospace;
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: #d4af37;
            margin-bottom: 2rem;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        .tagline {
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: 300;
            margin-bottom: 3rem;
            line-height: 1.4;
            color: #f4e6d7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            padding: 1rem 2.5rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .cta-primary {
            color: #ff8c00;
            border-color: #ff8c00;
        }
        
        .cta-primary:hover {
            background: #ff8c00;
            color: #1a0f0a;
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
            transform: translateY(-2px);
        }
        
        .cta-secondary {
            color: #d4af37;
            border-color: #d4af37;
        }
        
        .cta-secondary:hover {
            background: #d4af37;
            color: #1a0f0a;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-symbol {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 20s infinite linear;
            color: #ff8c00;
        }
        
        .floating-symbol:nth-child(2) { animation-delay: -5s; font-size: 1.5rem; color: #d4af37; }
        .floating-symbol:nth-child(3) { animation-delay: -10s; font-size: 2.5rem; }
        .floating-symbol:nth-child(4) { animation-delay: -15s; font-size: 1.8rem; color: #cd853f; }
        
        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }
        
        .sections {
            padding: 4rem 0;
        }
        
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            border-bottom: 1px solid rgba(255, 140, 0, 0.2);
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: #ff8c00;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, transparent);
        }
        
        .novel-description {
            font-family: 'Courier Prime', monospace;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #f4e6d7;
            text-align: justify;
        }
        
        .jazz-souffle {
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(212, 175, 55, 0.03) 100%);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .jazz-title {
            font-family: 'Creepster', cursive;
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .footer {
            text-align: center;
            padding: 3rem 2rem;
            color: #8b6914;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 250px;
            }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #ff8c00;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
/* Absorbed from index.html inline styles */

                .bright-contact {
                    background: linear-gradient(90deg, #ffea00 0%, #ff6f00 100%);
                    color: #222 !important;
                    box-shadow: 0 0 20px 5px #ffd700, 0 0 40px 10px #ff9800;
                    border: none;
                    font-weight: bold;
                    transition: box-shadow 0.2s, transform 0.2s;
                }
                .bright-contact:hover {
                    box-shadow: 0 0 40px 15px #fff700, 0 0 60px 20px #ff9800;
                    transform: scale(1.05);
                }
                
/* Absorbed from formatHub.html inline styles */

        .chapters-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .page-title {
            font-family: 'Creepster', cursive;
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: #ff8c00;
            text-shadow: 
                0 0 20px rgba(255, 140, 0, 0.5),
                0 0 40px rgba(255, 140, 0, 0.3),
                3px 3px 0px rgba(139, 69, 19, 0.8);
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-family: 'Courier Prime', monospace;
            font-size: 1.2rem;
            color: #d4af37;
            font-style: italic;
        }

        .chapter-card {
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(44, 24, 16, 0.3) 100%);
            border: 2px solid rgba(255, 140, 0, 0.3);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .chapter-card:hover {
            border-color: rgba(255, 140, 0, 0.6);
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
            transform: translateY(-2px);
        }

        .chapter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .chapter-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: #ff8c00;
            margin: 0;
        }

        .chapter-number {
            font-family: 'Courier Prime', monospace;
            color: #d4af37;
            font-size: 1rem;
            opacity: 0.8;
        }

        .format-selector {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .format-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            border: 2px solid;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .format-button .icon {
            font-size: 1.3rem;
        }

        .format-button .time {
            font-size: 0.8rem;
            opacity: 0.7;
            font-style: italic;
        }

        /* Available formats */
        .format-audio {
            color: #ff8c00;
            border-color: #ff8c00;
        }

        .format-audio:hover:not(.disabled) {
            background: #ff8c00;
            color: #1a0f0a;
            box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
        }

        .format-quick {
            color: #d4af37;
            border-color: #d4af37;
        }

        .format-quick:hover:not(.disabled) {
            background: #d4af37;
            color: #1a0f0a;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .format-full {
            color: #cd853f;
            border-color: #cd853f;
        }

        .format-full:hover:not(.disabled) {
            background: #cd853f;
            color: #1a0f0a;
            box-shadow: 0 0 20px rgba(205, 133, 63, 0.4);
        }

        /* Disabled/unavailable formats */
        .format-button.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            border-style: dashed;
        }

        .format-button.disabled:hover {
            background: transparent;
            transform: none;
        }

        .back-button {
            position: fixed;
            top: 2rem;
            left: 2rem;
            padding: 1rem 2rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            color: #ff8c00;
            border: 2px solid #ff8c00;
            background: rgba(26, 15, 10, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border-radius: 5px;
            z-index: 100;
        }

        .back-button:hover {
            background: #ff8c00;
            color: #1a0f0a;
            box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
        }

        @media (max-width: 768px) {
            .format-selector {
                flex-direction: column;
            }

            .format-button {
                width: 100%;
                justify-content: center;
            }

            .back-button {
                top: 1rem;
                left: 1rem;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }
    
/* Absorbed from randomiser.html inline styles */

        .coming-soon {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
            text-align: center;
            padding: 2rem;
        }
        .coming-soon h1 {
            font-family: 'Creepster', cursive;
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: #ff8c00;
            margin-bottom: 1rem;
        }
        .coming-soon p {
            font-family: 'Courier Prime', monospace;
            color: #d4af37;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
    