* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #006bb6, #003da5);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .logo {
            color: #ffc72c;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin-left: auto;
        }
        .nav-links li {
            margin: 0 12px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .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: 25px;
        }
        h1 {
            color: #003da5;
            margin: 35px 0 25px;
            font-size: 2.3rem;
            text-align: center;
            border-bottom: 4px solid #ffc72c;
            padding-bottom: 12px;
        }
        h2 {
            color: #006bb6;
            margin: 45px 0 22px;
            font-size: 1.9rem;
            border-left: 6px solid #ffc72c;
            padding-left: 18px;
        }
        h3 {
            color: #00529b;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            padding-bottom: 8px;
            border-bottom: 2px dotted #006bb6;
        }
        p {
            margin: 18px 0;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #003da5;
            text-shadow: 0 0 1px rgba(0,61,165,0.3);
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 25px 12px 25px 0;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 0 rgba(0,0,0,0.1);
        }
        .download-btn {
            background: #007c30;
            color: white;
        }
        .login-btn {
            background: #ff5722;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .stats-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 6px solid #ffc72c;
        }
        .review {
            background: #e6f2ff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #b3d9ff;
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 5rem;
            color: rgba(0,107,182,0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: serif;
        }
        .reviewer {
            font-style: italic;
            color: #00529b;
            margin-top: 15px;
            font-weight: 500;
        }
        .game-type {
            margin: 45px 0 25px;
        }
        .game-type a, .tags a {
            color: #006bb6;
            text-decoration: none;
            margin: 0 8px 10px 0;
            padding: 6px 14px;
            border-radius: 25px;
            background: #e6f2ff;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .game-type a:hover, .tags a:hover {
            background: #b3d9ff;
            transform: scale(1.05);
        }
        .tags {
            margin: 25px 0 45px;
        }
        .footer {
            background: #1a1a1a;
            color: #f0f0f0;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin: 12px 0;
            text-align: left;
        }
        .daman-promo {
            margin: 35px 0;
            font-size: 1.25rem;
            color: #ffd700;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
        }
        .copyright {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #444;
            text-align: center;
            font-size: 1rem;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .mobile-menu-btn {
                display: block;
                margin-left: auto;
            }
            h1 {
                font-size: 1.9rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 25px 0 15px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
            }
            p {
                font-size: 1.1rem;
                text-align: left;
            }
            .img-container {
                margin: 25px 0;
            }
        }
