
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c2c2c;
        }

        /* Navigasi */
        nav {
            background: #740001;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        nav a {
            color: #d3a625;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #fff;
        }

        /* Jumbotron */
        .jumbotron {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?w=1200&h=600&fit=crop') center/cover;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        .jumbotron h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .jumbotron p {
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        section {
            margin-bottom: 4rem;
        }

        h2 {
            color: #740001;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            border-bottom: 3px solid #d3a625;
            padding-bottom: 0.5rem;
        }

        /* Tentang Penulis */
        .author-section {
            display: flex;
            gap: 2rem;
            align-items: center;
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
        }

        .author-img {
            width: 300px;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .author-text {
            flex: 1;
        }

        .author-text h3 {
            color: #740001;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .author-text p {
            font-size: 1.1rem;
            text-align: justify;
        }

        /* Buku Section */
        .books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .book-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .book-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }

        .book-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .book-info {
            padding: 1.5rem;
        }

        .book-info h3 {
            color: #740001;
            margin-bottom: 0.5rem;
        }

        /* Film Section */
        .films-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .film-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .film-card:hover {
            transform: scale(1.03);
        }

        .film-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .film-info {
            padding: 1.5rem;
        }

        .film-info h3 {
            color: #740001;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: #740001;
            color: #d3a625;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .author-section {
                flex-direction: column;
                text-align: center;
            }

            .jumbotron h1 {
                font-size: 2.5rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }