:root {
            --primary-sand: #e6d3a7;
            --deep-spice: #b35412;
            --arrakis-blue: #1e5f8b;
            --shadow-dark: #1a1a1a;
            --desert-light: #f5f1e6;
            --fremen-stillsuit: #2d5016;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--shadow-dark);
            color: var(--desert-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-sand);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--deep-spice);
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(26,26,26,0.95), rgba(26,26,26,0.8));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--deep-spice);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-sand);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(229, 211, 167, 0.5);
            font-family: 'Times New Roman', serif;
        }
        .my-logo:hover {
            color: var(--deep-spice);
            text-shadow: 0 0 15px rgba(179, 84, 18, 0.8);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: var(--deep-spice);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-sand);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a::after {
            content: " › ";
            margin: 0 8px;
            color: var(--deep-spice);
        }
        .breadcrumb a:last-child::after {
            content: "";
        }
        .search-container {
            margin: 30px 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--deep-spice);
            border-right: none;
            border-radius: 50px 0 0 50px;
            background: var(--desert-light);
            color: var(--shadow-dark);
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 30px;
            background: var(--deep-spice);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #8a3a0a;
        }
        main {
            padding: 40px 0;
            background: linear-gradient(180deg, var(--shadow-dark) 0%, #2a2a2a 100%);
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 3px double var(--deep-spice);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-sand);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .article-meta {
            color: #bbb;
            font-style: italic;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--primary-sand);
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--deep-spice);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--arrakis-blue);
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--deep-spice);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(179,84,18,0.1) 0%, transparent 100%);
            padding: 20px;
            border-left: 4px solid var(--deep-spice);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .cast-card {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(229, 211, 167, 0.2);
        }
        .cast-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(179, 84, 18, 0.3);
        }
        .cast-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 3px solid var(--deep-spice);
        }
        .cast-info {
            padding: 20px;
        }
        .cast-name {
            font-size: 1.5rem;
            color: var(--primary-sand);
            margin-bottom: 5px;
        }
        .cast-role {
            color: var(--arrakis-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .rating-section, .comments-section {
            background: rgba(40, 40, 40, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            border: 1px solid var(--deep-spice);
        }
        .rating-title, .comments-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary-sand);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star:hover ~ .star {
            color: #555;
        }
        .star-rating .star.active {
            color: gold;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-sand);
        }
        input, textarea, select {
            padding: 12px 15px;
            background: var(--desert-light);
            border: 1px solid var(--deep-spice);
            border-radius: 5px;
            color: var(--shadow-dark);
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--deep-spice), #8a3a0a);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            justify-self: start;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #8a3a0a, #6d2d08);
            box-shadow: 0 5px 15px rgba(179, 84, 18, 0.4);
        }
        footer {
            background-color: #111;
            padding: 50px 0 20px;
            border-top: 3px solid var(--deep-spice);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-sand);
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: var(--primary-sand);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background: rgba(229, 211, 167, 0.1);
            border-left: 3px solid var(--arrakis-blue);
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(30, 95, 139, 0.2);
            border-left-color: var(--deep-spice);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .cast-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--shadow-dark);
                flex-direction: column;
                transition: left 0.5s ease;
                padding: 30px;
                border-right: 2px solid var(--deep-spice);
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .header-container { position: relative; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.6rem; }
            .cast-grid { grid-template-columns: 1fr; }
            .rating-section, .comments-section { padding: 20px; }
        }
