:root {
            --primary-color: #8B0000; 
            --secondary-color: #D4AF37; 
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --light-text: #f0f0f0;
            --gray-text: #aaa;
            --section-bg: #111;
            --border-color: #333;
            --shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --container-width: 1200px;
            --header-height: 80px;
            --mobile-breakpoint: 768px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-color);
            height: var(--header-height);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
        }
        .my-logo span {
            color: var(--primary-color);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(139, 0, 0, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--darker-bg);
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: var(--gray-text);
        }
        .breadcrumb a {
            color: var(--gray-text);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        main {
            padding: 2rem 0;
            background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px double var(--primary-color);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray-text);
            font-style: italic;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 1100px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--section-bg);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0a800;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .game-image {
            margin: 2.5rem auto;
            border: 5px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .game-image figcaption {
            text-align: center;
            padding: 0.8rem;
            background-color: var(--darker-bg);
            color: var(--gray-text);
            font-size: 0.9rem;
        }
        .internal-links {
            background-color: rgba(0,0,0,0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .internal-links h4 {
            margin-top: 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .internal-links li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #444;
        }
        .internal-links li:last-child {
            border-bottom: none;
        }
        aside {
            background-color: var(--section-bg);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: calc(var(--header-height) + 20px);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--primary-color);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: #222;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--light-text);
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .rating-form, .comment-form {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem;
            border-radius: 8px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--secondary-color);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background-color: #222;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--light-text);
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), #a00);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #a00, var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
        }
        footer {
            background-color: var(--darker-bg);
            padding: 3rem 0 2rem;
            border-top: 2px solid var(--primary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 5px;
            border-left: 3px solid var(--secondary-color);
        }
        friend-link a {
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--gray-text);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: var(--darker-bg);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                border-bottom: 2px solid var(--primary-color);
                z-index: 999;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .hamburger {
                display: block;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            aside {
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .game-image {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(139, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0); }
        }
        .important-note {
            background: linear-gradient(135deg, rgba(139,0,0,0.2), rgba(212,175,55,0.2));
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid var(--secondary-color);
            margin: 2rem 0;
            font-weight: bold;
        }
