        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-sand: #d4a574;
            --deep-desert: #8b4513;
            --spice-orange: #ff8c00;
            --fremen-blue: #1e90ff;
            --harkonnen-black: #222;
            --text-light: #f5f5f5;
            --text-dark: #333;
            --shadow: 0 4px 12px rgba(0,0,0,0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background: linear-gradient(180deg, #fdf6e3 0%, #eee8d5 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--deep-desert);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--spice-orange);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(120deg, var(--spice-orange) 0%, transparent 100%);
            padding: 0.2em 0.5em;
            border-radius: 4px;
        }
        .section-padding {
            padding: 4rem 0;
        }
        .site-header {
            background-color: var(--harkonnen-black);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            color: var(--spice-orange);
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--deep-desert);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9dccd;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--deep-desert); }
        .breadcrumb a:hover { color: var(--spice-orange); }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: var(--text-light);
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--deep-desert);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--deep-desert);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--spice-orange);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--deep-desert);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--primary-sand);
            padding-bottom: 0.5rem;
        }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.5rem; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        blockquote {
            border-left: 5px solid var(--spice-orange);
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fffaf0;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background: #f5f5f5;
            color: #666;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--harkonnen-black);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .comment-form button {
            background: var(--deep-desert);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--spice-orange);
        }
        .site-footer {
            background-color: var(--harkonnen-black);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-sand);
            margin-top: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: #ccc;
            display: block;
            padding: 0.3rem 0;
        }
        .footer-links a:hover {
            color: var(--spice-orange);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 0.5rem;
            background: #333;
            margin: 0.2rem 0;
            border-radius: 4px;
        }
        friend-link a {
            color: var(--primary-sand);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 { font-size: 2.8rem; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                background: var(--harkonnen-black);
                width: 80%;
                height: calc(100vh - 70px);
                transition: right 0.5s ease;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .section-padding { padding: 3rem 0; }
            .article-content { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero h1 { font-size: 1.8rem; }
            h2 { font-size: 1.8rem; }
        }
