:root {
            --primary-sand: #d4c4a8;
            --deep-spice: #b3543a;
            --fremen-blue: #4a6fa5;
            --desert-night: #1a1a1a;
            --arrakis-dawn: #e9dfc7;
            --harkonnen-dark: #2c2c2c;
            --spacing-unit: 1rem;
            --max-content-width: 1200px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(180deg, var(--desert-night) 0%, #2d2d2d 100%);
            color: var(--arrakis-dawn);
            overflow-x: hidden;
        }
        a { color: var(--primary-sand); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--deep-spice); text-shadow: 0 0 8px rgba(179, 84, 58, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background-color: rgba(26, 26, 26, 0.95);
            border-bottom: 2px solid var(--deep-spice);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            max-width: var(--max-content-width);
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--primary-sand), var(--deep-spice));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            border-bottom-color: var(--deep-spice);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-sand);
        }
        .breadcrumb {
            max-width: var(--max-content-width);
            margin: 1rem auto;
            padding: 0 var(--spacing-unit);
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: var(--primary-sand); }
        .main-container {
            max-width: var(--max-content-width);
            margin: 2rem auto;
            padding: 0 var(--spacing-unit);
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
        }
        .content-area {
            background: rgba(44, 44, 44, 0.8);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--harkonnen-dark);
        }
        article h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-sand);
            text-align: center;
            border-bottom: 3px double var(--deep-spice);
            padding-bottom: 1rem;
        }
        article h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: var(--primary-sand);
            padding-left: 0.5rem;
            border-left: 5px solid var(--fremen-blue);
        }
        article h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #e0c097;
        }
        article h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #d1b38e;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--arrakis-dawn);
            background: rgba(179, 84, 58, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--deep-spice);
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: rgba(74, 111, 165, 0.15);
            border: 1px solid var(--fremen-blue);
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        .featured-img {
            width: 80%;
            margin: 2.5rem auto;
            border: 5px solid var(--primary-sand);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-img img { width: 100%; transition: transform 0.5s ease; }
        .featured-img img:hover { transform: scale(1.03); }
        .interactive-section {
            background: rgba(26, 26, 26, 0.9);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid var(--deep-spice);
        }
        .interactive-section h3 { text-align: center; margin-top: 0; }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid #555;
            background-color: #2a2a2a;
            color: var(--arrakis-dawn);
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-sand);
            box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.3);
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(to right, var(--deep-spice), #9a3c26);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to right, #9a3c26, var(--deep-spice));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(179, 84, 58, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating-stars input { display: none; }
        .rating-stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label { color: gold; }
        .sidebar {
            background: rgba(44, 44, 44, 0.8);
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid var(--harkonnen-dark);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--primary-sand);
            border-bottom: 2px solid var(--deep-spice);
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .related-links a {
            display: block;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .related-links a:hover {
            background: rgba(179, 84, 58, 0.2);
            transform: translateX(5px);
        }
        .update-time {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px dashed #555;
        }
        .site-footer {
            background-color: var(--desert-night);
            color: #333;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid var(--deep-spice);
        }
        .footer-container {
            max-width: var(--max-content-width);
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h4 {
            color: var(--deep-spice);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: #555;
            border-bottom: 1px dotted #ccc;
        }
        friend-link a { color: #555; }
        friend-link a:hover { color: var(--deep-spice); }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #ccc;
            font-size: 0.9rem;
            color: #666;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--desert-night);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .main-nav.active ul { display: flex; }
            .main-nav ul li { text-align: center; margin: 0.5rem 0; }
            article h1 { font-size: 2.5rem; }
            article h2 { font-size: 1.9rem; }
            .content-area { padding: 1.5rem; }
            .featured-img { width: 100%; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area, .sidebar { animation: fadeIn 0.8s ease-out; }
