* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fde047;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 30px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .nav-menu li a:hover, .nav-menu li a.active {
            color: #fde047;
        }
        .nav-menu li a.daman-link {
            color: #fde047;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #1e3a8a;
            font-size: 2.4rem;
            text-align: center;
            margin: 35px 0 25px;
            font-weight: 800;
        }
        h2 {
            color: #1e3a8a;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #f59e0b;
            font-weight: 700;
        }
        h3 {
            color: #2563eb;
            font-size: 1.4rem;
            margin: 35px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #dc2626;
        }
        .btn-group {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            margin: 0 12px 15px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #22c55e;
            color: #ffffff;
        }
        .btn-login {
            background-color: #3b82f6;
            color: #ffffff;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-download:hover {
            background-color: #16a34a;
        }
        .btn-login:hover {
            background-color: #2563eb;
        }
        .img-container {
            text-align: center;
            margin: 45px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .stats-box p {
            font-size: 1.15rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .stats-box p span {
            margin-right: 10px;
            color: #f59e0b;
            font-size: 1.3rem;
        }
        .review-card {
            background-color: #ffffff;
            border-left: 5px solid #f59e0b;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .reviewer {
            font-style: italic;
            color: #64748b;
            margin-top: 15px;
            display: block;
            text-align: right;
        }
        .tags-section {
            margin: 60px 0 40px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #dbeafe;
            color: #1d4ed8;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bfdbfe;
            color: #1e40af;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0 20px;
        }
        .game-type-link {
            display: inline-block;
            margin-right: 25px;
            margin-bottom: 15px;
            color: #2563eb;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        footer {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #fde047;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-recommendation {
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .footer-recommendation strong {
            color: #fde047;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3b82f6;
            font-size: 0.95rem;
            color: #bfdbfe;
        }
        @media (max-width: 768px) {
            .header-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 18px;
                right: 20px;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                margin: 12px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-menu li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.5rem;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 1.25rem;
                margin: 30px 0 12px;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 0 auto 18px;
                text-align: center;
            }
            .stats-box p {
                font-size: 1rem;
            }
            .game-type-link {
                margin-right: 15px;
                font-size: 1rem;
            }
        }
