body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #8B0000;
            color: white;
            padding: 20px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        nav {
            background-color: #6B0000;
            overflow: hidden;
        }
        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
        }
        @media screen and (max-width: 600px) {
            nav a:not(:first-child) {display: none;}
            nav a.mobile-menu-btn {
                float: right;
                display: block;
            }
            nav.responsive {position: relative;}
            nav.responsive a {
                float: none;
                display: block;
                text-align: left;
            }
        }
        h1, h2, h3 {
            color: #8B0000;
        }
        h1 {
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 1.8em;
            margin-top: 30px;
        }
        h3 {
            font-size: 1.4em;
            margin-top: 25px;
        }
        p {
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            background-color: #8B0000;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #6B0000;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .game-types, .tags {
            margin-top: 20px;
        }
        .game-types a, .tags a {
            color: #8B0000;
            text-decoration: none;
            margin: 0 5px;
        }
        .game-types a:hover, .tags a:hover {
            text-decoration: underline;
        }
