:root {
            --primary-sand: #d4b483;
            --deep-spice: #9c4a1a;
            --arrakis-sky: #87CEEB;
            --fremen-blue: #0d3b66;
            --harkonnen-black: #2d2d2d;
            --atriedes-white: #f5f5f5;
            --paragraph-spacing: 1.8rem;
            --content-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(180deg, #f8f3e6 0%, #f0e6d2 100%);
            min-height: 100vh;
        }
        a {
            color: var(--deep-spice);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--fremen-blue);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--harkonnen-black);
            border-bottom: 5px solid var(--primary-sand);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo span {
            color: var(--atriedes-white);
            font-style: italic;
        }
        .my-logo:hover {
            color: #fff;
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--primary-sand);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--deep-spice);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #7a3a15;
        }
        nav {
            background-color: rgba(45, 45, 45, 0.98);
            padding: 10px 0;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-desktop a {
            color: var(--atriedes-white);
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--primary-sand);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-sand);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--harkonnen-black);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid #555;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background-color: #e9dcc9;
            border-bottom: 1px solid var(--primary-sand);
        }
        .breadcrumb a {
            color: var(--deep-spice);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--deep-spice);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px double var(--primary-sand);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--fremen-blue);
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 8px;
            border-bottom: 1px solid #e0d0b8;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--harkonnen-black);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            font-style: italic;
        }
        p {
            margin-bottom: var(--paragraph-spacing);
            text-align: justify;
            hyphens: auto;
        }
        .intro {
            font-size: 1.2rem;
            color: #444;
            background-color: #f9f5ed;
            padding: 20px;
            border-left: 5px solid var(--deep-spice);
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 25px;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-sand);
        }
        .highlight strong {
            color: var(--deep-spice);
            font-size: 1.1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2.5rem auto;
            border-radius: 6px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .float-left {
            float: left;
            margin: 1rem 2rem 1rem 0;
            max-width: 50%;
        }
        .related-links {
            background-color: #f0f7ff;
            padding: 20px;
            margin: 2.5rem 0;
            border-radius: 8px;
        }
        .related-links h3 {
            margin-top: 0;
            color: var(--fremen-blue);
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            list-style: none;
        }
        .related-links li {
            padding: 8px 0;
            border-bottom: 1px dotted #b8d4ff;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 1.2rem;
            color: var(--deep-spice);
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: gold;
        }
        .rating-widget input, .rating-widget textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
        }
        .rating-widget button {
            background-color: var(--deep-spice);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background-color: var(--fremen-blue);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        .comment-author {
            font-weight: bold;
            color: var(--deep-spice);
        }
        .comment-date {
            font-size: 0.85rem;
            color: #777;
        }
        footer {
            background-color: var(--harkonnen-black);
            color: #ccc;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: var(--primary-sand);
            margin-bottom: 20px;
            font-style: normal;
            border-bottom: 1px solid #555;
            padding-bottom: 8px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background-color: #3a3a3a;
            padding: 15px;
            border-radius: 6px;
            margin: 10px 0;
            border-left: 4px solid var(--primary-sand);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                width: 200px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-form {
                order: 3;
                width: 100%;
            }
            .article-content {
                padding: 25px;
            }
            .float-left {
                float: none;
                margin: 2rem auto;
                max-width: 100%;
            }
        }
