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: #ff4500;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #ff4500;
            border-bottom: 2px solid #ff4500;
            padding-bottom: 10px;
        }
    h2 {
        color: #e67e22;
        margin-top: 30px;
    }
    h3 {
        color: #2980b9;
    }
    .btn {
        display: inline-block;
        background-color: #ff4500;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin: 10px 0;
        transition: background-color 0.3s;
    }
    .btn:hover {
        background-color: #e63900;
    }
    .game-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    footer {
        background-color: #333;
        color: white;
        padding: 20px;
        margin-top: 50px;
        border-radius: 10px;
    }
    .tag-cloud {
        margin: 20px 0;
    }
    .tag-cloud a {
        color: #ff4500;
        text-decoration: none;
        margin-right: 10px;
        font-size: 0.9em;
    }
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        nav ul {
            display: none;
            width: 100%;
            flex-direction: column;
            margin-top: 20px;
        }
        nav ul.active {
            display: flex;
        }
        .logo {
            font-size: 1.8em;
        }
    }
