:root {
            --primary-dark: #0a0a0f;
            --primary-red: #8b0000;
            --primary-gold: #daa520;
            --secondary-stone: #2f4f4f;
            --light-text: #f5f5f5;
            --dark-text: #222;
            --grey-bg: #1a1a1a;
            --border-gold: rgba(218, 165, 32, 0.4);
            --shadow-heavy: 0 5px 15px rgba(0, 0, 0, 0.7);
            --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --border-radius: 4px;
            --container-max: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--light-text);
            line-height: 1.6;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10,10,15,0.95), rgba(43, 10, 10, 0.9));
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-gold);
            box-shadow: var(--shadow-heavy);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo span {
            color: var(--primary-red);
            font-style: italic;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background-color: #111;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: #555;
        }
        .main-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;
            display: inline-block;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            max-width: var(--container-max);
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary-stone);
            border-right: none;
            background: #111;
            color: var(--light-text);
            font-size: 1rem;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        .search-box button {
            background: var(--secondary-stone);
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-red);
        }
        .main-content {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: var(--grey-bg);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--shadow-light);
            border: 1px solid #333;
        }
        h1, h2, h3, h4 {
            color: var(--primary-gold);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px double var(--primary-red);
            padding-bottom: 1rem;
            text-align: center;
            margin-top: 0;
        }
        h2 {
            font-size: 2.1rem;
            border-left: 5px solid var(--primary-red);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.7rem;
            color: #e6c068;
        }
        h4 {
            font-size: 1.4rem;
            color: #b0a07c;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ddd;
            font-style: italic;
            border-left: 4px solid var(--primary-gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(139,0,0,0.1), rgba(47,79,79,0.1));
            border-left: 5px solid var(--primary-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .cast-card {
            background: #222;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #444;
        }
        .cast-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.8);
            border-color: var(--primary-gold);
        }
        .cast-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-red);
        }
        .cast-info {
            padding: 1.5rem;
        }
        .cast-name {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }
        .character {
            color: #aaa;
            font-style: italic;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid var(--border-gold);
            box-shadow: var(--shadow-heavy);
        }
        .quote {
            font-size: 1.3rem;
            color: #e6c068;
            text-align: center;
            padding: 2rem;
            font-style: italic;
            background: rgba(47,79,79,0.2);
            border-radius: 8px;
            margin: 2.5rem 0;
            border-top: 2px solid var(--primary-gold);
            border-bottom: 2px solid var(--primary-gold);
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary-red);
            margin: 0 5px;
        }
        .sidebar {
            background: var(--grey-bg);
            padding: 1.8rem;
            border-radius: 8px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .sidebar ul {
            list-style: none;
            margin-top: 1.5rem;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar li::before {
            content: '▶';
            color: var(--primary-red);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .update-time {
            background: #111;
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #aaa;
            border: 1px dashed #444;
        }
        .user-interaction {
            background: var(--grey-bg);
            padding: 2.5rem;
            border-radius: 8px;
            margin: 3rem auto;
            max-width: 800px;
            border: 1px solid #444;
        }
        .user-interaction h2 {
            text-align: center;
            border: none;
            padding-left: 0;
        }
        .form-group {
            margin-bottom: 1.8rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            color: #ddd;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: #111;
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: var(--light-text);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-gold);
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-red), #a52a2a);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 2rem auto 0;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #9e0000, #8b0000);
            box-shadow: 0 0 15px rgba(139,0,0,0.6);
        }
        .site-footer {
            background: #0c0c14;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #444;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #aaa;
        }
        friend-link:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 100px);
                background: rgba(20, 10, 10, 0.98);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.5s ease;
                border-right: 3px solid var(--primary-red);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .cast-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            .header-container, .breadcrumb, .search-container, .main-content, .footer-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            article, .sidebar, .user-interaction {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.8rem;
            }
            .cast-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                border-radius: var(--border-radius);
                border-right: 2px solid var(--secondary-stone);
                margin-bottom: 0.5rem;
            }
            .search-box button {
                border-radius: var(--border-radius);
                padding: 1rem;
            }
        }
