* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f5f2e9;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e63946;
            color: white;
            padding: 18px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ffd166;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.15rem;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover {
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        #mobile-menu {
            display: none;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1d3557;
            margin-bottom: 35px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1d3557;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 12px;
        }
        h3 {
            color: #1d3557;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            background-color: #f1faee;
            padding: 8px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #457b9d;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: 0.3s;
            font-size: 1.2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #1d3557;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #2a9d8f;
        }
        .btn-login:hover {
            background-color: #166534;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 8px solid #e63946;
        }
        .stats-box p {
            margin: 12px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #e63946;
            font-weight: bold;
            margin-right: 10px;
        }
        .review {
            background-color: #fff1e6;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 5rem;
            color: rgba(230, 57, 70, 0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #555;
            margin-top: 15px;
            font-weight: bold;
        }
        .tip-box {
            background-color: #e8f5e9;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 2px dashed #2a9d8f;
        }
        .tip-box h3 {
            margin-top: 0;
            color: #166534;
        }
        .tag {
            display: inline-block;
            background-color: #e9c46a;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #2d2d2d;
            font-size: 1rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #f4a261;
            transform: scale(1.05);
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #e0e0e0;
            text-decoration: none;
            margin-right: 20px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            transition: 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd166;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #457b9d;
            margin-top: 40px;
            font-size: 1rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul li {
                margin: 15px 0;
            }
            #mobile-menu:checked ~ ul {
                display: flex;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1.1rem;
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .stats-box, .review, .tip-box {
                padding: 18px;
            }
        }
