:root {
            --primary-sand: #d4a574;
            --secondary-spice: #b3541e;
            --deep-desert: #8b4513;
            --arrakis-night: #2c1810;
            --fremen-blue: #3a7ca5;
            --text-light: #f5e9d8;
            --text-dark: #321d0f;
            --shadow: 0 4px 12px rgba(43, 24, 16, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #fdf6e3 0%, #f5e9d8 100%);
            min-height: 100vh;
        }
        .site-header {
            background: linear-gradient(to right, var(--arrakis-night), var(--deep-desert));
            color: var(--text-light);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--text-light);
            transform: scale(1.05);
        }
        .my-logo span {
            color: var(--fremen-blue);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--secondary-spice);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 5%;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb a {
            color: var(--primary-sand);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 0.5rem;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 165, 116, 0.3);
        }
        h1 {
            color: var(--deep-desert);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-sand);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--secondary-spice);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
        }
        h3 {
            color: var(--deep-desert);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--arrakis-night);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: var(--secondary-spice);
            font-weight: 700;
        }
        em {
            color: var(--deep-desert);
            font-style: italic;
        }
        .content-highlight {
            background: linear-gradient(90deg, rgba(212,165,116,0.1) 0%, rgba(179,84,30,0.05) 100%);
            border-left: 4px solid var(--secondary-spice);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .data-table th {
            background-color: var(--deep-desert);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .data-table tr:hover {
            background-color: rgba(212, 165, 116, 0.1);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .search-box {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid var(--primary-sand);
            border-radius: 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-spice);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--deep-desert);
        }
        .user-rating {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .stars {
            color: var(--primary-sand);
            font-size: 1.8rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin-right: 0.3rem;
            transition: var(--transition);
        }
        .stars span:hover,
        .stars span.active {
            color: var(--secondary-spice);
        }
        .comment-form {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--primary-sand);
            border-radius: 4px;
            margin: 1rem 0;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--fremen-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--deep-desert);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary-spice);
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-sand);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            color: var(--deep-desert);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .related-links a:hover {
            color: var(--secondary-spice);
            padding-left: 0.5rem;
        }
        .site-footer {
            background: linear-gradient(to right, var(--arrakis-night), var(--deep-desert));
            color: var(--text-light);
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--primary-sand);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .main-nav ul {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--deep-desert);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
            }
            .main-nav ul.active {
                display: flex;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 2rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media print {
            .site-header, .sidebar, .site-footer,
            .search-box, .user-rating, .comment-form {
                display: none;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
            body {
                background: white;
                color: black;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
