* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d0d0d;
            --primary-red: #8b0000;
            --primary-gold: #d4af37;
            --primary-gray: #2c2c2c;
            --secondary-gray: #4a4a4a;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--primary-gray), var(--primary-dark));
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
            font-family: 'Times New Roman', serif;
        }
        .my-logo span {
            color: var(--primary-red);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .search-box {
            display: flex;
            background: var(--secondary-gray);
            border-radius: 30px;
            overflow: hidden;
            padding: 5px;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: var(--text-light);
            min-width: 250px;
            outline: none;
        }
        .search-box button {
            background: var(--primary-red);
            border: none;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 30px;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a00;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-nav {
            background-color: var(--primary-gray);
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            display: block;
            padding: 18px 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            background-color: var(--primary-red);
            text-decoration: none;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--primary-gray);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 25px;
            margin-bottom: 35px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: 'Times New Roman', serif;
        }
        .meta-info {
            color: var(--text-dim);
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        .meta-info i {
            margin-right: 8px;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--text-light);
            background: rgba(139, 0, 0, 0.1);
            padding: 25px;
            border-left: 5px solid var(--primary-red);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        h2, h3, h4 {
            color: var(--primary-gold);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            font-family: 'Times New Roman', serif;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 1px solid var(--secondary-gray);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid var(--primary-gold);
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background: var(--secondary-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.8);
        }
        .character-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-red);
        }
        .character-info {
            padding: 20px;
        }
        .character-info h4 {
            margin-top: 0;
            color: white;
        }
        .actor {
            color: var(--text-dim);
            font-style: italic;
            margin-bottom: 10px;
        }
        .inline-links {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .inline-links a {
            background: var(--primary-red);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .inline-links a:hover {
            background: #a00;
            text-decoration: none;
        }
        img.featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary-gold);
        }
        aside {
            background: var(--primary-gray);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--secondary-gray);
        }
        .widget-links a {
            display: block;
            padding: 8px 5px;
            border-radius: 5px;
        }
        .widget-links a:hover {
            background: rgba(139,0,0,0.2);
            padding-left: 15px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .interaction-section {
            background: var(--primary-gray);
            border-radius: 12px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: var(--shadow);
        }
        .interaction-section h2 {
            text-align: center;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-dim);
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: var(--secondary-gray);
            border: 1px solid #555;
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-red), #a00);
            color: white;
            border: none;
            padding: 18px 35px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
            letter-spacing: 1px;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #a00, var(--primary-red));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.4);
        }
        .form-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .site-footer {
            background: var(--primary-gray);
            border-top: 5px solid var(--primary-red);
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .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-gold);
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.1);
            padding-left: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--secondary-gray);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box input {
                min-width: 200px;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -60px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li {
                width: 100%;
                text-align: center;
            }
            .main-nav {
                margin-top: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            article, .interaction-section {
                padding: 25px;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
        }
