body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: rgba(255,107,53,0.9);
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                padding: 10px 0;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #ff6b35;
            margin-top: 30px;
            border-bottom: 2px solid #ff6b35;
            padding-bottom: 10px;
        }
        h2 {
            color: #e74c3c;
            margin-top: 25px;
        }
        h3 {
            color: #c0392b;
            margin-top: 20px;
        }
        .button {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .button:hover {
            background-color: #e74c3c;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        footer {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #ddd;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        .game-types, .tags {
            margin: 20px 0;
            text-align: center;
        }
        .game-types a, .tags a {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 3px;
            text-decoration: none;
            color: #333;
        }
