:root {
            --primary-sand: #d4b483;
            --deep-spice: #b3541e;
            --arrakis-blue: #1a5276;
            --desert-night: #2c3e50;
            --fremen-white: #ecf0f1;
            --sand-dune: #edbb99;
            --shadow: rgba(44, 62, 80, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf6e3;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--deep-spice);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--arrakis-blue);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--desert-night), var(--arrakis-blue));
            color: var(--fremen-white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--primary-sand), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--fremen-white);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--fremen-white);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--desert-night);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--fremen-white);
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: var(--sand-dune);
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--deep-spice);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--arrakis-blue);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-area {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
        }
        .sidebar {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: var(--desert-night);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--deep-spice);
            padding-left: 1rem;
        }
        h2 {
            color: var(--arrakis-blue);
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-sand);
        }
        h3 {
            color: var(--deep-spice);
            font-size: 1.6rem;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--desert-night);
            background-color: rgba(212, 180, 131, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            border-left: 4px solid var(--deep-spice);
        }
        .highlight {
            background-color: rgba(179, 84, 30, 0.08);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--sand-dune);
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 5px solid var(--primary-sand);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .interactive-box {
            background: linear-gradient(135deg, var(--desert-night), var(--arrakis-blue));
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .interactive-box h3 {
            color: var(--primary-sand);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--desert-night);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--deep-spice);
            box-shadow: 0 0 0 3px rgba(179, 84, 30, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--deep-spice), var(--arrakis-blue));
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(179, 84, 30, 0.3);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .site-footer {
            background-color: var(--desert-night);
            color: var(--fremen-white);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--primary-sand);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .friend-links a {
            color: var(--sand-dune);
        }
        .friend-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .copyright a {
            color: var(--primary-sand);
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .article-area, .sidebar { padding: 1.5rem; }
            .my-logo { font-size: 2rem; }
        }
        .emoji { font-size: 1.2em; }
        .keyword { font-weight: 700; color: var(--deep-spice); }
        .tag {
            display: inline-block;
            background-color: rgba(26, 82, 118, 0.1);
            color: var(--arrakis-blue);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
