@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Sans+SC:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d1b56e' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

h1, h2, h3 {
    font-family: 'Ma Shan Zheng', cursive;
}

.emoji-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.emoji-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.emoji-card img {
    transition: transform 0.5s ease;
}

.emoji-card:hover img {
    transform: scale(1.05);
}

.emoji-name {
    font-weight: 700;
}

@media (max-width: 640px) {
    #emoji-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
