* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-sand: #d4a574;
            --deep-spice: #b87333;
            --arrakis-blue: #1e3a5f;
            --fremen-brown: #5d4037;
            --desert-white: #f5f1e8;
            --shadow-dark: #2c1810;
        }
        body {
            background-color: #0f0f0f;
            color: var(--desert-white);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--primary-sand);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--shadow-dark), rgba(44, 24, 16, 0.9));
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--deep-spice);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, var(--primary-sand), var(--desert-white));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #fff, var(--primary-sand));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-sand);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--desert-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(30, 58, 95, 0.3);
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--arrakis-blue);
        }
        .breadcrumb a {
            opacity: 0.9;
        }
        .breadcrumb a:hover {
            opacity: 1;
        }
        .hero-preview {
            background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
            box-shadow: inset 0 -10px 30px rgba(184, 115, 51, 0.2);
        }
        .hero-preview h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--desert-white);
            text-shadow: 3px 3px 6px var(--shadow-dark);
        }
        .hero-preview p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .search-module {
            max-width: 600px;
            margin: 2rem auto;
            background: rgba(30, 58, 95, 0.6);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--arrakis-blue);
        }
        .search-module h3 {
            margin-bottom: 1rem;
            color: var(--primary-sand);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 5px 0 0 5px;
            background: rgba(245, 241, 232, 0.1);
            color: var(--desert-white);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--deep-spice);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: var(--primary-sand);
        }
        .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: rgba(30, 58, 95, 0.05);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(184, 115, 51, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            color: var(--primary-sand);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--deep-spice);
        }
        .article-content h3 {
            color: #e6d3b6;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: #d0b894;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary-sand);
            font-weight: 700;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--deep-spice);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--deep-spice);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .interaction-box, .rating-module {
            background: rgba(44, 24, 16, 0.7);
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid var(--fremen-brown);
        }
        .interaction-box h3, .rating-module h3 {
            color: var(--primary-sand);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(245, 241, 232, 0.1);
            border: 1px solid var(--fremen-brown);
            border-radius: 5px;
            color: var(--desert-white);
            font-size: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: var(--arrakis-blue);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: #2a4a7a;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #444;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .submit-score {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, var(--deep-spice), var(--primary-sand));
            color: var(--shadow-dark);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-score:hover {
            opacity: 0.9;
        }
        .site-footer {
            background: var(--shadow-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--deep-spice);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-sand);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            background: rgba(184, 115, 51, 0.2);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--deep-spice);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--fremen-brown);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--shadow-dark);
                width: 100%;
                padding: 2rem;
                transition: left 0.5s ease;
                z-index: 999;
                border-top: 2px solid var(--deep-spice);
            }
            .main-nav.active {
                left: 0;
            }
            .hero-preview h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .footer-container {
                flex-direction: column;
            }
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2em;
        }
        .fade-in {
            animation: fadeIn 1.2s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
