:root {
            --primary-sand: #D4B483;
            --deep-spice: #A85F1C;
            --arrakis-blue: #5D8AA8;
            --fremen-stillsuit: #3E4A3C;
            --desert-storm: #F5F1E6;
            --shadow-dark: #2C2C2C;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--desert-storm);
            color: var(--shadow-dark);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--deep-spice);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--arrakis-blue);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--shadow-dark) 0%, var(--fremen-stillsuit) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Times New Roman', serif;
            background: linear-gradient(to right, var(--primary-sand), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--desert-storm);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            text-decoration: none;
            color: var(--primary-sand);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-sand);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-sand);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9e2d5;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--deep-spice);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--fremen-stillsuit);
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-sand);
            padding-bottom: 0.5rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ddd;
            font-size: 0.95rem;
            color: #666;
        }
        .last-updated {
            background-color: #f0f7ff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2, h3, h4 {
            color: var(--deep-spice);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--arrakis-blue);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, #fef9e7, transparent);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-sand);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .cast-card {
            border: 1px solid #e0d6c2;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }
        .cast-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .cast-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-sand);
        }
        .cast-info {
            padding: 1.2rem;
        }
        .cast-name {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--shadow-dark);
        }
        .cast-role {
            color: var(--deep-spice);
            font-style: italic;
            margin-bottom: 0.8rem;
        }
        img.responsive {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid #ddd;
            display: block;
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: -0.5rem;
            margin-bottom: 2rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
            border-bottom: 2px solid var(--primary-sand);
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input[type="search"] {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-sand);
            border-radius: 30px 0 0 30px;
            outline: none;
        }
        .search-form button {
            background: var(--deep-spice);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: var(--fremen-stillsuit);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 2px;
            transition: color 0.2s;
        }
        .stars .star.active,
        .stars .star:hover,
        .stars .star:hover ~ .star {
            color: #ffcc00;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--arrakis-blue);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: var(--deep-spice);
        }
        footer {
            background-color: var(--shadow-dark);
            color: var(--desert-storm);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-sand);
            margin-top: 0;
            border-bottom: 1px solid #555;
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ccc;
            text-decoration: none;
        }
        friend-link a:hover {
            color: var(--primary-sand);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--fremen-stillsuit);
                padding: 1rem 0;
                margin-top: 1rem;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            article {
                padding: 1.5rem;
            }
        }
