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: 15px 0;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            color: #f39c12;
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
        h2 {
            color: #e74c3c;
            margin-top: 40px;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 5px;
        }
        h3 {
            color: #3498db;
            margin-top: 30px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #2ecc71;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        .login-btn {
            background-color: #3498db;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .player-review {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
        }
        .local-event {
            background-color: #fffacd;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: rgba(0,0,0,0.8);
                position: absolute;
                top: 70px;
                left: 0;
                z-index: 100;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
