body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 0;
        }
        .logo span {
            color: #f39c12;
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1, h2, h3 {
            color: #2c3e50;
            margin-top: 30px;
        }
        h1 {
            font-size: 28px;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 24px;
            margin-top: 40px;
        }
        h3 {
            font-size: 20px;
            margin-top: 30px;
        }
        p {
            margin-bottom: 15px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #f39c12;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin: 15px 0;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #e67e22;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .table-of-contents {
            background-color: #ecf0f1;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .table-of-contents h3 {
            margin-top: 0;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin-bottom: 8px;
        }
        .table-of-contents a {
            color: #2c3e50;
            text-decoration: none;
        }
        .table-of-contents a:hover {
            text-decoration: underline;
        }
        .player-reviews {
            background-color: #e8f4fc;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .local-events {
            background-color: #f9e5e5;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .community-discussion {
            background-color: #e8f8e8;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        footer a {
            color: #f39c12;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 20px;
            }
            h3 {
                font-size: 18px;
            }
        }
