body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF4500;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }
        nav li {
            margin: 0 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #FF4500;
            margin: 30px 0 20px;
            font-size: 32px;
        }
        h2 {
            color: #E67E22;
            margin: 25px 0 15px;
            font-size: 24px;
        }
        h3 {
            color: #2980B9;
            margin: 20px 0 10px;
            font-size: 20px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #27AE60;
            color: white;
            padding: 12px 25px;
            margin: 15px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #219653;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .strategy-section {
            background-color: #F8F9FA;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .community-post {
            background-color: #E8F8F5;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #27AE60;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 0 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                text-align: center;
                margin-top: 15px;
            }
            nav.active ul {
                display: block;
            }
            nav li {
                margin: 10px 0;
            }
            .header-container {
                flex-direction: column;
            }
            h1 {
                font-size: 28px;
            }
        }
