body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #FFF9E6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .header { background-color: #FF6B35; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        .nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 20px; right: 20px; }
        .content { margin-top: 30px; }
        h1 { color: #FF6B35; border-bottom: 2px solid #FFA935; padding-bottom: 10px; }
        h2 { color: #FFA935; margin-top: 25px; }
        h3 { color: #FF8C35; margin-top: 20px; }
        .download-btn, .login-btn { 
            display: inline-block; 
            padding: 12px 25px; 
            background-color: #FF6B35; 
            color: white; 
            text-decoration: none; 
            border-radius: 5px; 
            margin: 10px 0; 
            font-weight: bold; 
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover { background-color: #FF4500; }
        .game-image { 
            max-width: 100%; 
            height: auto; 
            margin: 20px 0; 
            border-radius: 8px; 
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .stats-table th, .stats-table td { border: 1px solid #ddd; padding: 10px; text-align: left; }
        .stats-table th { background-color: #FFA935; color: white; }
        .stats-table tr:nth-child(even) { background-color: #FFF3E6; }
        .community-post { background-color: white; padding: 15px; margin-bottom: 20px; border-radius: 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        .footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .footer a { color: #FFA935; text-decoration: none; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; align-items: center; display: none; }
            .nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .logo { font-size: 2em; }
        }
