* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a73e8;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.5rem;
            margin: 30px 0;
            color: #1a73e8;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #1a73e8;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #333;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #1a73e8;
        }
        .buttons {
            margin: 40px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .download-btn {
            background-color: #34a853;
            color: white;
            border: none;
        }
        .download-btn:hover {
            background-color: #2d8644;
            transform: translateY(-2px);
        }
        .login-btn {
            background-color: #1a73e8;
            color: white;
            border: none;
        }
        .login-btn:hover {
            background-color: #0d5bbc;
            transform: translateY(-2px);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .game-tips {
            background-color: #e8f0fe;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #1a73e8;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 5px solid #34a853;
        }
        .reviews {
            margin: 30px 0;
        }
        .review-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: bold;
            color: #1a73e8;
            margin-bottom: 5px;
            display: block;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #1a73e8;
        }
        .game-types, .tags {
            list-style: none;
        }
        .game-types li, .tags li {
            margin-bottom: 10px;
        }
        .game-types a, .tags a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #1a73e8;
                padding: 20px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .buttons {
                flex-direction: column;
                align-items: center;
            }
            .download-btn, .login-btn {
                width: 80%;
                text-align: center;
            }
        }
