* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #e6f2ff;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a73e8;
            padding: 15px 20px;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 17px;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0f4c81;
            margin: 35px 0 25px;
            font-size: 34px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a73e8;
            margin: 30px 0 18px;
            font-size: 28px;
            border-left: 5px solid #1a73e8;
            padding-left: 12px;
        }
        h3 {
            color: #0f52ba;
            margin: 22px 0 12px;
            font-size: 24px;
        }
        p {
            margin-bottom: 18px;
            font-size: 19px;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #0091ea;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #0077cc;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #ff9800;
        }
        .btn-login:hover {
            background-color: #e68900;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .section {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 35px;
        }
        .stats-box {
            background-color: #b3e5fc;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #0288d1;
        }
        .review {
            border-left: 4px solid #673ab7;
            padding: 18px;
            margin: 20px 0;
            background-color: #f3e5f5;
            border-radius: 0 8px 8px 0;
        }
        .tips-box {
            background-color: #e8f5e9;
            padding: 22px;
            border-radius: 10px;
            margin: 22px 0;
            border-right: 5px solid #388e3c;
        }
        .events {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 25px 0;
        }
        .event-card {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-top: 5px solid #1976d2;
        }
        .footer {
            background-color: #0f4c81;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h3, .tags h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 22px;
        }
        .game-types a, .tags a {
            color: #bbdefb;
            text-decoration: none;
            margin-right: 18px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 15px;
            opacity: 0.9;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1a73e8;
                padding: 25px;
                gap: 15px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0;
            }
            h2 {
                font-size: 24px;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
            .section {
                padding: 20px;
                margin-bottom: 25px;
            }
            .btn {
                padding: 12px 24px;
                margin: 8px 5px;
                width: 90%;
                text-align: center;
            }
            .events {
                gap: 15px;
            }
            .event-card {
                min-width: 100%;
            }
        }
