body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #2c3e50;
            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.3);
        }
        .logo:hover {
            color: #3498db;
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #2c3e50;
            margin-top: 30px;
            font-size: 2.2em;
        }
        h2 {
            color: #3498db;
            margin-top: 25px;
            font-size: 1.8em;
        }
        h3 {
            color: #7f8c8d;
            margin-top: 20px;
            font-size: 1.4em;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #27ae60;
            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: #219653;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .table-of-contents {
            background-color: #e8f4fc;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .table-of-contents h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin: 8px 0;
        }
        .table-of-contents a {
            color: #3498db;
            text-decoration: none;
        }
        .table-of-contents a:hover {
            text-decoration: underline;
        }
        .player-review {
            background-color: #f9f9f9;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
        }
        .strategy-section {
            background-color: #e8f8f5;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .community-post {
            background-color: #fef9e7;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #f39c12;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        footer a {
            color: #3498db;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.2em;
            }
        }
