/* Global Styles */
:root {
    --primary-color: #FF0062;
    --primary-light: #ff4787;
    --secondary-color: #6224ff;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px 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;
    background-color: #f5f5f5;
    color: #333;
    padding-bottom: 80px; /* Add padding to account for fixed input at bottom */
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

/* Header Styles */
.main-header {
    background: #6224ff;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    color: white;
    padding: 10px 0;
    box-shadow: var(--box-shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-family: 'Pacifico', cursive;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    width: 160px;
}

.logo h1 {
    font-weight: 400;
    font-size: 1.8rem;
}

.logo-accent {
    font-size: 0.8em;
    opacity: 0.8;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle.active {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: var(--primary-light);
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: background-color 0.3s;
}

.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    left: 0;
    transition: transform 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Styles */
.main-nav {
    background: linear-gradient(180deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.categories {
    padding: 20px 0;
}

.category-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-link {
    color: white;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.category-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.new-badge {
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    text-transform: uppercase;
}

/* Font Controls */
.font-controls {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.font-size-btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.font-size-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.font-size-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.font-size-slider {
    flex: 1;
    margin: 0 15px;
    max-width: 70%;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Fancy Text Container */
.fancy-text-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    margin-bottom: 100px; /* Ensure content doesn't get hidden behind fixed input */
    padding: 10px 5px;
}

.fancy-text-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    border-left: 3px solid var(--primary-color);
    min-height: 60px;
}

.fancy-text-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fancy-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Special styling for box style text */
.box-style-text {
    display: block;
    font-family: monospace;
    white-space: pre;
    line-height: 1.2;
    text-overflow: clip;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    margin: 5px 0;
}

.actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

.actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 0.8rem;
}

.actions button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.copy-btn {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    background-color: rgba(142, 68, 173, 0.1) !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    transition: background-color 0.2s, transform 0.2s;
}

.copy-btn:hover {
    background-color: var(--primary-color) !important;
    color: white;
    transform: translateY(-2px);
}

.copy-btn i {
    margin-right: 4px;
}

.copy-btn-text {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
}

.favorite-btn {
    color: var(--danger-color);
}

/* Text Input Container */
.text-input-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.input-wrapper {
    display: flex;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#textInput {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#textInput:focus {
    box-shadow: 0 2px 8px rgba(142, 68, 173, 0.3);
}

.generate-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #6224ff;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.generate-btn:hover {
    background: linear-gradient(90deg, rgba(98, 36, 255, 0.9) 0%, rgba(255, 0, 98, 0.9) 100%);
    transform: translateY(-50%) scale(1.05);
}

.generate-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Footer Styles */
.main-footer {
    background: #6224ff;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-color);
    margin-left: 15px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--success-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    z-index: 1000;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Hidden additional fonts */
.hidden {
    display: none;
}

/* Load More Button Container */
.load-more-container {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* Load More Button */
.load-more-btn {
    background: #6224ff;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: linear-gradient(90deg, rgba(98, 36, 255, 0.9) 0%, rgba(255, 0, 98, 0.9) 100%);
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 992px) {
    .fancy-text-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }
    
    .font-controls {
        padding: 8px 10px;
    }
    
    .font-size-slider {
        max-width: 60%;
    }
    
    .fancy-text {
        font-size: 1rem;
    }
    
    .text-input-container {
        padding: 10px;
    }
    
    #textInput {
        padding: 12px 55px 12px 15px;
        font-size: 1rem;
    }
    
    .fancy-text-container {
        margin-bottom: 90px;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .fancy-text-item {
        padding: 8px 12px;
        min-height: 55px;
    }
}

@media screen and (max-width: 576px) {
    .fancy-text-container {
        grid-template-columns: 1fr;
    }
    
    .copy-btn-text {
        display: inline-block;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .actions {
        margin-top: 0;
        align-self: center;
    }
    
    .font-size-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .generate-btn {
        width: 40px;
        height: 40px;
    }
}

/* SEO Content Section */
.seo-content {
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.seo-content h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.featured-image {
    margin: 20px 0;
    text-align: center;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.seo-content h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.seo-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.seo-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* Enhanced Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

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

.info-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* How to Use Steps Section */
.how-to-use-section {
    margin: 50px 0;
    padding: 30px 0;
    position: relative;
}

.how-to-use-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.how-to-use-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f7fa, #e8edf5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

.step-card h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
    padding: 30px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle i {
    color: white;
    font-size: 0.8rem;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for New Sections */
@media screen and (max-width: 768px) {
    .steps-container,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .how-to-use-section h2,
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .step-card,
    .info-card {
        padding: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Fancy Tools Section */
.fancy-tools-section {
    margin: 30px 0;
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px 15px;
    position: relative;
    overflow: hidden;
}

.fancy-tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
}

.fancy-tools-section h2 {
    color: var(--dark-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.fancy-tools-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    border-radius: 3px;
}

.fancy-tools-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fancy-tool-link {
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    padding: 8px 15px;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin: 3px;
}

.fancy-tool-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(98, 36, 255, 0.1) 0%, rgba(255, 0, 98, 0.1) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.fancy-tool-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.fancy-tool-link:hover::before {
    left: 0;
}

.fancy-tool-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(98, 36, 255, 1) 0%, rgba(255, 0, 98, 1) 100%);
    transition: transform 0.3s ease;
}

.fancy-tool-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 768px) {
    .fancy-tools-section {
        padding: 25px 15px;
        margin: 30px 0;
    }
    
    .fancy-tools-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .fancy-tool-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

.emoji-button {
    background-color: #fff;
    color: var(--primary-color);
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.animated-emoji {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 4px;
}

.emoji-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    padding: 15px;
}

.emoji-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.emoji-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-color: #f9f9f9;
}

.emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.emoji-category {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.emoji-category h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 3px solid #eee;
    padding-bottom: 15px;
}

.emoji-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 3px solid #eee;
    gap: 10px;
    padding: 0 15px;
}

.emoji-tab {
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.emoji-tab:hover, .emoji-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-bottom-color: var(--primary-color);
} 