body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #ff9800;
            color: white;
            padding: 15px 0;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #e53935;
            font-size: 32px;
            margin-bottom: 20px;
        }
        h2 {
            color: #43a047;
            font-size: 26px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h3 {
            color: #1e88e5;
            font-size: 22px;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #388e3c;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .game-stats {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: #ff9800;
                width: 100%;
                flex-direction: column;
                padding: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 20px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .container {
                padding: 15px;
            }
        }
