<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --light-color: #f8f9fa;
    --dark-color: #202124;
    --gray-color: #5f6368;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.main-nav a {
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
}

.search-box button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #3367d6;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 30px 0;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

/* Emoji Grid Styles */
.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.emoji-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.emoji-display {
    font-size: 3rem;
    margin-bottom: 10px;
}

.emoji-name {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
    text-align: center;
}

.copy-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    width: 100%;
}

.copy-btn:hover {
    background-color: #3367d6;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.category-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    text-align: center;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 15px;
    color: #bdc1c6;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc1c6;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #3c4043;
}

.footer-bottom p {
    color: #bdc1c6;
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #bdc1c6;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .site-header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .logo {
        margin-bottom: 0;
        text-align: left;
    }
    
    .main-nav ul {
        margin-bottom: 0;
    }
    
    .search-box {
        margin-bottom: 0;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-bottom p {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .emoji-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}</pre></body></html>