:root {
            --primary-red: #c00a1e;
            --primary-blue: #1e3a8a;
            --accent-yellow: #fbbf24;
            --dark-bg: #111827;
            --light-bg: #f9fafb;
            --text-dark: #1f2937;
            --text-light: #f3f4f6;
            --gray-border: #d1d5db;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-blue);
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), #2d3748);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-light);
        }
        .breadcrumb {
            background-color: #e5e7eb;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb a {
            color: var(--text-dark);
        }
        .breadcrumb a:hover {
            color: var(--primary-red);
        }
        .search-container {
            max-width: 1280px;
            margin: 1.5rem auto;
            padding: 0 2rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--gray-border);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: var(--primary-blue);
        }
        .search-form button {
            background: linear-gradient(to right, var(--primary-red), #dc2626);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .content-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1 {
            color: var(--dark-bg);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--gray-border);
        }
        h3 {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--text-dark);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--primary-blue);
            background-color: #eff6ff;
            padding: 1.2rem;
            border-left: 4px solid var(--primary-blue);
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 1px solid var(--accent-yellow);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .character-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
            outline: 1px solid var(--gray-border);
        }
        .combo-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .combo-table th, .combo-table td {
            border: 1px solid var(--gray-border);
            padding: 0.8rem;
            text-align: left;
        }
        .combo-table th {
            background-color: var(--primary-blue);
            color: white;
        }
        .combo-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .link-list {
            background-color: #f1f5f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h4 {
            margin-top: 0;
        }
        .link-list ul {
            list-style-position: inside;
            color: var(--primary-red);
        }
        .link-list li {
            margin-bottom: 0.5rem;
        }
        sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .stats-card, .update-card, .rating-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .stats-card h3, .update-card h3, .rating-widget h3 {
            margin-top: 0;
            color: var(--dark-bg);
            font-size: 1.3rem;
        }
        .stats-list {
            list-style: none;
        }
        .stats-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
        }
        .stats-list li:last-child {
            border-bottom: none;
        }
        .star-rating {
            color: var(--accent-yellow);
            font-size: 1.5rem;
            margin: 1rem 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--gray-border);
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            background: linear-gradient(to right, var(--primary-blue), #3730a3);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
            width: 100%;
        }
        .rating-form button:hover, .comment-form button:hover {
            opacity: 0.9;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        friend-link {
            display: block;
            background: #1f2937;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-red);
        }
        friend-link a {
            color: var(--text-light);
            font-weight: 600;
        }
        friend-link a:hover {
            color: var(--accent-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #374151;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, .stats-card, .update-card, .rating-widget {
                padding: 1.5rem;
            }
            .content-wrapper {
                padding: 1rem;
            }
        }
