        :root {
            --primary-color: #e10600;
            --secondary-color: #ffffff;
            --accent-color: #1e3a8a;
            --text-color: #333333;
            --light-gray: #f5f5f5;
            --medium-gray: #e5e5e5;
            --dark-gray: #666666;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f8f9fa;
        }
        .wiki-content {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-radius: 3px;
            padding: 20px;
        }
        .wiki-infobox {
            background: var(--light-gray);
            border: 1px solid var(--medium-gray);
            padding: 15px;
            margin: 0 0 20px 20px;
            float: right;
            width: 320px;
            border-radius: 3px;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }
        .wiki-table th, .wiki-table td {
            border: 1px solid var(--medium-gray);
            padding: 8px 12px;
            text-align: left;
        }
        .wiki-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        .wiki-category {
            color: var(--dark-gray);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 10px;
            border-top: 1px solid var(--medium-gray);
        }
        .wiki-reference {
            font-size: 0.85rem;
            color: var(--dark-gray);
            vertical-align: super;
            line-height: 0;
        }
        @media (max-width: 768px) {
            .wiki-infobox {
                float: none;
                width: 100%;
                margin: 0 0 20px 0;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-active {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        a:focus, button:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .star-rating {
            color: #FFD700;
            font-size: 1.2rem;
        }
        .social-share button {
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
        }
        .hamburger-line {
            transition: all 0.3s;
        }
        .hamburger-active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger-active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .hamburger-active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
