
        :root {
            --deep-blue: #004c65;
            --black: #000;
            --white: #fff;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            line-height: 1.6;
            color: var(--black);
        }

        .novella-header {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            border-bottom: 2px solid var(--black);
        }

        .novella-site-logo {
            max-width: 200px;
            height: auto;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-blue);
            font-weight: bold;
            text-transform: uppercase;
        }

        .novella-collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            padding: 1rem;
        }

        .novella-collection-item {
            position: relative;
            height: 400px;
            display: flex;
            align-items: flex-end;
            background-color: #eee;
            overflow: hidden;
            border-radius: 4px;
        }

        .novella-archive-entry-inner {
            padding: 2rem;
            background: rgba(0,0,0,0.6);
            color: var(--white);
            text-decoration: none;
            width: 100%;
        }

        .novella-entry-category {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ccc;
        }

        h2.novella-entry-title {
            margin: 0.5rem 0;
            font-family: 'Abril Fatface', serif;
        }

        footer {
            padding: 3rem;
            text-align: center;
            background: #f4f4f4;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .novella-collection-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .novella-collection-grid { grid-template-columns: repeat(3, 1fr); }
        }
    