:root {
            --primary-sand: #d4b483;
            --secondary-spice: #c17d11;
            --dark-dune: #3c2f1e;
            --deep-space: #0f0e17;
            --fremen-blue: #1e88a8;
            --harkonnen-red: #8b0000;
            --atriedes-green: #2e8b57;
            --text-light: #f5f1e8;
            --text-muted: #b8a98a;
            --container-padding: clamp(1rem, 5vw, 3rem);
            --border-radius: 8px;
            --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-light);
            background-color: var(--deep-space);
            background-image: linear-gradient(to bottom, var(--deep-space) 0%, var(--dark-dune) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-spice);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: rgba(15, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--primary-sand);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem var(--container-padding);
        }
        .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.2rem;
            font-weight: bold;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: var(--secondary-spice);
        }
        .nav-primary {
            display: flex;
            gap: 2rem;
        }
        .nav-primary a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-primary a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-spice);
            transition: width 0.3s ease;
        }
        .nav-primary a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-sand);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem var(--container-padding);
            background-color: rgba(60, 47, 30, 0.5);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a:not(:last-child)::after {
            content: '›';
            margin: 0 0.5rem;
            color: var(--text-muted);
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 var(--container-padding);
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(60, 47, 30, 0.3);
            border-radius: var(--border-radius);
            padding: 3rem;
            border: 1px solid rgba(212, 180, 131, 0.2);
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 2px solid var(--primary-sand);
            padding-bottom: 2rem;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--primary-sand);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-spice);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(193, 125, 17, 0.4);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--fremen-blue);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--atriedes-green);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
            background: rgba(193, 125, 17, 0.1);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-spice);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        strong {
            color: var(--primary-sand);
            font-weight: 700;
        }
        em {
            color: var(--text-muted);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 136, 168, 0.1) 0%, rgba(60, 47, 30, 0.3) 100%);
            border: 1px solid var(--fremen-blue);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary-sand);
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(60, 47, 30, 0.5);
            border-radius: var(--border-radius);
        }
        .link-list li {
            flex: 1 1 calc(50% - 1rem);
            min-width: 200px;
        }
        .link-list a {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(212, 180, 131, 0.1);
            border-radius: 4px;
            border: 1px solid transparent;
        }
        .link-list a:hover {
            background: rgba(193, 125, 17, 0.2);
            border-color: var(--secondary-spice);
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(60, 47, 30, 0.3);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid rgba(212, 180, 131, 0.2);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-sand);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background: rgba(15, 14, 23, 0.7);
            border: 1px solid var(--primary-sand);
            border-radius: 4px;
            color: var(--text-light);
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-spice);
            box-shadow: 0 0 0 2px rgba(193, 125, 17, 0.3);
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, var(--primary-sand), var(--secondary-spice));
            color: var(--dark-dune);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(193, 125, 17, 0.4);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--primary-sand);
        }
        .stars input:checked ~ label {
            color: var(--secondary-spice);
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            padding: 1rem;
            border-top: 1px solid rgba(212, 180, 131, 0.2);
            margin-top: 2rem;
        }
        .site-footer {
            background-color: var(--dark-dune);
            padding: 3rem var(--container-padding) 1.5rem;
            margin-top: 4rem;
            border-top: 1px solid var(--primary-sand);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(212, 180, 131, 0.05);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(212, 180, 131, 0.2);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-primary {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(15, 14, 23, 0.98);
                flex-direction: column;
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            .nav-primary.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-primary a {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(212, 180, 131, 0.1);
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .link-list li {
                flex: 1 1 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
