body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        header {
            background-color: #e74c3c;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        header h1 {
            margin: 0;
            font-size: 2.5em;
        }
        .logo-text {
            font-weight: bold;
            font-size: 2em;
            text-shadow: 2px 2px 4px #000000;
        }
        nav {
            background-color: #c0392b;
            overflow: hidden;
        }
        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            padding: 14px 16px;
            background-color: #c0392b;
            color: white;
            border: none;
            font-size: 17px;
        }
        @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 .mobile-menu-btn {
                position: absolute;
                right: 0;
                top: 0;
            }
            nav.responsive a {
                float: none;
                display: block;
                text-align: left;
            }
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h2, h3 {
            color: #e74c3c;
            margin-top: 30px;
        }
        h2 {
            font-size: 2em;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5em;
        }
        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        .btn:hover {
            background-color: #c0392b;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        footer a {
            color: #e74c3c;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .game-types, .tags {
            margin: 20px 0;
            text-align: center;
        }
        .game-types a, .tags a {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #c0392b;
        }
