:root {
            --primary-dark: #1a2a3a;
            --primary-blue: #2c3e50;
            --accent-gold: #f1c40f;
            --accent-teal: #1abc9c;
            --text-light: #ecf0f1;
            --text-gray: #bdc3c7;
            --bg-section: #2c3e50;
            --border-color: #34495e;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1720;
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-blue));
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-teal);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(241, 196, 15, 0.15);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 42, 58, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:last-child {
            color: var(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(rgba(26, 42, 58, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: 12px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .search-container {
            max-width: 700px;
            margin: 2rem auto 3rem;
            background: var(--bg-section);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            background: #1a252f;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 2rem;
            background: var(--accent-teal);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #16a085;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-section);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--accent-gold);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent-teal);
            font-size: 2.2rem;
        }
        h3 {
            color: var(--accent-teal);
            margin: 2rem 0 1rem;
            font-size: 1.7rem;
        }
        h4 {
            color: var(--text-gray);
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(241, 196, 15, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .char-card {
            background: #1a252f;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .char-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
            border-color: var(--accent-gold);
        }
        .char-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 2px solid var(--accent-teal);
        }
        .char-card h4 {
            padding: 1rem;
            margin: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--bg-section);
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .rating-widget input[type="radio"] {
            display: none;
        }
        .rating-widget label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget input:checked ~ label,
        .rating-widget label:hover,
        .rating-widget label:hover ~ label {
            color: var(--accent-gold);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: #1a252f;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: var(--accent-teal);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #16a085;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-gray);
            font-size: 0.9rem;
            background: var(--primary-dark);
        }
        .footer-nav {
            margin-bottom: 1.5rem;
        }
        .footer-nav a {
            margin: 0 1rem;
            color: var(--text-gray);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-blue);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .content-layout {
                gap: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
