body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff9f0;
        }
        header {
            background-color: #8B0000;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #FFD700;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .content {
            margin-top: 30px;
        }
        h1, h2, h3 {
            color: #8B0000;
            margin-top: 30px;
        }
        h1 {
            font-size: 2.5em;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2em;
            border-left: 5px solid #FFD700;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.5em;
            color: #5D4037;
        }
        .btn {
            display: inline-block;
            background-color: #8B0000;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin: 15px 0;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #5D4037;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        footer {
            margin-top: 50px;
            padding: 20px 0;
            border-top: 1px solid #ddd;
            text-align: center;
            font-size: 0.9em;
            color: #666;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #FFD700;
            color: #8B0000;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #8B0000;
                padding: 10px 0;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                padding: 10px 20px;
            }
            .header-container {
                flex-direction: column;
                padding: 10px;
            }
            .logo {
                margin-bottom: 10px;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.7em;
            }
        }
