        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-sand: #d4a574;
            --deep-spice: #9c6c3c;
            --arrakis-orange: #c84b0d;
            --fremen-blue: #1e5f8b;
            --dark-desert: #2d2218;
            --light-sand: #f5e8d0;
            --shadow: rgba(45, 34, 24, 0.2);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fefcf8;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--fremen-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--arrakis-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark-desert);
            color: var(--light-sand);
            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.2rem;
            font-weight: 800;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover {
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light-sand);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary-sand);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-sand);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-sand);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light-sand);
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--deep-spice);
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(rgba(45, 34, 24, 0.85), rgba(45, 34, 24, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--primary-sand);
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #f0f0f0;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--arrakis-orange);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #a83c0a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: var(--dark-desert);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-sand);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--deep-spice);
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--arrakis-orange);
            font-weight: 700;
        }
        .article-content em {
            color: var(--deep-spice);
            font-style: italic;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: var(--light-sand);
            color: #555;
        }
        .link-list {
            background: var(--light-sand);
            padding: 1.5rem;
            border-left: 5px solid var(--fremen-blue);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list ul {
            list-style: square inside;
            padding-left: 1rem;
        }
        .link-list li {
            margin-bottom: 0.8rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--deep-spice);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-sand);
        }
        .rating-widget, .comment-form {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background-color: var(--fremen-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background-color: #154a6e;
        }
        .update-info {
            background-color: #e8f4fc;
            padding: 1rem;
            border-radius: 6px;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: #555;
            border-left: 4px solid var(--fremen-blue);
        }
        .site-footer {
            background-color: var(--dark-desert);
            color: var(--light-sand);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-sand);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark-desert);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
