body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            padding: 20px;
            color: white;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav {
            display: none;
            background: rgba(255,255,255,0.2);
            padding: 10px;
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            .desktop-nav {display: none;}
            .mobile-nav {display: block;}
        }
        h1, h2, h3 {
            color: #2c3e50;
            margin: 25px 0 15px;
        }
        h1 {font-size: 2.2rem; border-bottom: 3px solid #ff6b6b;}
        h2 {font-size: 1.8rem; border-bottom: 2px solid #4ecdc4;}
        h3 {font-size: 1.5rem; color: #e67e22;}
        .download-btn {
            display: inline-block;
            background: #27ae60;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        .game-stats {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            margin-top: 40px;
            padding: 20px;
            background: #2c3e50;
            color: white;
            border-radius: 8px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            color: #4ecdc4;
            margin: 0 5px;
            text-decoration: none;
        }
