:root {
            --primary-sand: #d4b483;
            --deep-spice: #b3542a;
            --arrakis-sky: #2a3b4d;
            --fremen-blue: #5d8aa8;
            --desert-stone: #e7dfd5;
            --shadow-dark: #1a1a1a;
            --text-light: #f5f1eb;
            --warning-red: #c84c32;
            --success-green: #4a7c59;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: var(--text-light);
            line-height: 1.7;
            background-image: linear-gradient(to bottom, #0a0e12 0%, #1c252f 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--fremen-blue);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--primary-sand);
            text-shadow: 0 0 8px rgba(212, 180, 131, 0.4);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 14, 18, 0.95);
            border-bottom: 1px solid var(--deep-spice);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-sand), var(--deep-spice));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            background: linear-gradient(90deg, var(--fremen-blue), var(--primary-sand));
            -webkit-background-clip: text;
            background-clip: text;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-sand);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-sand);
        }
        .breadcrumb {
            padding: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: var(--desert-stone);
        }
        .breadcrumb a {
            color: var(--desert-stone);
        }
        .breadcrumb a:hover {
            color: var(--primary-sand);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(28, 37, 47, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(212, 180, 131, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            color: var(--primary-sand);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--deep-spice);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--fremen-blue);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--deep-spice);
        }
        h3 {
            color: var(--desert-stone);
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--primary-sand);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary-sand);
            font-weight: 700;
        }
        em {
            color: var(--desert-stone);
            font-style: italic;
        }
        .intro-emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
            vertical-align: middle;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--deep-spice);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--desert-stone);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .content-block {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed rgba(212, 180, 131, 0.2);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(42, 59, 77, 0.5);
            border-radius: 8px;
            padding: 1.5rem;
            border-top: 4px solid var(--primary-sand);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-sand);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--desert-stone);
        }
        .interactive-section {
            background: rgba(10, 14, 18, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--deep-spice);
        }
        .section-title {
            color: var(--primary-sand);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: var(--deep-spice);
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            margin: 0.5rem 0 1.2rem;
            border-radius: 6px;
            border: 1px solid var(--arrakis-sky);
            background-color: rgba(28, 37, 47, 0.9);
            color: var(--text-light);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-sand);
            box-shadow: 0 0 0 2px rgba(212, 180, 131, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--deep-spice), var(--arrakis-sky));
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--primary-sand), var(--deep-spice));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(179, 84, 42, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: var(--desert-stone);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--primary-sand);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: var(--desert-stone);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(212, 180, 131, 0.2);
        }
        footer {
            background-color: var(--shadow-dark);
            color: var(--desert-stone);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--deep-spice);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-sand);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
            padding: 0.5rem;
            background: rgba(42, 59, 77, 0.3);
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 180, 131, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .nav-links { gap: 1.5rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                flex: 1;
            }
            nav {
                order: 2;
                flex-basis: 100%;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
                background: rgba(10, 14, 18, 0.98);
                border-radius: 8px;
                padding: 1rem;
            }
            .nav-links li {
                border-bottom: 1px solid rgba(212, 180, 131, 0.1);
                padding: 0.8rem 0;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .container { padding: 0 15px; }
            .featured-image { margin: 1.5rem 0; }
        }
