:root {
            --primary-sand: #D4A76A;
            --deep-spice: #9B5E2A;
            --arrakis-sun: #E39E2A;
            --fremen-blue: #3A6B8C;
            --harkonnen-black: #2C2C2C;
            --atreides-green: #567D46;
            --desert-light: #F5E8C8;
            --shadow-dark: #1A1A1A;
            --text-light: #F0F0F0;
            --text-muted: #B0B0B0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(180deg, var(--shadow-dark) 0%, #3a2c1a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--arrakis-sun);
            text-shadow: 0 0 8px rgba(227, 158, 42, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 26, 0.95);
            border-bottom: 2px solid var(--deep-spice);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .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(--arrakis-sun);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--primary-sand), var(--arrakis-sun));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            filter: brightness(1.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: block;
        }
        .main-nav a:hover {
            background-color: rgba(155, 94, 42, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(212, 167, 106, 0.2);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-sand);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        main {
            background-color: rgba(42, 35, 25, 0.7);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid var(--deep-spice);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        aside {
            background-color: rgba(26, 26, 26, 0.8);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--fremen-blue);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: var(--primary-sand);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            border-bottom: 3px solid var(--deep-spice);
            padding-bottom: 1rem;
            text-align: center;
            margin-top: 0;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid var(--atreides-green);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--arrakis-sun);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--fremen-blue);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--desert-light);
            background-color: rgba(155, 94, 42, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            border-left: 4px solid var(--arrakis-sun);
        }
        strong {
            color: var(--arrakis-sun);
            font-weight: 700;
        }
        em {
            color: var(--desert-light);
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid var(--fremen-blue);
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-muted);
            background-color: rgba(58, 107, 140, 0.05);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 2px solid var(--deep-spice);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 25px rgba(212, 167, 106, 0.3);
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .module {
            background-color: rgba(44, 44, 44, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid;
        }
        .search-module {
            border-color: var(--atreides-green);
        }
        .comments-module {
            border-color: var(--fremen-blue);
        }
        .rating-module {
            border-color: var(--arrakis-sun);
        }
        .module h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module h3 i {
            font-size: 1.5rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid var(--deep-spice);
            background-color: rgba(26, 26, 26, 0.8);
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--arrakis-sun);
            box-shadow: 0 0 0 3px rgba(227, 158, 42, 0.2);
        }
        button, .btn {
            padding: 0.9rem 1.8rem;
            background: linear-gradient(to right, var(--deep-spice), var(--arrakis-sun));
            color: var(--text-light);
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--arrakis-sun), var(--primary-sand));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(227, 158, 42, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: var(--text-muted);
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: gold;
        }
        .related-links {
            list-style: none;
            margin-top: 1.5rem;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed rgba(212, 167, 106, 0.3);
        }
        .related-links a {
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .related-links a:hover {
            background-color: rgba(212, 167, 106, 0.1);
        }
        .site-footer {
            background-color: var(--shadow-dark);
            border-top: 2px solid var(--deep-spice);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: rgba(58, 107, 140, 0.1);
            border-radius: 10px;
            width: 100%;
        }
        friend-link a {
            padding: 0.5rem 1rem;
            border: 1px solid var(--fremen-blue);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 167, 106, 0.2);
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: rgba(26, 26, 26, 0.98);
                padding: 1rem;
                border-top: 1px solid var(--deep-spice);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            .module {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside, .module {
            animation: fadeIn 0.8s ease-out;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(212, 167, 106, 0.1), rgba(155, 94, 42, 0.05));
            border: 1px solid var(--primary-sand);
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        .term {
            color: var(--fremen-blue);
            font-weight: bold;
            border-bottom: 1px dotted var(--fremen-blue);
            cursor: help;
        }
