body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FF6B35;
            padding-bottom: 10px;
        }
        h2 {
            color: #FF8C42;
            margin-top: 30px;
        }
        h3 {
            color: #FFA056;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            margin: 20px 0;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .login-btn {
            background-color: #2196F3;
        }
        .download-btn:hover {
            background-color: #45a049;
        }
        .login-btn:hover {
            background-color: #0b7dda;
        }
        .game-stats {
            background-color: #FFF3CD;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .strategy-section {
            background-color: #E8F5E9;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .community-post {
            background-color: #E3F2FD;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        footer {
            margin-top: 40px;
            padding: 20px;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 8px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #795548;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            margin: 5px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: #FF6B35;
                padding: 10px;
                border-radius: 0 0 8px 8px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            body {
                padding: 10px;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
