body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5dc; 
        }
        header {
            background-color: #006400; 
            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.5);
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #8B4513; 
            border-bottom: 2px solid #8B4513;
            padding-bottom: 10px;
        }
        h2 {
            color: #228B22; 
            margin-top: 30px;
        }
        h3 {
            color: #556B2F; 
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FF4500; 
            color: white;
            padding: 10px 20px;
            margin: 10px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E63900;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .player-review {
            background-color: #FFF8DC;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #8B4513;
        }
        .stats-box {
            background-color: #E8F5E9;
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
        }
        footer {
            background-color: #006400;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .logo {
                font-size: 2em;
            }
        }
