body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #FF4500;
            color: white;
            padding: 20px 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;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #FFD700;
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li 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;
        }
        .hero {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, #FF4500, #FF8C00);
            color: white;
            margin-bottom: 30px;
            border-radius: 10px;
        }
        .hero h1 {
            margin-top: 0;
            font-size: 36px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FFD700;
            color: #333;
            padding: 12px 30px;
            margin: 10px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .section {
            background-color: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .section h2 {
            color: #FF4500;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 10px;
            margin-top: 0;
        }
        .section h3 {
            color: #FF8C00;
        }
        .game-stats {
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #FF4500;
            margin: 20px 0;
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid #FFD700;
            padding-left: 20px;
            margin: 20px 0;
        }
        .strategy-tip {
            background-color: #e9f7ef;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }
        .copyright {
            font-size: 12px;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 15px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .section {
                padding: 20px;
            }
        }
