:root {
            --primary-red: #d20a0a;
            --dark-bg: #1a1a1a;
            --medium-bg: #2a2a2a;
            --light-text: #f0f0f0;
            --gold-accent: #ffd700;
            --blood-red: #8b0000;
            --section-padding: 2rem;
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--light-text);
            background-color: var(--dark-bg);
            max-width: 100%;
            overflow-x: hidden;
        }
        .header-container {
            background: linear-gradient(to right, #000, var(--blood-red));
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.7);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--gold-accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 var(--primary-red), 6px 6px 0 rgba(0,0,0,0.5);
            transition: all var(--transition-speed);
        }
        .logo:hover {
            color: white;
            text-shadow: 3px 3px 0 var(--gold-accent), 6px 6px 0 rgba(210,10,10,0.7);
            transform: scale(1.03);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold-accent);
            color: var(--gold-accent);
            font-size: 1.5rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            border-radius: 4px;
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all var(--transition-speed);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background-color: #2a2a2a;
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid #444;
        }
        .breadcrumb a {
            color: var(--gold-accent);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .page-title {
            text-align: center;
            padding: 2.5rem 1rem;
            background: linear-gradient(135deg, rgba(210,10,10,0.1) 0%, rgba(0,0,0,0.7) 100%);
            border-bottom: 3px solid var(--primary-red);
            margin-bottom: 2rem;
        }
        .page-title h1 {
            font-size: 2.8rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .page-title .subtitle {
            font-size: 1.2rem;
            color: var(--gold-accent);
            max-width: 800px;
            margin: 0 auto;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .feature-box {
            background: var(--medium-bg);
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-red);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(210,10,10,0.2);
        }
        .feature-box h3 {
            color: var(--gold-accent);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input {
            padding: 0.8rem;
            background: #333;
            border: 1px solid #555;
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 2px rgba(210,10,10,0.3);
        }
        .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to bottom, var(--primary-red), var(--blood-red));
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-speed);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #e00, #a00);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(210,10,10,0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--gold-accent);
        }
        .roster-section {
            margin: 3rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            color: white;
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            display: inline-block;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .character-card {
            background: linear-gradient(145deg, #2a2a2a, #222);
            border-radius: 8px;
            overflow: hidden;
            transition: all var(--transition-speed);
            border: 1px solid #444;
        }
        .character-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(210,10,10,0.3);
            border-color: var(--primary-red);
        }
        .character-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-red);
        }
        .character-info {
            padding: 1.2rem;
        }
        .character-name {
            color: var(--gold-accent);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .character-origin {
            color: #aaa;
            font-style: italic;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }
        .character-desc {
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .content-section {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(42,42,42,0.7);
            border-radius: 8px;
            border-left: 4px solid var(--gold-accent);
        }
        .content-section h2 {
            color: var(--gold-accent);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .content-section h3 {
            color: #fff;
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .highlight {
            background-color: rgba(210,10,10,0.1);
            border-left: 3px solid var(--primary-red);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .tip-box {
            background-color: rgba(255,215,0,0.1);
            border: 1px solid var(--gold-accent);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }
        .tip-box h4 {
            color: var(--gold-accent);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            padding: 2rem;
            background-color: #222;
            border-top: 2px solid var(--primary-red);
            border-bottom: 2px solid #444;
        }
        .web-link {
            background: #2a2a2a;
            padding: 0.8rem;
            border-radius: 4px;
            transition: all var(--transition-speed);
        }
        .web-link:hover {
            background: #333;
            transform: translateX(5px);
        }
        .web-link a {
            color: #ccc;
            text-decoration: none;
            display: block;
        }
        .web-link a:hover {
            color: var(--gold-accent);
        }
        .footer {
            padding: 2.5rem 2rem;
            background-color: #111;
            text-align: center;
            color: #888;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .footer-links a:hover {
            color: var(--gold-accent);
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1.5rem;
            }
            .main-nav {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .page-title h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            .content-section {
                padding: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .page-title {
                padding: 1.5rem 1rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .mk-symbol {
            color: var(--primary-red);
            font-weight: bold;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-gold { color: var(--gold-accent); }
        .text-red { color: var(--primary-red); }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .pt-2 { padding-top: 2rem; }
