body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #1a73e8;
            color: white;
            padding: 15px 0;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 0;
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #1a73e8;
            font-size: 32px;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        h2 {
            color: #4285f4;
            font-size: 26px;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        h3 {
            color: #669df6;
            font-size: 22px;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-align: center;
            text-decoration: none;
            font-size: 18px;
            margin: 15px 0;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #45a049;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .table-of-contents {
            background-color: #e9f5ff;
            padding: 15px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .table-of-contents h3 {
            margin-top: 0;
            color: #1a73e8;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin-bottom: 8px;
        }
        .table-of-contents a {
            color: #4285f4;
            text-decoration: none;
        }
        .player-reviews {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .player-reviews h3 {
            margin-top: 0;
            color: #1a73e8;
        }
        .review {
            border-bottom: 1px solid #ddd;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .review:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .review-author {
            font-weight: bold;
            color: #4285f4;
        }
        .local-events {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .local-events h3 {
            margin-top: 0;
            color: #2e7d32;
        }
        .community-discussions {
            background-color: #fff3e0;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .community-discussions h3 {
            margin-top: 0;
            color: #e65100;
        }
        .discussion {
            border-bottom: 1px solid #ffc9a6;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .discussion:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .discussion-author {
            font-weight: bold;
            color: #e65100;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        footer a {
            color: #4CAF50;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: #1a73e8;
                padding: 10px 0;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
        }
