* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a73e8;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            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: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            font-size: 36px;
            color: #1a73e8;
            margin: 30px 0;
            text-align: center;
        }
        h2 {
            font-size: 28px;
            color: #1a73e8;
            margin: 40px 0 20px;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 22px;
            color: #34a853;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #34a853;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #2a8644;
        }
        .btn-login {
            background-color: #1a73e8;
        }
        .btn-login:hover {
            background-color: #0d66d0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .highlight {
            font-weight: bold;
            color: #1a73e8;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .stat-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .stat-item span {
            font-weight: bold;
            margin-right: 10px;
            color: #34a853;
        }
        .tag {
            display: inline-block;
            background-color: #e8f0fe;
            color: #1a73e8;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #d2e3fc;
        }
        .game-type {
            display: inline-block;
            color: #1a73e8;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #202124;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #8ab4f8;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5f6368;
            margin-top: 30px;
            font-size: 14px;
            color: #dcdcdc;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a73e8;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
        }
