* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    :root {
        --primary-dark: #0a1f1f;
        --accent-red: #c22b2b;
        --accent-green: #2b8c2b;
        --text-light: #e0e0e0;
        --text-dim: #a0a0a0;
        --bg-card: #1a2a2a;
        --border-color: #2a3a3a;
    }
    body {
        background-color: var(--primary-dark);
        color: var(--text-light);
        line-height: 1.7;
        overflow-x: hidden;
    }
    a {
        color: var(--accent-green);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    a:hover {
        color: var(--accent-red);
        text-decoration: underline;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .site-header {
        background: linear-gradient(to bottom, #000000, var(--primary-dark));
        padding: 1.5rem 0;
        border-bottom: 3px solid var(--accent-red);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .my-logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--accent-red);
        text-shadow: 0 0 10px rgba(194, 43, 43, 0.5);
        letter-spacing: 2px;
    }
    .my-logo span {
        color: var(--text-light);
    }
    .breadcrumb {
        background-color: var(--bg-card);
        padding: 1rem;
        border-radius: 5px;
        margin: 1rem 0;
        font-size: 0.9rem;
    }
    .breadcrumb a {
        margin: 0 5px;
    }
    .main-nav {
        display: flex;
        gap: 2rem;
    }
    .main-nav a {
        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-red);
        transition: width 0.3s;
    }
    .main-nav a:hover::after {
        width: 100%;
    }
    .hamburger {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--text-light);
    }
    .search-container {
        margin: 2rem 0;
        background-color: var(--bg-card);
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
    }
    .search-form {
        display: flex;
        max-width: 600px;
        margin: 0 auto;
    }
    .search-input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: none;
        border-radius: 5px 0 0 5px;
        background-color: #2a3a3a;
        color: var(--text-light);
    }
    .search-button {
        padding: 0.8rem 1.5rem;
        background-color: var(--accent-green);
        color: white;
        border: none;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
    }
    .search-button:hover {
        background-color: var(--accent-red);
    }
    .article-header {
        text-align: center;
        padding: 3rem 0;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 3rem;
    }
    h1 {
        font-size: 3.2rem;
        color: var(--accent-red);
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px #000;
    }
    .article-meta {
        color: var(--text-dim);
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    .article-content {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    @media (max-width: 992px) {
        .article-content {
            grid-template-columns: 1fr;
        }
    }
    .main-article {
        background-color: var(--bg-card);
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    h2 {
        font-size: 2.2rem;
        color: var(--accent-green);
        margin: 2.5rem 0 1.2rem 0;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--border-color);
    }
    h3 {
        font-size: 1.7rem;
        color: var(--text-light);
        margin: 2rem 0 1rem 0;
    }
    h4 {
        font-size: 1.3rem;
        color: var(--text-dim);
        margin: 1.5rem 0 0.8rem 0;
    }
    p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    .highlight {
        background-color: rgba(194, 43, 43, 0.1);
        border-left: 4px solid var(--accent-red);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 5px 5px 0;
    }
    .game-image {
        width: 100%;
        border-radius: 10px;
        margin: 2rem 0;
        border: 3px solid var(--border-color);
        transition: transform 0.5s ease;
    }
    .game-image:hover {
        transform: scale(1.02);
    }
    .image-caption {
        text-align: center;
        font-style: italic;
        color: var(--text-dim);
        margin-top: -1.5rem;
        margin-bottom: 2rem;
    }
    .sidebar {
        background-color: var(--bg-card);
        padding: 1.5rem;
        border-radius: 15px;
        align-self: start;
        position: sticky;
        top: 120px;
    }
    .sidebar-widget {
        margin-bottom: 2rem;
    }
    .sidebar-title {
        font-size: 1.3rem;
        color: var(--accent-green);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    .related-links li {
        list-style: none;
        margin-bottom: 0.8rem;
        padding-left: 1.2rem;
        position: relative;
    }
    .related-links li::before {
        content: '🔗';
        position: absolute;
        left: 0;
    }
    .interactive-section {
        background-color: var(--bg-card);
        padding: 2rem;
        border-radius: 15px;
        margin: 3rem 0;
    }
    .rating-container, .comment-container {
        margin-bottom: 3rem;
    }
    .stars {
        display: flex;
        gap: 0.5rem;
        margin: 1rem 0;
        font-size: 1.8rem;
        color: gold;
        cursor: pointer;
    }
    .star:hover {
        transform: scale(1.2);
    }
    .comment-form textarea {
        width: 100%;
        padding: 1rem;
        background-color: #2a3a3a;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        color: var(--text-light);
        margin-bottom: 1rem;
        min-height: 150px;
        resize: vertical;
    }
    .form-row {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .form-row input {
        flex: 1;
        padding: 0.8rem;
        background-color: #2a3a3a;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        color: var(--text-light);
    }
    .submit-button {
        padding: 0.8rem 2rem;
        background-color: var(--accent-green);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
    }
    .submit-button:hover {
        background-color: var(--accent-red);
    }
    .site-footer {
        background-color: #000;
        padding: 3rem 0 1.5rem 0;
        margin-top: 3rem;
        border-top: 3px solid var(--accent-red);
    }
    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--accent-red);
        margin-bottom: 1rem;
    }
    friend-link {
        display: block;
        background-color: var(--bg-card);
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 5px;
        border-left: 3px solid var(--accent-green);
    }
    .copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-dim);
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            align-items: flex-start;
        }
        .hamburger {
            display: block;
            position: absolute;
            top: 1.5rem;
            right: 20px;
        }
        .main-nav {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 0;
            margin-top: 1rem;
        }
        .main-nav.active {
            display: flex;
        }
        .main-nav a {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.5rem;
        }
        .article-content {
            gap: 2rem;
        }
        .main-article {
            padding: 1.5rem;
        }
        .form-row {
            flex-direction: column;
        }
    }
