 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #e2e8f0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
        }

        /* Header */
        .header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #334155;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #, #d97706);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1e293b;
            font-size: 1.2rem;
            overflow: hidden;
        }

        .author-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .site-info h1 {
            font-size: 1.5rem;
            color: #f1f5f9;
            margin: 0;
        }

        .site-info .tagline {
            font-size: 0.8rem;
            color: #94a3b8;
            font-style: italic;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #f59e0b;
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .nav-menu a {
            color: #94a3b8;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #f59e0b;
            background: rgba(245, 158, 11, 0.1);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 2rem;
        }

        .mobile-nav-menu {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-menu li {
            margin: 1.5rem 0;
        }

        .mobile-nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 8px;
            display: block;
        }

        .mobile-nav-menu a:hover,
        .mobile-nav-menu a.active {
            color: #f59e0b;
            background: rgba(245, 158, 11, 0.1);
            transform: scale(1.05);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .page {
            display: none;
            padding: 2rem 0;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(220, 38, 38, 0.1) 50%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 12px;
            margin-bottom: 3rem;
        }

        .hero h2 {
            font-size: 3rem;
            background: linear-gradient(45deg, #f59e0b, #dc2626, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: #f59e0b;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .hero .description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Genre Colors */
        .thriller { --genre-color: #f59e0b; }
        .horror { --genre-color: #dc2626; }
        .fantasy { --genre-color: #059669; }
        .romance { --genre-color: #e11d48; }
        .scifi { --genre-color: #6366f1; }
        .historical { --genre-color: #d97706; }

        /* Genre Filter */
        .genre-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }

        .filter-btn {
            padding: 0.7rem 1.5rem;
            background: transparent;
            border: 2px solid var(--genre-color, #f59e0b);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--genre-color, #f59e0b);
            color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }

        /* Section Titles */
        .section-title {
            font-size: 2.2rem;
            text-align: center;
            margin: 3rem 0 2rem 0;
            color: #f59e0b;
        }

        /* Books Grid */
        .books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .book-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 12px;
            padding: 2rem;
            border-left: 4px solid var(--genre-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .book-cover {
            width: 220px;
            height: 330px;
            background: linear-gradient(45deg, var(--genre-color), rgba(245, 158, 11, 0.7));
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            text-align: center;
            color: #1e293b;
            margin: 0 auto 1.5rem auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .book-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0px;
        }

        .book-cover-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            text-align: center;
            color: #1e293b;
            z-index: 2;
        }

        .book-cover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }

        .series-badge {
            display: inline-block;
            background: #f59e0b;
            color: #1e293b;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .book-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .book-genre {
            display: inline-block;
            color: var(--genre-color);
            background: rgba(245, 158, 11, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            border: 1px solid var(--genre-color);
        }

        .book-description {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .content-warning {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid #dc2626;
            color: #fca5a5;
            padding: 0.5rem;
            border-radius: 6px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .universe-connections {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid #6366f1;
            color: #c7d2fe;
            padding: 0.7rem;
            border-radius: 6px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .buy-btn {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: #1e293b;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .buy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
        }

        /* Patreon Call to Action */
        .patreon-cta {
            margin: 4rem 0;
            padding: 0 2rem;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 2px solid #f59e0b;
            box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(245, 158, 11, 0.05) 0%, transparent 30%, rgba(99, 102, 241, 0.05) 70%, transparent 100%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .cta-title {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            color: #94a3b8;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .patreon-btn {
            display: inline-block;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: #1e293b;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            border: 2px solid transparent;
        }

        .patreon-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
            border-color: #f1f5f9;
        }

        .btn-icon {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        .cta-benefits {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .benefit {
            color: #cbd5e1;
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(245, 158, 11, 0.3);
            transition: all 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-2px);
            background: rgba(245, 158, 11, 0.2);
            color: #f1f5f9;
        }

        /* Recent Posts */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .post-card {
            background: #1e293b;
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 3px solid #f59e0b;
            transition: all 0.3s ease;
        }

        .post-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .post-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .post-meta {
            color: #94a3b8;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .post-excerpt {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .post-tag {
            background: #334155;
            color: #94a3b8;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
        }

        /* Universe Web */
        .universe-web {
            text-align: center;
            margin: 4rem 0;
        }

        .web-container {
            background: #1e293b;
            border-radius: 16px;
            padding: 3rem;
            margin-top: 2rem;
            position: relative;
        }

        .web-nodes {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .web-node {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--genre-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
        }

        .web-node:hover {
            transform: scale(1.15);
            border-color: #f59e0b;
            box-shadow: 0 0 30px var(--genre-color);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid #334155;
        }

        .footer-content {
            text-align: center;
        }

        .footer-social {
            margin-bottom: 2rem;
        }

        .footer-social a {
            color: #94a3b8;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: #f59e0b;
        }

        .footer-text {
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-overlay {
                display: block;
            }

            .nav-container {
                flex-wrap: nowrap;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .books-grid,
            .posts-grid {
                grid-template-columns: 1fr;
            }

            .web-nodes {
                flex-direction: column;
                gap: 1.5rem;
            }

            .genre-filter {
                justify-content: center;
            }

            .site-info h1 {
                font-size: 1.2rem;
            }

            .site-info .tagline {
                font-size: 0.75rem;
            }

            /* Patreon CTA Mobile */
            .cta-container {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-benefits {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .benefit {
                width: fit-content;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .hero .description {
                font-size: 1rem;
            }

            .author-logo {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .book-card {
                padding: 1.5rem;
            }

            .web-container {
                padding: 2rem 1rem;
            }

            .mobile-nav-menu a {
                font-size: 1.3rem;
            }

            /* Patreon CTA Extra Small Mobile */
            .patreon-cta {
                margin: 3rem 0;
                padding: 0 1rem;
            }

            .cta-container {
                padding: 2rem 1rem;
                margin: 0;
            }

            .cta-title {
                font-size: 1.8rem;
            }

            .cta-icon {
                font-size: 2.5rem;
            }

            .patreon-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .cta-description {
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }

        /* Smooth Transitions */
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Prevent scrolling when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
        }

        /* Phases*/

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

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

        .hollowuniverse-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #f59e0b, #dc2626, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hollowuniverse-page-subtitle {
            font-size: 1.3rem;
            color: #f59e0b;
            font-style: italic;
            margin-bottom: 2rem;
        }

        .hollowuniverse-page-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .hollowuniverse-phases-container {
            display: grid;
            gap: 3rem;
            margin: 3rem 0;
        }

        .hollowuniverse-phase-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--phase-color, #f59e0b);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hollowuniverse-phase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .hollowuniverse-phase-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .hollowuniverse-phase-1 { --phase-color: #059669; }
        .hollowuniverse-phase-2 { --phase-color: #dc2626; }
        .hollowuniverse-phase-3 { --phase-color: #f59e0b; }
        .hollowuniverse-phase-4 { --phase-color: #6366f1; }
        .hollowuniverse-phase-5 { --phase-color: #e11d48; }

        .hollowuniverse-phase-header {
            margin-bottom: 2rem;
        }

        .hollowuniverse-phase-number {
            display: inline-block;
            background: var(--phase-color);
            color: #1e293b;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .hollowuniverse-phase-title {
            font-size: 2rem;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .hollowuniverse-phase-subtitle {
            font-size: 1.2rem;
            color: var(--phase-color);
            font-style: italic;
            margin-bottom: 1rem;
        }

        .hollowuniverse-phase-book-range {
            color: #94a3b8;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .hollowuniverse-phase-content {
            display: grid;
            gap: 1.5rem;
        }

        .hollowuniverse-themes-section,
        .hollowuniverse-description-section,
        .hollowuniverse-reveals-section {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .hollowuniverse-section-title {
            font-size: 1.3rem;
            color: var(--phase-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hollowuniverse-section-icon {
            font-size: 1.1rem;
        }

        .hollowuniverse-themes-list {
            color: #cbd5e1;
            font-style: italic;
            line-height: 1.7;
        }

        .hollowuniverse-description-text {
            color: #e2e8f0;
            line-height: 1.7;
        }

        .hollowuniverse-reveals-list {
            list-style: none;
            color: #cbd5e1;
        }

        .hollowuniverse-reveals-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .hollowuniverse-reveals-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--phase-color);
            font-weight: bold;
        }

        .hollowuniverse-phase-timeline {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin: 4rem 0;
            border: 1px solid #334155;
        }

        .hollowuniverse-timeline-title {
            text-align: center;
            font-size: 2rem;
            color: #f59e0b;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .hollowuniverse-timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            align-items: center;
        }

        .hollowuniverse-timeline-phase {
            text-align: center;
            padding: 1rem;
            background: var(--phase-color);
            color: #1e293b;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hollowuniverse-timeline-phase:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .hollowuniverse-timeline-phase-1 { --phase-color: #059669; }
        .hollowuniverse-timeline-phase-2 { --phase-color: #dc2626; }
        .hollowuniverse-timeline-phase-3 { --phase-color: #f59e0b; }
        .hollowuniverse-timeline-phase-4 { --phase-color: #6366f1; }
        .hollowuniverse-timeline-phase-5 { --phase-color: #e11d48; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hollowuniverse-page-title {
                font-size: 2.5rem;
            }

            .hollowuniverse-phase-card {
                padding: 2rem;
            }

            .hollowuniverse-phase-title {
                font-size: 1.5rem;
            }

            .hollowuniverse-timeline-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .hollowuniverse-container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hollowuniverse-page-title {
                font-size: 2rem;
            }

            .hollowuniverse-page-subtitle {
                font-size: 1.1rem;
            }

            .hollowuniverse-page-description {
                font-size: 1rem;
            }

            .hollowuniverse-phase-card {
                padding: 1.5rem;
            }

            .hollowuniverse-phase-title {
                font-size: 1.3rem;
            }

            .hollowuniverse-section-title {
                font-size: 1.1rem;
            }
        }

        /* Smooth animations */
        .hollowuniverse-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* About */
          .overview-hollow-universe {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #e2e8f0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .overview-hollow-universe::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .overview-series-title {
            font-size: 3.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .overview-series-subtitle {
            font-size: 1.3rem;
            text-align: center;
            color: #cbd5e1;
            font-style: italic;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .overview-content-section {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 1px solid #334155;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .overview-content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
        }

        .overview-section-header {
            font-size: 1.4rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f59e0b;
            position: relative;
        }

        .overview-section-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #d97706;
        }

        .overview-story-paragraph {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #cbd5e1;
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .overview-story-paragraph:hover {
            color: #f1f5f9;
        }

        .overview-author-section {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
            border: 2px solid #f59e0b;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .overview-author-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(245, 158, 11, 0.05) 0%, transparent 30%, rgba(99, 102, 241, 0.05) 70%, transparent 100%);
            pointer-events: none;
        }

        .overview-author-title {
            font-size: 2rem;
            font-weight: bold;
            color: #f59e0b;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .overview-author-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #cbd5e1;
            margin: 25px 0;
            padding: 20px;
            background: rgba(30, 41, 59, 0.7);
            border-radius: 10px;
            border-left: 4px solid #f59e0b;
            position: relative;
            z-index: 2;
        }

        .overview-stats-highlight {
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid #f59e0b;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            color: #f59e0b;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }

        .overview-key-elements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .overview-element-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #f59e0b;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid #334155;
        }

        .overview-element-card:hover {
            background: linear-gradient(135deg, #334155 0%, #475569 100%);
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
        }

        .overview-element-title {
            font-weight: bold;
            color: #f59e0b;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .overview-element-description {
            color: #cbd5e1;
            font-size: 1rem;
        }

        .overview-themes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .overview-theme-tag {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: #1e293b;
            padding: 15px 20px;
            border-radius: 25px;
            text-align: center;
            font-weight: 500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: default;
            border: 2px solid transparent;
        }

        .overview-theme-tag:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            border-color: #f1f5f9;
        }

        .overview-climax-section {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
            border: 2px solid #f59e0b;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .overview-climax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
            transition: left 0.5s;
        }

        .overview-climax-section:hover::before {
            left: 100%;
        }

        .overview-climax-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f59e0b;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .overview-hollow-universe {
                padding: 40px 15px;
            }
            
            .overview-series-title {
                font-size: 2.5rem;
            }
            
            .overview-key-elements {
                grid-template-columns: 1fr;
            }
            
            .overview-themes-grid {
                grid-template-columns: 1fr;
            }
            
            .overview-author-section {
                padding: 25px;
            }
            
            .overview-author-title {
                font-size: 1.6rem;
            }
        }

        .overview-fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

                /* Book-by-Book */



                /* Phase 1 */

 .foundation-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .foundation-page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(220, 38, 38, 0.1) 50%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 16px;
        }

        .foundation-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #f59e0b, #dc2626, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .foundation-page-subtitle {
            font-size: 1.5rem;
            color: #f59e0b;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .foundation-phase-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .foundation-genre-navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .foundation-genre-nav-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--genre-color);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
        }

        .foundation-genre-nav-btn:hover,
        .foundation-genre-nav-btn.active {
            background: var(--genre-color);
            color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }

        .foundation-historical { --genre-color: #d97706; }
        .foundation-fantasy { --genre-color: #059669; }
        .foundation-romance { --genre-color: #e11d48; }
        .foundation-mystery { --genre-color: #6366f1; }
        .foundation-horror { --genre-color: #dc2626; }

        .foundation-genre-section {
            margin: 4rem 0;
        }

        .foundation-genre-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .foundation-genre-title {
            font-size: 2.5rem;
            color: var(--genre-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .foundation-genre-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }

        .foundation-books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 2.5rem;
            margin: 2rem 0;
        }

        .foundation-book-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--genre-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .foundation-book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .foundation-book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .foundation-book-header {
            margin-bottom: 2rem;
        }

        .foundation-book-number {
            display: inline-block;
            background: var(--genre-color);
            color: #1e293b;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .foundation-book-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .foundation-book-setting {
            color: var(--genre-color);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .foundation-book-content {
            display: grid;
            gap: 2rem;
        }

        .foundation-plot-section,
        .foundation-universe-ties-section {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .foundation-section-title {
            font-size: 1.2rem;
            color: var(--genre-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .foundation-plot-text {
            color: #e2e8f0;
            line-height: 1.7;
            text-align: justify;
        }

        .foundation-universe-ties-text {
            color: #cbd5e1;
            line-height: 1.7;
            text-align: justify;
            font-style: italic;
        }

        .foundation-connection-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .foundation-connection-tag {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .foundation-stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .foundation-stat-item {
            text-align: center;
        }

        .foundation-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f59e0b;
            display: block;
        }

        .foundation-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .foundation-reading-order-note {
            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #f59e0b;
            text-align: center;
        }

        .foundation-reading-note-title {
            font-size: 1.5rem;
            color: #f59e0b;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .foundation-reading-note-text {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .foundation-books-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .foundation-page-title {
                font-size: 2.5rem;
            }

            .foundation-book-card {
                padding: 2rem;
            }

            .foundation-genre-navigation {
                padding: 1.5rem;
            }

            .foundation-container {
                padding: 0 1rem;
            }

            .foundation-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .foundation-page-title {
                font-size: 2rem;
            }

            .foundation-book-card {
                padding: 1.5rem;
            }

            .foundation-genre-navigation {
                flex-direction: column;
                align-items: center;
            }

            .foundation-stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth animations */
        .foundation-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll behaviour */
        html {
            scroll-behavior: smooth;
        }

                /* Phase 2 */

        .darkages-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .darkages-page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(15, 23, 42, 0.1) 50%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 16px;
        }

        .darkages-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #dc2626, #7c2d12, #450a0a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .darkages-page-subtitle {
            font-size: 1.5rem;
            color: #dc2626;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .darkages-phase-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .darkages-genre-navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .darkages-genre-nav-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--genre-color);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
        }

        .darkages-genre-nav-btn:hover,
        .darkages-genre-nav-btn.active {
            background: var(--genre-color);
            color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .darkages-medieval { --genre-color: #d97706; }
        .darkages-horror { --genre-color: #dc2626; }
        .darkages-romance { --genre-color: #7c2d12; }

        .darkages-genre-section {
            margin: 4rem 0;
        }

        .darkages-genre-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .darkages-genre-title {
            font-size: 2.5rem;
            color: var(--genre-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .darkages-genre-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }

        .darkages-books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 2.5rem;
            margin: 2rem 0;
        }

        .darkages-book-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--genre-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .darkages-book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .darkages-book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .darkages-book-header {
            margin-bottom: 2rem;
        }

        .darkages-book-number {
            display: inline-block;
            background: var(--genre-color);
            color: #1e293b;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .darkages-book-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .darkages-book-setting {
            color: var(--genre-color);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .darkages-book-content {
            display: grid;
            gap: 2rem;
        }

        .darkages-plot-section,
        .darkages-universe-ties-section {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .darkages-section-title {
            font-size: 1.2rem;
            color: var(--genre-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .darkages-plot-text {
            color: #e2e8f0;
            line-height: 1.7;
            text-align: justify;
        }

        .darkages-universe-ties-text {
            color: #cbd5e1;
            line-height: 1.7;
            text-align: justify;
            font-style: italic;
        }

        .darkages-connection-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .darkages-connection-tag {
            background: rgba(220, 38, 38, 0.1);
            color: #dc2626;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(220, 38, 38, 0.3);
        }

        .darkages-stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .darkages-stat-item {
            text-align: center;
        }

        .darkages-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #dc2626;
            display: block;
        }

        .darkages-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .darkages-reading-order-note {
            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #dc2626;
            text-align: center;
        }

        .darkages-reading-note-title {
            font-size: 1.5rem;
            color: #dc2626;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .darkages-reading-note-text {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .darkages-books-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .darkages-page-title {
                font-size: 2.5rem;
            }

            .darkages-book-card {
                padding: 2rem;
            }

            .darkages-genre-navigation {
                padding: 1.5rem;
            }

            .darkages-container {
                padding: 0 1rem;
            }

            .darkages-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .darkages-page-title {
                font-size: 2rem;
            }

            .darkages-book-card {
                padding: 1.5rem;
            }

            .darkages-genre-navigation {
                flex-direction: column;
                align-items: center;
            }

            .darkages-stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth animations */
        .darkages-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll behaviour */
        html {
            scroll-behavior: smooth;
        }

                /* Phase 3 */

        .renaissance-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .renaissance-page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(184, 134, 11, 0.1) 50%, rgba(202, 138, 4, 0.1) 100%);
            border-radius: 16px;
        }

        .renaissance-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #8b4513, #b8860b, #ca8a04);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .renaissance-page-subtitle {
            font-size: 1.5rem;
            color: #ca8a04;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .renaissance-phase-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .renaissance-category-navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .renaissance-category-nav-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--category-color);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
        }

        .renaissance-category-nav-btn:hover,
        .renaissance-category-nav-btn.active {
            background: var(--category-color);
            color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(202, 138, 4, 0.3);
        }

        .renaissance-exploration { --category-color: #ca8a04; }
        .renaissance-investigation { --category-color: #dc2626; }

        .renaissance-category-section {
            margin: 4rem 0;
        }

        .renaissance-category-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .renaissance-category-title {
            font-size: 2.5rem;
            color: var(--category-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .renaissance-category-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }

        .renaissance-books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 2.5rem;
            margin: 2rem 0;
        }

        .renaissance-book-card {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--category-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .renaissance-book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(202, 138, 4, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .renaissance-book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .renaissance-book-header {
            margin-bottom: 2rem;
        }

        .renaissance-book-number {
            display: inline-block;
            background: var(--category-color);
            color: #1e293b;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .renaissance-book-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .renaissance-book-genre {
            color: var(--category-color);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .renaissance-book-content {
            display: grid;
            gap: 2rem;
        }

        .renaissance-plot-section,
        .renaissance-universe-ties-section {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(202, 138, 4, 0.2);
        }

        .renaissance-section-title {
            font-size: 1.2rem;
            color: var(--category-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .renaissance-plot-text {
            color: #e2e8f0;
            line-height: 1.7;
            text-align: justify;
        }

        .renaissance-universe-ties-text {
            color: #cbd5e1;
            line-height: 1.7;
            text-align: justify;
            font-style: italic;
        }

        .renaissance-connection-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .renaissance-connection-tag {
            background: rgba(202, 138, 4, 0.1);
            color: #ca8a04;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(202, 138, 4, 0.3);
        }

        .renaissance-stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .renaissance-stat-item {
            text-align: center;
        }

        .renaissance-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ca8a04;
            display: block;
        }

        .renaissance-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .renaissance-reading-order-note {
            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #ca8a04;
            text-align: center;
        }

        .renaissance-reading-note-title {
            font-size: 1.5rem;
            color: #ca8a04;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .renaissance-reading-note-text {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .renaissance-books-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .renaissance-page-title {
                font-size: 2.5rem;
            }

            .renaissance-book-card {
                padding: 2rem;
            }

            .renaissance-category-navigation {
                padding: 1.5rem;
            }

            .renaissance-container {
                padding: 0 1rem;
            }

            .renaissance-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .renaissance-page-title {
                font-size: 2rem;
            }

            .renaissance-book-card {
                padding: 1.5rem;
            }

            .renaissance-category-navigation {
                flex-direction: column;
                align-items: center;
            }

            .renaissance-stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth animations */
        .renaissance-fade-in {
            animation: renaissanceFadeIn 0.6s ease-in-out;
        }

        @keyframes renaissanceFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll behaviour */
        html {
            scroll-behavior: smooth;
        }

                /* Phase 4 */   

        .conspiracy-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .conspiracy-page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(239, 68, 68, 0.15) 50%, rgba(99, 102, 241, 0.15) 100%);
            border-radius: 16px;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .conspiracy-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #dc2626, #ef4444, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .conspiracy-page-subtitle {
            font-size: 1.5rem;
            color: #dc2626;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .conspiracy-phase-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .conspiracy-genre-navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(10, 14, 26, 0.7);
            border-radius: 12px;
            border: 1px solid #374151;
        }

        .conspiracy-genre-nav-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--genre-color);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
        }

        .conspiracy-genre-nav-btn:hover,
        .conspiracy-genre-nav-btn.active {
            background: var(--genre-color);
            color: #1a1e2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .conspiracy-space { --genre-color: #3b82f6; }
        .conspiracy-horror { --genre-color: #dc2626; }
        .conspiracy-scifi { --genre-color: #8b5cf6; }
        .conspiracy-romance { --genre-color: #e11d48; }
        .conspiracy-thriller { --genre-color: #f59e0b; }

        .conspiracy-genre-section {
            margin: 4rem 0;
        }

        .conspiracy-genre-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .conspiracy-genre-title {
            font-size: 2.5rem;
            color: var(--genre-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .conspiracy-genre-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }

        .conspiracy-books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 2.5rem;
            margin: 2rem 0;
        }

        .conspiracy-book-card {
            background: linear-gradient(135deg, #1a1e2b 0%, #374151 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--genre-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .conspiracy-book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .conspiracy-book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .conspiracy-book-header {
            margin-bottom: 2rem;
        }

        .conspiracy-book-number {
            display: inline-block;
            background: var(--genre-color);
            color: #1a1e2b;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .conspiracy-book-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .conspiracy-book-setting {
            color: var(--genre-color);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .conspiracy-book-content {
            display: grid;
            gap: 2rem;
        }

        .conspiracy-plot-section,
        .conspiracy-universe-ties-section {
            background: rgba(10, 14, 26, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .conspiracy-section-title {
            font-size: 1.2rem;
            color: var(--genre-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .conspiracy-plot-text {
            color: #e2e8f0;
            line-height: 1.7;
            text-align: justify;
        }

        .conspiracy-universe-ties-text {
            color: #cbd5e1;
            line-height: 1.7;
            text-align: justify;
            font-style: italic;
        }

        .conspiracy-connection-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .conspiracy-connection-tag {
            background: rgba(220, 38, 38, 0.1);
            color: #dc2626;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(220, 38, 38, 0.3);
        }

        .conspiracy-stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(10, 14, 26, 0.7);
            border-radius: 12px;
            border: 1px solid #374151;
        }

        .conspiracy-stat-item {
            text-align: center;
        }

        .conspiracy-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #dc2626;
            display: block;
        }

        .conspiracy-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .conspiracy-reading-order-note {
            background: linear-gradient(135deg, #1a1e2b 0%, #374151 50%, #1a1e2b 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #dc2626;
            text-align: center;
        }

        .conspiracy-reading-note-title {
            font-size: 1.5rem;
            color: #dc2626;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .conspiracy-reading-note-text {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .conspiracy-books-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .conspiracy-page-title {
                font-size: 2.5rem;
            }

            .conspiracy-book-card {
                padding: 2rem;
            }

            .conspiracy-genre-navigation {
                padding: 1.5rem;
            }

            .conspiracy-container {
                padding: 0 1rem;
            }

            .conspiracy-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .conspiracy-page-title {
                font-size: 2rem;
            }

            .conspiracy-book-card {
                padding: 1.5rem;
            }

            .conspiracy-genre-navigation {
                flex-direction: column;
                align-items: center;
            }

            .conspiracy-stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth animations */
        .conspiracy-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll behaviour */
        html {
            scroll-behavior: smooth;
        }

                /* Phase 5 */

        .digital-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .digital-page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(147, 51, 234, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
            border-radius: 16px;
            border: 1px solid rgba(79, 70, 229, 0.2);
        }

        .digital-page-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #4f46e5, #9333ea, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .digital-page-subtitle {
            font-size: 1.5rem;
            color: #4f46e5;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .digital-phase-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .digital-genre-navigation {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(12, 17, 32, 0.7);
            border-radius: 12px;
            border: 1px solid #374151;
        }

        .digital-genre-nav-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--genre-color);
            color: #e2e8f0;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
        }

        .digital-genre-nav-btn:hover,
        .digital-genre-nav-btn.active {
            background: var(--genre-color);
            color: #1e1b4b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .digital-mystery { --genre-color: #f59e0b; }
        .digital-techno { --genre-color: #06b6d4; }
        .digital-fantasy { --genre-color: #10b981; }

        .digital-genre-section {
            margin: 4rem 0;
        }

        .digital-genre-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .digital-genre-title {
            font-size: 2.5rem;
            color: var(--genre-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .digital-genre-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }

        .digital-books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 2.5rem;
            margin: 2rem 0;
        }

        .digital-book-card {
            background: linear-gradient(135deg, #1e1b4b 0%, #374151 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 6px solid var(--genre-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .digital-book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .digital-book-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .digital-book-header {
            margin-bottom: 2rem;
        }

        .digital-book-number {
            display: inline-block;
            background: var(--genre-color);
            color: #1e1b4b;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .digital-book-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .digital-book-setting {
            color: var(--genre-color);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .digital-book-content {
            display: grid;
            gap: 2rem;
        }

        .digital-plot-section,
        .digital-universe-ties-section {
            background: rgba(12, 17, 32, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(79, 70, 229, 0.2);
        }

        .digital-section-title {
            font-size: 1.2rem;
            color: var(--genre-color);
            margin-bottom: 1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .digital-plot-text {
            color: #e2e8f0;
            line-height: 1.7;
            text-align: justify;
        }

        .digital-universe-ties-text {
            color: #cbd5e1;
            line-height: 1.7;
            text-align: justify;
            font-style: italic;
        }

        .digital-connection-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .digital-connection-tag {
            background: rgba(79, 70, 229, 0.1);
            color: #4f46e5;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(79, 70, 229, 0.3);
        }

        .digital-stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            padding: 2rem;
            background: rgba(12, 17, 32, 0.7);
            border-radius: 12px;
            border: 1px solid #374151;
        }

        .digital-stat-item {
            text-align: center;
        }

        .digital-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #4f46e5;
            display: block;
        }

        .digital-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .digital-reading-order-note {
            background: linear-gradient(135deg, #1e1b4b 0%, #374151 50%, #1e1b4b 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #4f46e5;
            text-align: center;
        }

        .digital-reading-note-title {
            font-size: 1.5rem;
            color: #4f46e5;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .digital-reading-note-text {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Fantasy series special styling */
        .digital-fantasy-series {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
            border: 2px solid rgba(16, 185, 129, 0.3);
            margin: 3rem 0;
            padding: 2rem;
            border-radius: 16px;
        }

        .digital-fantasy-series-title {
            font-size: 2rem;
            color: #10b981;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .digital-fantasy-series-description {
            color: #cbd5e1;
            text-align: center;
            margin-bottom: 2rem;
            font-style: italic;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .digital-books-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .digital-page-title {
                font-size: 2.5rem;
            }

            .digital-book-card {
                padding: 2rem;
            }

            .digital-genre-navigation {
                padding: 1.5rem;
            }

            .digital-container {
                padding: 0 1rem;
            }

            .digital-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .digital-page-title {
                font-size: 2rem;
            }

            .digital-book-card {
                padding: 1.5rem;
            }

            .digital-genre-navigation {
                flex-direction: column;
                align-items: center;
            }

            .digital-stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth animations */
        .digital-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll behaviour */
        html {
            scroll-behavior: smooth;
        }
