* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1a5276;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffffff;
            font-size: 2.2rem;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            margin-bottom: 12px;
            letter-spacing: 0.7px;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .nav {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #1a5276;
            margin: 35px 0 25px;
            font-size: 2.8rem;
            border-bottom: 4px solid #d35400;
            padding-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #1a5276;
            margin: 30px 0 18px;
            font-size: 2.2rem;
            padding-left: 12px;
            border-left: 5px solid #d35400;
        }
        h3 {
            color: #1a5276;
            margin: 25px 0 12px;
            font-size: 1.7rem;
            padding-bottom: 8px;
            border-bottom: 2px dotted #d35400;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #1a5276;
            text-shadow: 0 0 1px rgba(26, 82, 118, 0.2);
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #d35400;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            font-size: 1.15rem;
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .image-container img:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #1a5276;
        }
        .stats-box p {
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .review {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 5px solid #1a5276;
            box-shadow: 0 3px 10px rgba(0,0,0,0.09);
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 15px;
            display: block;
            font-size: 1.05rem;
        }
        .tag {
            display: inline-block;
            background-color: #1a5276;
            padding: 7px 18px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag:hover {
            background-color: #154360;
            transform: scale(1.1);
        }
        .game-type {
            display: inline-block;
            margin: 15px 15px 15px 0;
        }
        .game-type a {
            color: #1a5276;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 12px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            border-bottom: 3px solid #d35400;
        }
        .footer {
            background-color: #1a5276;
            color: white;
            padding: 45px 20px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer h3 {
            color: white;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .copyright {
            margin-top: 40px;
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                margin-top: 25px;
            }
            .nav.active {
                display: flex;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            .stats-box p {
                font-size: 1.15rem;
            }
            .btn {
                padding: 13px 25px;
                font-size: 1rem;
                margin: 12px 12px 12px 0;
                width: 80%;
                text-align: center;
            }
            .image-container {
                margin: 25px 0;
            }
        }
