:root {
        --primary-dark: #1a1a1a;
        --secondary-rust: #b7410e;
        --accent-metal: #7a7a7a;
        --light-bg: #f5f5f5;
        --text-light: #e8e6e3;
        --text-dark: #333;
        --border-color: #444;
        --card-bg: #252525;
        --transition: all 0.3s ease;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background-color: var(--primary-dark);
        color: var(--text-light);
        line-height: 1.7;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .site-header {
        background: linear-gradient(to bottom, #000, var(--primary-dark));
        padding: 1rem 2rem;
        border-bottom: 3px solid var(--secondary-rust);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    .my-logo {
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--secondary-rust);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-family: 'Impact', 'Arial Black', sans-serif;
        text-shadow: 2px 2px 4px #000;
        transition: var(--transition);
    }
    .my-logo:hover {
        color: #ff8c00;
        transform: scale(1.05);
    }
    .breadcrumb {
        margin: 1rem 0;
        font-size: 0.9rem;
        color: #aaa;
        padding-left: 2rem;
    }
    .breadcrumb a {
        color: var(--secondary-rust);
        text-decoration: none;
    }
    .breadcrumb a:hover {
        text-decoration: underline;
    }
    .main-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    .nav-links {
        display: flex;
        gap: 1.8rem;
        list-style: none;
    }
    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.5rem 0;
        position: relative;
        transition: var(--transition);
    }
    .nav-links a:hover {
        color: var(--secondary-rust);
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-rust);
        transition: width 0.3s ease;
    }
    .nav-links a:hover::after {
        width: 100%;
    }
    .hamburger {
        display: none;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
    }
    .search-container {
        margin: 1rem auto 2rem;
        max-width: 800px;
        padding: 0 2rem;
    }
    .search-form {
        display: flex;
        border-radius: 50px;
        overflow: hidden;
        border: 2px solid var(--border-color);
        background: var(--card-bg);
        transition: var(--transition);
    }
    .search-form:focus-within {
        border-color: var(--secondary-rust);
        box-shadow: 0 0 15px rgba(183, 65, 14, 0.3);
    }
    .search-input {
        flex-grow: 1;
        padding: 1rem 1.5rem;
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 1.1rem;
        outline: none;
    }
    .search-button {
        background-color: var(--secondary-rust);
        color: white;
        border: none;
        padding: 0 2rem;
        cursor: pointer;
        font-weight: bold;
        transition: var(--transition);
    }
    .search-button:hover {
        background-color: #d35400;
    }
    .main-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    article {
        background-color: var(--card-bg);
        border-radius: 10px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid var(--border-color);
    }
    .article-header {
        margin-bottom: 3rem;
        border-bottom: 2px solid var(--secondary-rust);
        padding-bottom: 1.5rem;
    }
    h1 {
        font-size: 3.2rem;
        color: var(--secondary-rust);
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px #000;
    }
    .article-meta {
        display: flex;
        justify-content: space-between;
        color: #aaa;
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    h2 {
        font-size: 2.2rem;
        color: #f0f0f0;
        margin: 3rem 0 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }
    h2::after {
        content: '⚔️';
        position: absolute;
        right: 0;
        bottom: -5px;
    }
    h3 {
        font-size: 1.8rem;
        color: #ddd;
        margin: 2.5rem 0 1rem;
    }
    h4 {
        font-size: 1.4rem;
        color: #ccc;
        margin: 2rem 0 0.8rem;
    }
    p {
        margin-bottom: 1.8rem;
        font-size: 1.15rem;
        text-align: justify;
        hyphens: auto;
    }
    .highlight {
        background: linear-gradient(90deg, rgba(183,65,14,0.2) 0%, transparent 100%);
        border-left: 4px solid var(--secondary-rust);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    .game-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 8px;
        margin: 2rem auto;
        display: block;
        border: 2px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        transition: var(--transition);
    }
    .game-image:hover {
        transform: scale(1.01);
        border-color: var(--secondary-rust);
    }
    .content-link {
        color: #ff8c00;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #ff8c00;
        transition: var(--transition);
    }
    .content-link:hover {
        color: #ffaa33;
        border-bottom-style: solid;
    }
    em {
        color: #ffcc99;
        font-style: italic;
    }
    strong {
        color: #fff;
        font-weight: 700;
    }
    .stat-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    .stat-card {
        background: rgba(0,0,0,0.3);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    .stat-card:hover {
        border-color: var(--secondary-rust);
        transform: translateY(-5px);
    }
    .stat-card h4 {
        margin-top: 0;
        color: var(--secondary-rust);
    }
    aside {
        background-color: var(--card-bg);
        border-radius: 10px;
        padding: 2rem;
        height: fit-content;
        border: 1px solid var(--border-color);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .rating-widget, .comment-widget {
        margin-bottom: 2.5rem;
    }
    .widget-title {
        font-size: 1.5rem;
        color: var(--secondary-rust);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .stars {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    .star {
        color: #444;
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
    }
    .star:hover,
    .star.active {
        color: gold;
        transform: scale(1.2);
    }
    .rating-form, .comment-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    textarea, select, .form-input {
        padding: 1rem;
        background: rgba(0,0,0,0.3);
        border: 1px solid var(--border-color);
        border-radius: 5px;
        color: var(--text-light);
        font-size: 1rem;
        resize: vertical;
        min-height: 120px;
        outline: none;
        transition: var(--transition);
    }
    textarea:focus, select:focus, .form-input:focus {
        border-color: var(--secondary-rust);
        box-shadow: 0 0 10px rgba(183, 65, 14, 0.3);
    }
    .submit-btn {
        background-color: var(--secondary-rust);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 5px;
        font-weight: bold;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .submit-btn:hover {
        background-color: #d35400;
        transform: translateY(-3px);
        box-shadow: 0 7px 14px rgba(183, 65, 14, 0.4);
    }
    .toc {
        margin-top: 2rem;
    }
    .toc ul {
        list-style: none;
        padding-left: 1rem;
    }
    .toc li {
        margin-bottom: 0.8rem;
        position: relative;
    }
    .toc a {
        color: #ccc;
        text-decoration: none;
        transition: var(--transition);
        display: block;
        padding: 0.3rem 0;
    }
    .toc a:hover {
        color: var(--secondary-rust);
        transform: translateX(5px);
    }
    footer {
        background: #000;
        margin-top: 5rem;
        padding: 3rem 2rem 2rem;
        border-top: 3px solid var(--secondary-rust);
    }
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
    .footer-section h3 {
        color: var(--secondary-rust);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }
    .footer-links {
        list-style: none;
    }
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: var(--transition);
    }
    .footer-links a:hover {
        color: var(--secondary-rust);
        padding-left: 5px;
    }
    friend-link {
        display: block;
        background: rgba(183, 65, 14, 0.1);
        padding: 1rem;
        border-radius: 5px;
        margin: 1rem 0;
        border-left: 3px solid var(--secondary-rust);
    }
    friend-link a {
        color: #ff8c00;
        font-weight: bold;
        text-decoration: none;
    }
    friend-link a:hover {
        text-decoration: underline;
    }
    .copyright {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #333;
        color: #777;
        font-size: 0.9rem;
    }
    @media (max-width: 1100px) {
        .main-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        aside {
            order: -1;
        }
    }
    @media (max-width: 768px) {
        .header-container {
            flex-wrap: wrap;
        }
        .hamburger {
            display: block;
        }
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
            gap: 1rem;
        }
        .nav-links.active {
            display: flex;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        article {
            padding: 1.5rem;
        }
        .main-container {
            padding: 1rem;
        }
        .search-container {
            padding: 0 1rem;
        }
        .breadcrumb {
            padding-left: 1rem;
        }
    }
    @media (max-width: 480px) {
        h1 {
            font-size: 2rem;
        }
        .site-header {
            padding: 1rem;
        }
        .article-meta {
            flex-direction: column;
        }
        .stat-box {
            grid-template-columns: 1fr;
        }
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    article, aside, .search-container {
        animation: fadeIn 0.8s ease-out;
    }
    @media print {
        .site-header, .search-container, aside, footer {
            display: none;
        }
        body {
            background: white;
            color: black;
        }
        article {
            box-shadow: none;
            border: none;
            padding: 0;
        }
        .content-link {
            color: black;
            text-decoration: underline;
        }
    }
