* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Times New Roman', serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1a5276;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #f1c40f;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav {
            display: inline-block;
        }
        .nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav a:hover {
            color: #f1c40f;
            border-bottom: 2px solid #f1c40f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a5276;
            margin: 35px 0;
            font-size: 2.6rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        h2 {
            color: #1a5276;
            margin: 45px 0 20px;
            font-size: 2.1rem;
            border-left: 4px solid #3498db;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #27ae60;
            margin: 30px 0 15px;
            font-size: 1.6rem;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
        }
        .btn {
            display: inline-block;
            padding: 13px 28px;
            background-color: #1a5276;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 12px 0;
            transition: 0.3s;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #154360;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #27ae60;
        }
        .btn-login:hover {
            background-color: #219653;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .highlight {
            font-weight: bold;
            color: #1a5276;
        }
        .stats-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 35px 0;
            border-top: 5px solid #1a5276;
        }
        .review {
            background-color: white;
            padding: 22px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 3px solid #27ae60;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 12px;
        }
        .tips-list {
            margin: 25px 0 25px 40px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 12px;
            font-size: 1.1rem;
        }
        .tips-list li:before {
            content: "•";
            color: #1a5276;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 45px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 12px;
            font-size: 1.3rem;
            color: #f1c40f;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin-right: 18px;
            display: inline-block;
            margin-bottom: 10px;
            transition: 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #f1c40f;
            transform: translateX(3px);
        }
        .copyright {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            text-align: center;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1a5276;
                padding: 25px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            }
            .nav.active {
                display: block;
            }
            .nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .mobile-menu-btn {
                display: inline-block;
                float: right;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 12px 0;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-box, .review {
                padding: 20px;
            }
        }
