* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #0984e3;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffeaa7;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin-left: auto;
        }
        .nav-links li {
            margin: 0 8px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #74b9ff;
            color: #2d3436;
        }
        .daman-link {
            background-color: #fdcb6e;
            color: #2d3436 !important;
            font-weight: bold;
        }
        .menu-toggle {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            margin-left: auto;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0984e3;
            font-size: 2.3rem;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 4px solid #fdcb6e;
        }
        h2 {
            color: #2d3436;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #0984e3;
        }
        h3 {
            color: #0984e3;
            font-size: 1.5rem;
            margin: 35px 0 15px;
        }
        h4 {
            color: #2d3436;
            font-size: 1.3rem;
            margin: 25px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
            text-decoration: underline;
            text-decoration-style: dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 18px 12px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.15rem;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        .download-btn {
            background-color: #00b894;
            color: white;
        }
        .login-btn {
            background-color: #6c5ce7;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 2px solid #ffffff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #0984e3;
        }
        .review {
            background-color: #e8f4f8;
            border-left: 5px solid #74b9ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        .tips-list {
            margin: 25px 0 25px 45px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fdcb6e;
        }
        .game-types a, .tags a {
            color: #dfe6e9;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #fdcb6e;
            text-decoration: underline;
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .copyright {
            margin-top: 50px;
            text-align: center;
            color: #b2bec3;
            font-size: 1rem;
            padding-top: 20px;
            border-top: 1px solid #636e72;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 25px;
                padding-top: 15px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links li {
                margin: 12px 0;
            }
            .nav-links a {
                display: block;
                width: 100%;
            }
            .menu-toggle {
                display: block;
            }
            .nav.active .nav-links {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.6rem;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .tips-list {
                margin-left: 30px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
