        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 1.05rem;
        }
        header {
            background-color: #0047ab;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        nav ul li a.daman-link {
            background-color: #ffcc00;
            color: #0047ab;
        }
        nav ul li a.daman-link:hover {
            background-color: #ffe066;
            transform: translateY(-2px);
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 15px;
        }
        h1 {
            color: #0047ab;
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffcc00;
        }
        h2 {
            color: #0047ab;
            font-size: 1.9rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 6px solid #ffcc00;
        }
        h3 {
            color: #0047ab;
            font-size: 1.5rem;
            margin: 35px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e0e0e0;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #0047ab;
        }
        strong {
            color: #0047ab;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .btn {
            padding: 16px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #0066cc;
            color: white;
        }
        .btn-download:hover {
            background-color: #0052a3;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #ffcc00;
            color: #0047ab;
        }
        .btn-login:hover {
            background-color: #ffe066;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-card {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid #0066cc;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0047ab;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #ffcc00;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        .reviewer {
            font-weight: 700;
            color: #0047ab;
        }
        .rating {
            color: #ffcc00;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .regional-tabs {
            margin: 40px 0;
        }
        .tab-content {
            background-color: white;
            padding: 30px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tags-section {
            margin: 50px 0;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .tag {
            padding: 10px 22px;
            background-color: #f0f7ff;
            color: #0066cc;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #0066cc;
            color: white;
            transform: translateY(-2px);
        }
        .tips-list {
            margin: 25px 0 35px 30px;
        }
        .tips-list li {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        footer {
            background-color: #0047ab;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ffcc00;
            display: inline-block;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .game-type-link {
            color: #d0d0d0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .daman-recommendation span {
            color: #ffcc00;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #d0d0d0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0047ab;
                padding: 25px;
                gap: 20px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                text-align: center;
                padding: 15px 25px;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .tips-list {
                margin-left: 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .daman-recommendation {
                font-size: 1.1rem;
            }
            .review-card {
                padding: 20px;
            }
        }
