:root {
            --primary-blue: #007bff;
            --secondary-orange: #fd7e14;
            --wiki-bg: #f8f9fa;
            --wiki-border: #a7d7f9;
            --text-primary: #202122;
            --text-secondary: #54595d;
            --link-blue: #3366cc;
            --focus-outline: #2a4b8d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--wiki-bg);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--link-blue);
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        button {
            cursor: pointer;
            min-height: 44px;
            min-width: 44px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        header {
            background-color: white;
            border-bottom: 1px solid var(--wiki-border);
            padding: 15px 0;
            margin-bottom: 25px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none !important;
        }
        .my-logo:hover {
            text-decoration: none !important;
            opacity: 0.9;
        }
        nav {
            flex-grow: 1;
            margin-left: 30px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
            justify-content: flex-end;
        }
        .nav-links a {
            padding: 12px 16px;
            font-weight: 500;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .nav-links a:hover {
            background-color: #e7f1ff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-primary);
        }
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                align-items: stretch;
            }
            nav {
                margin-left: 0;
                margin-top: 15px;
                display: none;
            }
            .nav-links {
                flex-direction: column;
                gap: 10px;
            }
            .nav-links a {
                display: block;
                text-align: center;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-active {
                display: block;
            }
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            border-bottom: 2px solid var(--wiki-border);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
            padding-bottom: 5px;
            border-bottom: 1px solid #eaeaea;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--text-secondary);
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.25rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        .lead {
            font-size: 1.25rem;
            color: var(--text-secondary);
            font-weight: 300;
            margin-bottom: 2rem;
        }
        ul, ol {
            margin-bottom: 1.2rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background-color: white;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s, transform 0.2s;
            text-decoration: none;
            min-height: 44px;
        }
        .btn:hover {
            background-color: #0056b3;
            text-decoration: none;
            color: white;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: #6c757d;
        }
        .btn-secondary:hover {
            background-color: #545b62;
        }
        .search-box {
            display: flex;
            margin-bottom: 30px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 25px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            font-weight: 600;
        }
        .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid var(--primary-blue);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffc107;
            margin: 10px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .social-share {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: opacity 0.3s;
        }
        .social-fb { background-color: #1877f2; }
        .social-tw { background-color: #1da1f2; }
        .social-rd { background-color: #ff4500; }
        .social-wa { background-color: #25d366; }
        .social-btn:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 999;
            display: none;
        }
        .back-to-top:hover {
            background-color: #0056b3;
        }
        .infobox {
            border: 1px solid var(--wiki-border);
            background-color: #f8f9fa;
            padding: 20px;
            margin-bottom: 25px;
            border-radius: 6px;
        }
        .infobox-title {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        .infobox-img {
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
        }
        .infobox-row {
            display: flex;
            padding: 8px 0;
            border-bottom: 1px solid #eaeaea;
        }
        .infobox-label {
            font-weight: 600;
            min-width: 120px;
        }
        .update-log {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }
        .update-date {
            font-weight: 700;
            color: #856404;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-radius: 8px 8px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: #34495e;
            margin-bottom: 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: #3d566e;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 4px;
            border-radius: 3px;
        }
        .note {
            background-color: #e7f3ff;
            padding: 15px;
            border-left: 4px solid var(--primary-blue);
            margin: 20px 0;
            border-radius: 4px;
        }
        .warning {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
            border-radius: 4px;
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            article, aside { padding: 20px; }
            .social-share { justify-content: center; }
        }
