@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
        :root {
            --primary-sand: #d4b483;
            --secondary-spice: #9c6d3a;
            --deep-desert: #7a5c3c;
            --dark-fremen: #2d2214;
            --light-sietch: #f5e8d0;
            --harkonnen-red: #8b0000;
            --atreides-blue: #0a3d62;
            --corrino-gold: #b7950b;
            --font-serif: Georgia, 'Times New Roman', Times, serif;
            --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --shadow: 0 4px 12px rgba(45, 34, 20, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            line-height: 1.8;
            color: var(--dark-fremen);
            background-color: #fefcf8;
            background-image: linear-gradient(to bottom, #fefcf8 0%, #f5f0e6 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a {
            color: var(--secondary-spice);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--deep-desert);
            border-bottom-color: var(--secondary-spice);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 75rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background-color: var(--dark-fremen);
            color: var(--light-sietch);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-sand);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            text-decoration: none;
            border-bottom: none;
        }
        .my-logo:hover {
            color: #fff;
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--deep-desert);
            background-color: var(--light-sietch);
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--secondary-spice);
        }
        .breadcrumb a::after {
            content: ' › ';
            margin: 0 8px;
            color: var(--deep-desert);
        }
        .breadcrumb a:last-child::after {
            content: '';
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light-sietch);
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--primary-sand);
            border-bottom-color: var(--primary-sand);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-sietch);
            cursor: pointer;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(45, 34, 20, 0.85), rgba(45, 34, 20, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: var(--light-sietch);
            border-radius: 12px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-sand);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 48rem;
            margin: 0 auto 2rem;
        }
        .last-updated {
            font-style: italic;
            background: var(--dark-fremen);
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            color: var(--dark-fremen);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 3rem; border-bottom: 3px solid var(--primary-sand); padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: var(--deep-desert); border-left: 5px solid var(--secondary-spice); padding-left: 1rem; }
        h3 { font-size: 1.8rem; color: var(--secondary-spice); }
        h4 { font-size: 1.4rem; color: var(--harkonnen-red); }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: var(--light-sietch);
            border-left: 4px solid var(--atreides-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--deep-desert);
            text-align: center;
            padding: 2rem;
            border-top: 2px dashed var(--primary-sand);
            border-bottom: 2px dashed var(--primary-sand);
            margin: 2.5rem 0;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .img-container img:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 20px rgba(45, 34, 20, 0.25);
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--deep-desert);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background: var(--light-sietch);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid var(--secondary-spice);
        }
        .feature-card h4 {
            margin-top: 0;
            color: var(--deep-desert);
        }
        .interactive-section {
            background: linear-gradient(135deg, #f5f0e6 0%, #e8dfca 100%);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid var(--primary-sand);
        }
        .interactive-section h2 {
            text-align: center;
            border: none;
            color: var(--dark-fremen);
            margin-bottom: 2rem;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .form-box {
            background: white;
            padding: 1.8rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .form-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--deep-desert);
        }
        .form-box h3 i {
            color: var(--secondary-spice);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-fremen);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: var(--font-sans);
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-spice);
            box-shadow: 0 0 0 3px rgba(156, 109, 58, 0.2);
        }
        button, .btn {
            background-color: var(--secondary-spice);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background-color: var(--deep-desert);
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--primary-sand);
        }
        .site-footer {
            background-color: var(--dark-fremen);
            color: var(--light-sietch);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid var(--primary-sand);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--primary-sand);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--secondary-spice);
            padding-bottom: 0.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
        }
        .friend-links a {
            color: var(--light-sietch);
            background-color: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid rgba(212, 180, 131, 0.3);
        }
        .friend-links a:hover {
            background-color: rgba(212, 180, 131, 0.2);
            border-color: var(--primary-sand);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 180, 131, 0.3);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
            .nav-links {
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-fremen);
                padding: 1.5rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.8rem 0;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                justify-content: space-between;
                margin-top: 1rem;
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            article { padding: 1.5rem; }
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            h2 { font-size: 1.6rem; }
            .my-logo { font-size: 2rem; }
        }
