/* ==============================================
   header-consistent.css
   Save this file in your website folder
   Link it to ALL your HTML pages
============================================== */

/* Reset only header-related elements */
#consistent-header,
#consistent-header *,
#consistent-header *::before,
#consistent-header *::after {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

/* Force body to have space for header on ALL pages */
html {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body {
    padding-top: 70px !important;
    margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 60px !important;
    }
}

/* ==============================================
   HEADER CONTAINER - ABSOLUTE POSITIONING
============================================== */
#consistent-header {
    /* Force positioning */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    
    /* Force height - CANNOT be overridden */
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    
    /* Force z-index above everything */
    z-index: 999999 !important;
    
    /* Force appearance */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    
    /* Force display */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    
    /* Force no transforms or margins */
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    
    transition: none !important;
}

/* Inner container */
#consistent-header .header-container {
    max-width: 1200px !important;
    width: 100% !important;
    height: 70px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    
    position: relative !important;
}

/* Navigation wrapper */
#consistent-header .header-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 70px !important;
}

/* ==============================================
   LOGO - FIXED SIZE
============================================== */
#consistent-header .header-logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #2c3e50 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    height: 40px !important;
    z-index: 1000001 !important;
    
    flex-shrink: 0 !important;
    order: 1 !important;
}

#consistent-header .header-logo:hover {
    transform: scale(1.02) !important;
    text-decoration: none !important;
}

#consistent-header .header-logo:focus {
    outline: 2px solid #3498db !important;
    outline-offset: 2px !important;
    border-radius: 6px !important;
}

#consistent-header .logo-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    
    margin-right: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    
    background: linear-gradient(135deg, #3498db, #667eea) !important;
    border-radius: 6px !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    flex-shrink: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

#consistent-header .logo-icon::before {
    content: 'Ƒ' !important;
    color: white !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    display: block !important;
}

#consistent-header .logo-text {
    font-size: 18px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #3498db, #667eea) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

/* ==============================================
   DESKTOP NAVIGATION
============================================== */
#consistent-header .header-nav-links {
    display: none !important;
    list-style: none !important;
    gap: 8px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 2 !important;
    height: 40px !important;
}

#consistent-header .header-nav-links li {
    display: inline-block !important;
    height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#consistent-header .header-nav-links a {
    text-decoration: none !important;
    color: #2c3e50 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    
    padding: 6px 12px !important;
    margin: 0 !important;
    
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    white-space: nowrap !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    
    line-height: 1 !important;
    transition: all 0.3s ease !important;
}

#consistent-header .header-nav-links a:hover,
#consistent-header .header-nav-links a:focus {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    color: #3498db !important;
    outline: none !important;
    text-decoration: none !important;
}

/* ==============================================
   MOBILE TOGGLE BUTTON
============================================== */
#consistent-header .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    
    padding: 8px !important;
    margin: 0 !important;
    
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    
    z-index: 1000001 !important;
    position: relative !important;
    order: 3 !important;
    flex-shrink: 0 !important;
    
    transition: all 0.3s ease !important;
}

#consistent-header .mobile-toggle:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.05) !important;
}

#consistent-header .mobile-toggle span {
    width: 20px !important;
    height: 2px !important;
    background: #3498db !important;
    margin: 2px 0 !important;
    border-radius: 2px !important;
    display: block !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
}

#consistent-header .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px) !important;
}

#consistent-header .mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

#consistent-header .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
}

/* ==============================================
   MOBILE MENU
============================================== */
#consistent-header .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 1000000 !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(1.1) !important;
    transition: all 0.4s ease !important;
}

#consistent-header .mobile-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

#consistent-header .mobile-nav-links {
    list-style: none !important;
    padding: 16px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
    max-width: 280px !important;
    width: 100% !important;
}

#consistent-header .mobile-nav-links li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#consistent-header .mobile-nav-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 24px !important;
    text-align: center !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    
    min-height: 48px !important;
    height: 48px !important;
    
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

#consistent-header .mobile-nav-links a:hover,
#consistent-header .mobile-nav-links a:focus {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #3498db !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    outline: none !important;
    text-decoration: none !important;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
============================================== */

/* Mobile: up to 767px */
@media screen and (max-width: 767px) {
    #consistent-header {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    #consistent-header .header-container {
        height: 60px !important;
        padding: 0 12px !important;
    }
    
    #consistent-header .header-nav {
        height: 60px !important;
    }
    
    #consistent-header .logo-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }
    
    #consistent-header .logo-icon::before {
        font-size: 14px !important;
    }
    
    #consistent-header .logo-text {
        font-size: 16px !important;
    }
    
    #consistent-header .mobile-toggle {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }
    
    #consistent-header .mobile-toggle span {
        width: 18px !important;
    }
}

/* Very small screens */
@media screen and (max-width: 374px) {
    #consistent-header .logo-text {
        display: none !important;
    }
    
    #consistent-header .logo-icon {
        margin-right: 0 !important;
    }
}

/* Tablets and Desktop: 768px+ */
@media screen and (min-width: 768px) {
    #consistent-header {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    #consistent-header .header-container {
        height: 70px !important;
        padding: 0 24px !important;
    }
    
    #consistent-header .header-nav {
        height: 70px !important;
    }
    
    #consistent-header .header-nav-links {
        display: flex !important;
    }
    
    #consistent-header .mobile-toggle {
        display: none !important;
    }
}

/* Large screens: 1024px+ */
@media screen and (min-width: 1024px) {
    #consistent-header .header-nav-links {
        gap: 12px !important;
    }
    
    #consistent-header .header-nav-links a {
        padding: 8px 16px !important;
        font-size: 16px !important;
    }
    
    #consistent-header .logo-text {
        font-size: 20px !important;
    }
    
    #consistent-header .logo-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
    }
    
    #consistent-header .logo-icon::before {
        font-size: 18px !important;
    }
}

/* ==============================================
   DARK MODE SUPPORT
============================================== */
@media (prefers-color-scheme: dark) {
    #consistent-header {
        background: rgba(30, 30, 30, 0.95) !important;
        border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    #consistent-header .mobile-menu {
        background: rgba(30, 30, 30, 0.98) !important;
    }
    
    #consistent-header .header-nav-links a,
    #consistent-header .mobile-nav-links a {
        background: rgba(40, 40, 40, 0.7) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
    
    #consistent-header .mobile-toggle {
        background: rgba(40, 40, 40, 0.9) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    #consistent-header .header-logo {
        color: #ffffff !important;
    }
}
/* ========================================
   RESPONSIVE FOOTER
========================================= */
.footer {
    background: var(--dark-blue);
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    padding-left: 0.25rem;
}

.company-info .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.company-info p {
    color: #95a5a6;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.social-media {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* ========================================
   BLOG SECTION - IMPROVED RESPONSIVE
========================================= */
.blog-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.blog-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.25rem;
}

.card-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    font-size: 0.8125rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ========================================
   SOCIAL BANNER - RESPONSIVE
========================================= */
.ultra-fixed-social-banner {
    position: fixed !important;
    top: 100px !important;
    left: 10px !important;
    transform: none !important;
    width: 32px !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 6px !important;
    padding: 0.25rem 0.125rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 500 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.125rem !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.ultra-social-btn {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px !important;
    background: #f8f9ff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: var(--transition) !important;
}

.ultra-social-btn:hover {
    background: #e8e9f5 !important;
    transform: scale(1.05) !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Large Tablets */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 8px !important;
        transform: translateY(-50%) !important;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-wrapper {
        padding: 0.875rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-section {
        padding: 1.5rem 0.75rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .ultra-fixed-social-banner {
        width: 28px !important;
        left: 6px !important;
    }
    
    .ultra-social-btn {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Large Mobile */
@media screen and (max-width: 640px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .blog-grid {
        gap: 1rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .mobile-nav-links a {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .mobile-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-toggle span {
        width: 16px;
        height: 2px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .blog-section {
        padding: 1.25rem 0.5rem;
    }
    
    .card-content {
        padding: 0.875rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .ultra-fixed-social-banner {
        width: 26px !important;
        left: 4px !important;
    }
    
    .ultra-social-btn {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Small Mobile */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .mobile-nav-links a {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .ultra-fixed-social-banner {
        width: 24px !important;
        left: 3px !important;
    }
    
    .ultra-social-btn {
        width: 16px !important;
        height: 16px !important;
    }
}

/* ========================================
   ENHANCED COMPONENTS
========================================= */

/* Page sections with consistent spacing */
.page-section {
    padding: clamp(2rem, 5vw, 4rem) 0;
}

/* Responsive buttons */
.btn {
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    padding: clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   ANIMATIONS
========================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out;
}

/* ========================================
   PRINT STYLES
========================================= */
@media print {
    .header,
    .footer,
    .mobile-toggle,
    .ultra-fixed-social-banner {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .blog-container {
        background: white !important;
    }
    
    .blog-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
========================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-links a,
    .mobile-nav-links a {
        border-width: 2px;
        background: rgba(255, 255, 255, 0.3);
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
========================================= */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-links a,
    .mobile-nav-links a,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========================================
   DARK MODE SUPPORT (OPTIONAL)
========================================= */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e2e8f0;
        --bg-color: #1a202c;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
}




          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
            background: #f8f9fa;
        }

       
        





        /* Footer Styles */
        .footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px;
            margin-top: auto;
            padding-left: 120px; /* Further increased left padding */
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #3498db;
            font-size: 18px;
            font-weight: 900; /* Made text stronger */
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700; /* Made text stronger */
            line-height: 1.6;
            display: block;
            padding: 5px 0;
        }

        .footer-section ul li a:hover {
            color: #3498db;
            padding-left: 5px;
        }

        /* Company Info Section */
        .company-info {
            grid-column: 1;
        }

        .company-info .logo {
            font-size: 28px;
            font-weight: 900;
            color: #3498db;
            margin-bottom: 15px;
            display: block;
        }

        .company-info p {
            color: #95a5a6;
            font-size: 14px;
            font-weight: 600; /* Made text stronger */
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Social Media Icons */
        .social-media {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #34495e;
            border-radius: 50%;
            color: #ecf0f1;
            text-decoration: none;
            font-size: 18px;
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: #3498db;
            border-color: #3498db;
            transform: translateY(-3px);
        }

        .social-link.facebook:hover { background: #3b5998; }
        .social-link.twitter:hover { background: #1da1f2; }
        .social-link.instagram:hover { background: #e4405f; }
        .social-link.linkedin:hover { background: #0077b5; }
        .social-link.youtube:hover { background: #ff0000; }
        .social-link.tiktok:hover { background: #000000; }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #95a5a6;
            font-size: 14px;
            font-weight: 700; /* Made text stronger */
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600; /* Made text stronger */
        }

        .footer-bottom-links a:hover {
            color: #3498db;
        }

        /* Newsletter Section */
        .newsletter {
            background: #34495e;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .newsletter h4 {
            color: #3498db;
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 800; /* Made text stronger */
        }

        .newsletter p {
            color: #bdc3c7;
            font-size: 14px;
            font-weight: 600; /* Made text stronger */
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            background: #2c3e50;
            color: #ecf0f1;
            border: 2px solid #34495e;
            font-weight: 600; /* Made text stronger */
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #3498db;
        }

        .newsletter-input::placeholder {
            color: #7f8c8d;
            font-weight: 600; /* Made text stronger */
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 800; /* Made text stronger */
            cursor: pointer;
            font-size: 14px;
        }

        .newsletter-btn:hover {
            background: #2980b9;
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 30px;
            }
            
            .company-info {
                grid-column: 1 / -1;
            }

            .footer {
                padding-left: 90px; /* Further increased for tablet */
            }
        }

        @media screen and (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
                padding-left: 70px; /* Further increased for mobile */
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }

            .company-info {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-section h3 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-bottom-links {
                justify-content: center;
                gap: 15px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                padding: 14px 20px;
            }

            .social-media {
                justify-content: center;
            }
        }

        @media screen and (max-width: 480px) {
            .footer {
                padding: 30px 0 15px;
                padding-left: 55px; /* Further increased for small mobile */
            }

            .footer-container {
                padding: 0 12px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-section h3 {
                font-size: 15px;
                margin-bottom: 12px;
            }

            .footer-section ul li a {
                font-size: 13px;
            }

            .company-info .logo {
                font-size: 24px;
            }

            .company-info p {
                font-size: 13px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .newsletter {
                padding: 15px;
            }

            .newsletter h4 {
                font-size: 15px;
            }

            .newsletter p {
                font-size: 13px;
            }

            .footer-bottom p,
            .footer-bottom-links a {
                font-size: 12px;
            }

            .footer-bottom-links {
                gap: 12px;
            }
        }

        @media screen and (max-width: 320px) {
            .footer-container {
                padding: 0 10px;
            }

            .footer-content {
                gap: 15px;
            }

            .company-info .logo {
                font-size: 22px;
            }

            .social-link {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .social-media {
                gap: 10px;
            }

            .newsletter-input,
            .newsletter-btn {
                padding: 10px;
                font-size: 13px;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer {
                padding-left: 45px; /* Further increased for very small screens */
            }
        }

        .social-link.pinterest:hover { background: #bd081c; }

        /* Body styling for demo */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .content {
            flex: 1;
            padding: 50px 20px;
            text-align: center;
        }





















/* ULTRA FIXED BANNER - MUCH HIGHER POSITION */
.ultra-fixed-social-banner {
    position: fixed !important;
    top: 120px !important;
    left: 15px !important;
    transform: none !important;
    -webkit-transform: none !important;
    width: 35px !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 8px !important;
    padding: 5px 3px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 500 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.ultra-social-btn {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    background: #f8f9ff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

.ultra-social-btn:hover {
    background: #e8e9f5 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

.ultra-copy-alert {
    position: fixed !important;
    top: 120px !important;
    right: 15px !important;
    transform: translateX(100px) !important;
    -webkit-transform: translateX(100px) !important;
    background: #4caf50 !important;
    color: white !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-family: Arial, sans-serif !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 501 !important;
}

.ultra-copy-alert.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
}

/* TABLET RESPONSIVE */
@media screen and (max-width: 1024px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 12px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 32px !important;
        padding: 4px 2px !important;
        gap: 2px !important;
        z-index: 499 !important;
    }
    
    .ultra-social-btn {
        width: 26px !important;
        height: 26px !important;
    }
    
    .ultra-social-btn svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 12px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 11px !important;
        padding: 5px 8px !important;
        z-index: 499 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* MOBILE LANDSCAPE */
@media screen and (max-width: 768px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 10px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 30px !important;
        padding: 3px 2px !important;
        gap: 2px !important;
        z-index: 498 !important;
    }
    
    .ultra-social-btn {
        width: 24px !important;
        height: 24px !important;
    }
    
    .ultra-social-btn svg {
        width: 11px !important;
        height: 11px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 10px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 10px !important;
        padding: 4px 6px !important;
        z-index: 498 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 600px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 8px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 28px !important;
        padding: 3px 1px !important;
        gap: 2px !important;
        z-index: 497 !important;
    }
    
    .ultra-social-btn {
        width: 22px !important;
        height: 22px !important;
    }
    
    .ultra-social-btn svg {
        width: 10px !important;
        height: 10px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 8px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 9px !important;
        padding: 3px 5px !important;
        z-index: 497 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* SMALL MOBILE */
@media screen and (max-width: 480px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 6px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 26px !important;
        padding: 2px 1px !important;
        gap: 1px !important;
        z-index: 496 !important;
    }
    
    .ultra-social-btn {
        width: 20px !important;
        height: 20px !important;
    }
    
    .ultra-social-btn svg {
        width: 9px !important;
        height: 9px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 6px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 8px !important;
        padding: 2px 4px !important;
        z-index: 496 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* VERY SMALL MOBILE */
@media screen and (max-width: 375px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 5px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 24px !important;
        padding: 2px 1px !important;
        gap: 1px !important;
        z-index: 495 !important;
    }
    
    .ultra-social-btn {
        width: 18px !important;
        height: 18px !important;
    }
    
    .ultra-social-btn svg {
        width: 8px !important;
        height: 8px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 5px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 7px !important;
        padding: 2px 3px !important;
        z-index: 495 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* TINY MOBILE */
@media screen and (max-width: 320px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 4px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 22px !important;
        padding: 1px !important;
        gap: 1px !important;
        z-index: 494 !important;
    }
    
    .ultra-social-btn {
        width: 16px !important;
        height: 16px !important;
    }
    
    .ultra-social-btn svg {
        width: 7px !important;
        height: 7px !important;
    }
    
    .ultra-copy-alert {
        top: 40% !important;
        right: 4px !important;
        transform: translateY(-50%) translateX(100px) !important;
        -webkit-transform: translateY(-50%) translateX(100px) !important;
        font-size: 6px !important;
        padding: 1px 2px !important;
        z-index: 494 !important;
    }
    
    .ultra-copy-alert.show {
        transform: translateY(-50%) translateX(0) !important;
        -webkit-transform: translateY(-50%) translateX(0) !important;
    }
}

/* EXTRA TINY SCREENS */
@media screen and (max-width: 280px) {
    .ultra-fixed-social-banner {
        top: 40% !important;
        left: 3px !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
        width: 20px !important;
        padding: 1px !important;
        gap: 1px !important;
        z-index: 493 !important;
    }
    
    .ultra-social-btn {
        width: 14px !important;
        height: 14px !important;
    }
    
    .ultra-social-btn svg {
        width: 6px !important;
        height: 6px !important;
    }
}

/* CROSS-BROWSER FIXES */
.ultra-fixed-social-banner {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* iOS SAFARI FIXES */
@supports (-webkit-overflow-scrolling: touch) {
    .ultra-fixed-social-banner {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ANDROID CHROME FIXES */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .ultra-fixed-social-banner {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}













.blog-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blog-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.blog-container .blog-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 40px 40px;
}

.blog-container .section-header {
    text-align: center;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out;
}

.blog-container .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-container .section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.blog-container .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.blog-container .blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.blog-container .blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.blog-container .card-image-container {
    position: relative;
    overflow: hidden;
    height: 140px;
}

.blog-container .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-container .blog-card:hover .card-image {
    transform: scale(1.1);
}

.blog-container .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-container .blog-card:hover .card-overlay {
    opacity: 1;
}

.blog-container .overlay-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.blog-container .blog-card:hover .overlay-text {
    transform: translateY(0);
}

.blog-container .card-content {
    padding: 15px;
}

.blog-container .card-category {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-container .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-container .blog-card:hover .card-title {
    color: #667eea;
}

.blog-container .card-description {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-container .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 12px;
}

.blog-container .read-more-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-size: 0.75rem;
}

.blog-container .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.blog-container .read-more-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-container .read-more-btn:hover::after {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container .blog-section {
        padding: 30px 15px 30px 35px;
    }
    
    .blog-container .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-container .card-content {
        padding: 14px;
    }
    
    .blog-container .card-image-container {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .blog-container .blog-section {
        padding: 25px 10px 25px 25px;
    }
    
    .blog-container .card-content {
        padding: 12px;
    }
    
    .blog-container .card-title {
        font-size: 0.95rem;
    }
    
    .blog-container .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-container .blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-container .blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-container .blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-container .blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-container .blog-card:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced mobile responsiveness */
@media (max-width: 1024px) {
    .blog-container .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-container .section-header {
        margin-bottom: 25px;
    }
    
    .blog-container .blog-grid {
        gap: 12px;
    }
}



#fontgen-about {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-about *,
        #fontgen-about *::before,
        #fontgen-about *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-about .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-about .hero {
            text-align: center;
            margin-bottom: 50px;
        }

        #fontgen-about .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-about .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-about .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 50px;
        }

        #fontgen-about .text {
            color: white;
        }

        #fontgen-about .text h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            color: #ffd700;
        }

        #fontgen-about .text p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 15px 0;
            opacity: 0.9;
        }

        #fontgen-about .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        #fontgen-about .visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #fontgen-about .showcase {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: transform 0.3s ease;
        }

        #fontgen-about .showcase:hover {
            transform: scale(1.05);
        }

        #fontgen-about .showcase h3 {
            font-size: 2rem;
            color: white;
            margin: 0 0 10px 0;
            font-weight: 300;
        }

        #fontgen-about .showcase p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-style: italic;
        }

        #fontgen-about .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        #fontgen-about .feature {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            transition: transform 0.3s ease;
        }

        #fontgen-about .feature:hover {
            transform: translateY(-5px);
        }

        #fontgen-about .feature-icon {
            font-size: 2.5rem;
            margin: 0 0 15px 0;
            display: block;
        }

        #fontgen-about .feature h3 {
            font-size: 1.2rem;
            color: white;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        #fontgen-about .feature p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin: 0;
        }

        #fontgen-about .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            text-align: center;
            margin-bottom: 40px;
        }

        #fontgen-about .stat {
            color: white;
        }

        #fontgen-about .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffd700;
            display: block;
            margin: 0 0 8px 0;
        }

        #fontgen-about .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        #fontgen-about .cta {
            text-align: center;
        }

        #fontgen-about .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        #fontgen-about .cta-button:hover {
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-about {
                padding: 40px 40px;
            }

            #fontgen-about .content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            #fontgen-about .hero h1 {
                font-size: 2rem;
            }

            #fontgen-about .features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            #fontgen-about .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            #fontgen-about .stats {
                grid-template-columns: 1fr;
            }

            #fontgen-about .stat-number {
                font-size: 2rem;
            }
        }







     
        #fontgen-contact {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-contact *,
        #fontgen-contact *::before,
        #fontgen-contact *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-contact .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-contact .hero {
            text-align: center;
            margin-bottom: 50px;
        }

        #fontgen-contact .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-contact .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-contact .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        #fontgen-contact .contact-info {
            color: white;
        }

        #fontgen-contact .contact-info h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0 0 25px 0;
            color: #ffd700;
        }

        #fontgen-contact .info-item {
            margin: 0 0 25px 0;
        }

        #fontgen-contact .info-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffd700;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #fontgen-contact .info-item p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            opacity: 0.9;
        }

        #fontgen-contact .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #fontgen-contact .form-group {
            margin: 0 0 20px 0;
        }

        #fontgen-contact .form-group label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin: 0 0 8px 0;
        }

        #fontgen-contact .form-group input,
        #fontgen-contact .form-group textarea,
        #fontgen-contact .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease, background-color 0.3s ease;
        }

        #fontgen-contact .form-group input::placeholder,
        #fontgen-contact .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        #fontgen-contact .form-group input:focus,
        #fontgen-contact .form-group textarea:focus,
        #fontgen-contact .form-group select:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.15);
        }

        #fontgen-contact .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        #fontgen-contact .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        #fontgen-contact .submit-btn {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        #fontgen-contact .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        #fontgen-contact .quick-contact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        #fontgen-contact .quick-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            transition: transform 0.3s ease;
        }

        #fontgen-contact .quick-item:hover {
            transform: translateY(-5px);
        }

        #fontgen-contact .quick-icon {
            font-size: 2.5rem;
            margin: 0 0 15px 0;
            display: block;
        }

        #fontgen-contact .quick-item h3 {
            font-size: 1.2rem;
            color: white;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        #fontgen-contact .quick-item p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin: 0;
        }

        #fontgen-contact .quick-item a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }

        #fontgen-contact .quick-item a:hover {
            text-decoration: underline;
        }

        #fontgen-contact .social-links {
            text-align: center;
            margin-top: 30px;
        }

        #fontgen-contact .social-links h3 {
            color: white;
            font-size: 1.3rem;
            margin: 0 0 20px 0;
            font-weight: 600;
        }

        #fontgen-contact .social-media {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        #fontgen-contact .social-link {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #fontgen-contact .social-link:hover {
            background: #ffd700;
            color: #333;
            transform: translateY(-3px);
        }

        #fontgen-contact .social-icon:hover {
            background: #ffd700;
            color: #333;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-contact {
                padding: 40px 40px;
            }

            #fontgen-contact .content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            #fontgen-contact .hero h1 {
                font-size: 2rem;
            }

            #fontgen-contact .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #fontgen-contact .quick-contact {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            #fontgen-contact .social-icons {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            #fontgen-contact .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
   


















        

        /* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px;
            z-index: 10000;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-icon {
            font-size: 1.4rem;
            animation: cookieBounce 2s infinite;
        }

        @keyframes cookieBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        .cookie-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            margin: 0;
        }

        .cookie-link {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .cookie-link:hover {
            color: #ffed4e;
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .cookie-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cookie-btn:hover::before {
            left: 100%;
        }

        .cookie-accept {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
            background: linear-gradient(45deg, #ffed4e, #ffd700);
        }

        .cookie-accept:active {
            transform: translateY(0);
        }

        .cookie-decline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .cookie-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .cookie-close:hover {
            background: rgba(255, 82, 82, 0.8);
            transform: rotate(90deg) scale(1.1);
        }

        /* Settings Toggle */
        .cookie-settings-toggle {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            cursor: pointer;
            text-decoration: underline;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .cookie-settings-toggle:hover {
            color: #ffd700;
        }

        /* Preferences Panel */
        .cookie-preferences {
            display: none;
            margin-top: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cookie-preferences.show {
            display: block;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .preference-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .preference-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .preference-info h4 {
            color: white;
            font-size: 1rem;
            margin: 0 0 5px 0;
            font-weight: 600;
        }

        .preference-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.4;
        }

        /* Toggle Switch */
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 13px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .toggle-switch.active {
            background: #ffd700;
        }

        .toggle-switch.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .toggle-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(24px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cookie-banner {
                padding: 15px;
            }

            .cookie-content {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .cookie-text {
                min-width: unset;
                text-align: center;
            }

            .cookie-title {
                font-size: 1.1rem;
                justify-content: center;
            }

            .cookie-description {
                font-size: 0.9rem;
            }

            .cookie-actions {
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
            }

            .cookie-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                flex: 1;
                min-width: 120px;
            }

            .cookie-close {
                top: 10px;
                right: 10px;
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .cookie-preferences {
                margin-top: 15px;
                padding: 15px;
            }

            .preference-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .toggle-switch {
                align-self: flex-end;
            }
        }

        @media (max-width: 480px) {
            .cookie-banner {
                padding: 12px;
            }

            .cookie-title {
                font-size: 1rem;
            }

            .cookie-description {
                font-size: 0.85rem;
            }

            .cookie-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .cookie-actions {
                gap: 8px;
            }
        }

        /* Hidden state for dismissed banner */
        .cookie-banner.hidden {
            display: none;
        }
   





















       
        #fontgen-cookies {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-cookies *,
        #fontgen-cookies *::before,
        #fontgen-cookies *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-cookies .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-cookies .hero {
            text-align: center;
            margin-bottom: 40px;
        }

        #fontgen-cookies .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-cookies .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-cookies .content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
        }

        #fontgen-cookies .section {
            margin-bottom: 35px;
        }

        #fontgen-cookies .section:last-child {
            margin-bottom: 0;
        }

        #fontgen-cookies .section h2 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #ffd700;
            margin: 0 0 20px 0;
        }

        #fontgen-cookies .section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 20px 0 15px 0;
        }

        #fontgen-cookies .section p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 15px 0;
        }

        #fontgen-cookies .section ul {
            list-style: none;
            margin: 15px 0;
            padding: 0;
        }

        #fontgen-cookies .section li {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
            padding-left: 20px;
            position: relative;
        }

        #fontgen-cookies .section li::before {
            content: "•";
            color: #ffd700;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        #fontgen-cookies .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        #fontgen-cookies .cookie-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }

        #fontgen-cookies .cookie-card:hover {
            transform: translateY(-3px);
        }

        #fontgen-cookies .cookie-card h4 {
            font-size: 1.2rem;
            color: #ffd700;
            margin: 0 0 12px 0;
            font-weight: 600;
        }

        #fontgen-cookies .cookie-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0 0 10px 0;
        }

        #fontgen-cookies .cookie-card .duration {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            margin: 0;
        }

        #fontgen-cookies .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        #fontgen-cookies .warning-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-cookies .warning-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-cookies .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        #fontgen-cookies .cookie-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        #fontgen-cookies .cookie-table th,
        #fontgen-cookies .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-cookies .cookie-table th {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            font-weight: 600;
            font-size: 0.95rem;
        }

        #fontgen-cookies .cookie-table td {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        #fontgen-cookies .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-cookies .contact-info h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        #fontgen-cookies .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
        }

        #fontgen-cookies .contact-info a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }

        #fontgen-cookies .contact-info a:hover {
            text-decoration: underline;
        }

        #fontgen-cookies .last-updated {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-cookies .last-updated p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-cookies {
                padding: 40px 40px;
            }

            #fontgen-cookies .hero h1 {
                font-size: 2rem;
            }

            #fontgen-cookies .content {
                padding: 30px 25px;
            }

            #fontgen-cookies .cookie-types {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #fontgen-cookies .section h2 {
                font-size: 1.5rem;
            }

            #fontgen-cookies .cookie-table th,
            #fontgen-cookies .cookie-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            #fontgen-cookies .content {
                padding: 25px 20px;
            }

            #fontgen-cookies .cookie-card {
                padding: 20px 15px;
            }
        }
    













              #fontgen-disclaimer {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-disclaimer *,
        #fontgen-disclaimer *::before,
        #fontgen-disclaimer *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-disclaimer .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-disclaimer .hero {
            text-align: center;
            margin-bottom: 40px;
        }

        #fontgen-disclaimer .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-disclaimer .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-disclaimer .content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
        }

        #fontgen-disclaimer .section {
            margin-bottom: 35px;
        }

        #fontgen-disclaimer .section:last-child {
            margin-bottom: 0;
        }

        #fontgen-disclaimer .section h2 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #ffd700;
            margin: 0 0 20px 0;
        }

        #fontgen-disclaimer .section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 20px 0 15px 0;
        }

        #fontgen-disclaimer .section p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 15px 0;
        }

        #fontgen-disclaimer .section ul {
            list-style: none;
            margin: 15px 0;
            padding: 0;
        }

        #fontgen-disclaimer .section li {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
            padding-left: 20px;
            position: relative;
        }

        #fontgen-disclaimer .section li::before {
            content: "•";
            color: #ffd700;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        #fontgen-disclaimer .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        #fontgen-disclaimer .warning-box {
            background: rgba(255, 82, 82, 0.15);
            border: 2px solid rgba(255, 82, 82, 0.4);
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }

        #fontgen-disclaimer .warning-box h3 {
            color: #ff5252;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 700;
            text-transform: uppercase;
        }

        #fontgen-disclaimer .warning-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
            font-size: 1.1rem;
        }

        #fontgen-disclaimer .info-box {
            background: rgba(33, 150, 243, 0.15);
            border: 1px solid rgba(33, 150, 243, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-disclaimer .info-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-disclaimer .disclaimer-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        #fontgen-disclaimer .disclaimer-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }

        #fontgen-disclaimer .disclaimer-card:hover {
            transform: translateY(-3px);
        }

        #fontgen-disclaimer .disclaimer-card h4 {
            font-size: 1.2rem;
            color: #ffd700;
            margin: 0 0 12px 0;
            font-weight: 600;
        }

        #fontgen-disclaimer .disclaimer-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
        }

        #fontgen-disclaimer .legal-notice {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }

        #fontgen-disclaimer .legal-notice h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        #fontgen-disclaimer .legal-notice p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0 0 10px 0;
            font-weight: 500;
        }

        #fontgen-disclaimer .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-disclaimer .contact-info h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        #fontgen-disclaimer .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
        }

        #fontgen-disclaimer .contact-info a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }

        #fontgen-disclaimer .contact-info a:hover {
            text-decoration: underline;
        }

        #fontgen-disclaimer .last-updated {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-disclaimer .last-updated p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-disclaimer {
                padding: 40px 40px;
            }

            #fontgen-disclaimer .hero h1 {
                font-size: 2rem;
            }

            #fontgen-disclaimer .content {
                padding: 30px 25px;
            }

            #fontgen-disclaimer .disclaimer-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #fontgen-disclaimer .section h2 {
                font-size: 1.5rem;
            }

            #fontgen-disclaimer .warning-box h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            #fontgen-disclaimer .content {
                padding: 25px 20px;
            }

            #fontgen-disclaimer .disclaimer-card {
                padding: 20px 15px;
            }

            #fontgen-disclaimer .warning-box {
                padding: 20px;
            }
        }
    





















        #fontgen-privacy {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-privacy *,
        #fontgen-privacy *::before,
        #fontgen-privacy *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-privacy .container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-privacy .hero {
            text-align: center;
            margin-bottom: 40px;
        }

        #fontgen-privacy .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-privacy .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-privacy .content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
        }

        #fontgen-privacy .section {
            margin-bottom: 35px;
        }

        #fontgen-privacy .section:last-child {
            margin-bottom: 0;
        }

        #fontgen-privacy .section h2 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #ffd700;
            margin: 0 0 20px 0;
        }

        #fontgen-privacy .section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 20px 0 15px 0;
        }

        #fontgen-privacy .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd700;
            margin: 15px 0 10px 0;
        }

        #fontgen-privacy .section p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 15px 0;
        }

        #fontgen-privacy .section ul {
            list-style: none;
            margin: 15px 0;
            padding: 0;
        }

        #fontgen-privacy .section li {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
            padding-left: 20px;
            position: relative;
        }

        #fontgen-privacy .section li::before {
            content: "•";
            color: #ffd700;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        #fontgen-privacy .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        #fontgen-privacy .data-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        #fontgen-privacy .data-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }

        #fontgen-privacy .data-card:hover {
            transform: translateY(-3px);
        }

        #fontgen-privacy .data-card h4 {
            font-size: 1.2rem;
            color: #ffd700;
            margin: 0 0 12px 0;
            font-weight: 600;
        }

        #fontgen-privacy .data-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
        }

        #fontgen-privacy .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        #fontgen-privacy .rights-card {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-privacy .rights-card h4 {
            color: #ffd700;
            font-size: 1.1rem;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        #fontgen-privacy .rights-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        #fontgen-privacy .info-box {
            background: rgba(33, 150, 243, 0.15);
            border: 1px solid rgba(33, 150, 243, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-privacy .info-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-privacy .warning-box {
            background: rgba(255, 152, 0, 0.15);
            border: 1px solid rgba(255, 152, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-privacy .warning-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-privacy .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        #fontgen-privacy .data-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        #fontgen-privacy .data-table th,
        #fontgen-privacy .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-privacy .data-table th {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            font-weight: 600;
            font-size: 0.95rem;
        }

        #fontgen-privacy .data-table td {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        #fontgen-privacy .legal-basis {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-privacy .legal-basis h4 {
            color: #ffd700;
            margin: 0 0 15px 0;
        }

        #fontgen-privacy .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-privacy .contact-info h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        #fontgen-privacy .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
        }

        #fontgen-privacy .contact-info a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }

        #fontgen-privacy .contact-info a:hover {
            text-decoration: underline;
        }

        #fontgen-privacy .last-updated {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-privacy .last-updated p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-privacy {
                padding: 40px 40px;
            }

            #fontgen-privacy .hero h1 {
                font-size: 2rem;
            }

            #fontgen-privacy .content {
                padding: 30px 25px;
            }

            #fontgen-privacy .data-types,
            #fontgen-privacy .rights-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #fontgen-privacy .section h2 {
                font-size: 1.5rem;
            }

            #fontgen-privacy .data-table th,
            #fontgen-privacy .data-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            #fontgen-privacy .content {
                padding: 25px 20px;
            }

            #fontgen-privacy .data-card,
            #fontgen-privacy .rights-card {
                padding: 20px 15px;
            }
        }
    






















     
        #fontgen-terms {
            all: initial;
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 60px;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            box-sizing: border-box;
        }

        #fontgen-terms *,
        #fontgen-terms *::before,
        #fontgen-terms *::after {
            all: unset;
            display: revert;
            box-sizing: border-box;
        }

        #fontgen-terms .container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0;
        }

        #fontgen-terms .hero {
            text-align: center;
            margin-bottom: 40px;
        }

        #fontgen-terms .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        #fontgen-terms .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        #fontgen-terms .content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
        }

        #fontgen-terms .section {
            margin-bottom: 35px;
        }

        #fontgen-terms .section:last-child {
            margin-bottom: 0;
        }

        #fontgen-terms .section h2 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #ffd700;
            margin: 0 0 20px 0;
        }

        #fontgen-terms .section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 20px 0 15px 0;
        }

        #fontgen-terms .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd700;
            margin: 15px 0 10px 0;
        }

        #fontgen-terms .section p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 15px 0;
        }

        #fontgen-terms .section ul {
            list-style: none;
            margin: 15px 0;
            padding: 0;
        }

        #fontgen-terms .section li {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
            padding-left: 20px;
            position: relative;
        }

        #fontgen-terms .section li::before {
            content: "•";
            color: #ffd700;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        #fontgen-terms .highlight {
            color: #ffd700;
            font-weight: 600;
        }

        #fontgen-terms .terms-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        #fontgen-terms .terms-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }

        #fontgen-terms .terms-card:hover {
            transform: translateY(-3px);
        }

        #fontgen-terms .terms-card h4 {
            font-size: 1.2rem;
            color: #ffd700;
            margin: 0 0 12px 0;
            font-weight: 600;
        }

        #fontgen-terms .terms-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
        }

        #fontgen-terms .warning-box {
            background: rgba(255, 82, 82, 0.15);
            border: 2px solid rgba(255, 82, 82, 0.4);
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }

        #fontgen-terms .warning-box h3 {
            color: #ff5252;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 700;
            text-transform: uppercase;
        }

        #fontgen-terms .warning-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
            font-size: 1.1rem;
        }

        #fontgen-terms .info-box {
            background: rgba(33, 150, 243, 0.15);
            border: 1px solid rgba(33, 150, 243, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-terms .info-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-terms .legal-box {
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }

        #fontgen-terms .legal-box h4 {
            color: #ffd700;
            margin: 0 0 10px 0;
            font-size: 1.2rem;
        }

        #fontgen-terms .legal-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        #fontgen-terms .prohibited-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        #fontgen-terms .prohibited-item {
            background: rgba(255, 82, 82, 0.1);
            border: 1px solid rgba(255, 82, 82, 0.3);
            border-radius: 8px;
            padding: 15px;
        }

        #fontgen-terms .prohibited-item h5 {
            color: #ff5252;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        #fontgen-terms .prohibited-item p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }

        #fontgen-terms .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        #fontgen-terms .terms-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        #fontgen-terms .terms-table th,
        #fontgen-terms .terms-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-terms .terms-table th {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            font-weight: 600;
            font-size: 0.95rem;
        }

        #fontgen-terms .terms-table td {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        #fontgen-terms .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-terms .contact-info h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        #fontgen-terms .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 10px 0;
        }

        #fontgen-terms .contact-info a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }

        #fontgen-terms .contact-info a:hover {
            text-decoration: underline;
        }

        #fontgen-terms .last-updated {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #fontgen-terms .last-updated p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fontgen-terms {
                padding: 40px 40px;
            }

            #fontgen-terms .hero h1 {
                font-size: 2rem;
            }

            #fontgen-terms .content {
                padding: 30px 25px;
            }

            #fontgen-terms .terms-cards,
            #fontgen-terms .prohibited-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            #fontgen-terms .section h2 {
                font-size: 1.5rem;
            }

            #fontgen-terms .warning-box h3 {
                font-size: 1.2rem;
            }

            #fontgen-terms .terms-table th,
            #fontgen-terms .terms-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            #fontgen-terms .content {
                padding: 25px 20px;
            }

            #fontgen-terms .terms-card,
            #fontgen-terms .prohibited-item {
                padding: 20px 15px;
            }

            #fontgen-terms .warning-box {
                padding: 20px;
            }
        }
 





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.creative-writing-seo-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.creative-writing-seo-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1;
}

.article-content {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.1;
}

.article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    line-height: 1.6;
    text-align: justify;
}

/* Section Styling */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
    opacity: 1;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

/* Highlight Text */
.keyword-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-weight: 700;
    color: #2d3748;
}

/* Lists */
.custom-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.custom-list {
    counter-reset: list-counter;
}

/* Quote Sections */
.quote-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border-left: 6px solid #ed8936;
    position: relative;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    font-size: 5rem;
    color: rgba(237, 137, 54, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.2rem;
    color: #744210;
    margin-bottom: 1rem;
    padding-left: 3rem;
}

.quote-source {
    color: #a0522d;
    font-weight: 600;
    padding-left: 3rem;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid #2196f3;
    position: relative;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
}

.tip-title {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 1rem;
    padding-left: 3rem;
}

.tip-content {
    color: #0d47a1;
    padding-left: 3rem;
    line-height: 1.7;
}

/* Link Styling */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.internal-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.internal-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.internal-link:hover::before {
    width: 100%;
}

.external-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #48bb78;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #38a169;
    border-bottom-style: solid;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Navigation Dots */
.reading-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .creative-writing-seo-article {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .article-intro {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        padding-left: 1rem;
    }
    
    .subsection-title {
        padding-left: 1.5rem;
    }
    
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-progress {
        display: none;
    }
    
    .quote-box {
        padding: 2rem 1.5rem;
    }
    
    .quote-text,
    .quote-source {
        padding-left: 2rem;
    }
    
    .tip-box {
        padding: 1.5rem;
    }
    
    .tip-title,
    .tip-content {
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .creative-writing-seo-article {
        padding: 1.5rem 0.75rem;
    }
    
    .article-title {
        font-size: 2.25rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        margin-bottom: 2.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .custom-list li {
        padding-left: 2.5rem;
    }
    
    .custom-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .creative-writing-seo-article {
        background: white;
        color: black;
    }
    
    .creative-writing-seo-article::before {
        display: none;
    }
    
    .cta-section,
    .reading-progress {
        display: none;
    }
    
    .content-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tiktok-fonts-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.tiktok-fonts-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1;
}

.article-content {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.1;
}

.article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    line-height: 1.6;
    text-align: justify;
}

/* Section Styling */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
    opacity: 1;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

/* Highlight Text */
.keyword-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-weight: 700;
    color: #2d3748;
}

/* Lists */
.custom-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
}

.custom-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Quote Sections */
.quote-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid #ed8936;
    position: relative;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: rgba(237, 137, 54, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    color: #744210;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.quote-source {
    color: #a0522d;
    font-weight: 600;
    padding-left: 2.5rem;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
    position: relative;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.tip-title {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.tip-content {
    color: #0d47a1;
    padding-left: 2.5rem;
    line-height: 1.6;
}

/* TikTok-specific styling */
.tiktok-box {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ff0050;
    position: relative;
    color: white;
}

.tiktok-box::before {
    content: '🎵';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.tiktok-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.tiktok-content {
    padding-left: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Font Preview Box */
.font-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.font-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.font-preview-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.font-preview-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.font-preview-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Link Styling */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.internal-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.internal-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.internal-link:hover::before {
    width: 100%;
}

.external-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #48bb78;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #38a169;
    border-bottom-style: solid;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.5);
}

/* TikTok Theme Accents */
.tiktok-accent {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.viral-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tiktok-fonts-article {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }
    
    .article-intro {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .section-title {
        padding-left: 0.75rem;
    }
    
    .subsection-title {
        padding-left: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-progress {
        display: none;
    }
    
    .quote-box,
    .tiktok-box,
    .font-preview {
        padding: 1.5rem;
    }
    
    .quote-text,
    .quote-source {
        padding-left: 2rem;
    }
    
    .tip-box {
        padding: 1.25rem;
    }
    
    .tip-title,
    .tip-content,
    .tiktok-title,
    .tiktok-content {
        padding-left: 2rem;
    }
    
    .font-preview-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tiktok-fonts-article {
        padding: 1.5rem 0.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .custom-list li {
        padding-left: 2.5rem;
    }
    
    .custom-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    
    .font-preview-text {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .tiktok-fonts-article {
        background: white;
        color: black;
    }
    
    .tiktok-fonts-article::before {
        display: none;
    }
    
    .cta-section,
    .reading-progress {
        display: none;
    }
    
    .content-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}






















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cool-fonts-posters-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.cool-fonts-posters-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1;
}

.article-content {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.1;
}

.article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    line-height: 1.6;
    text-align: justify;
}

/* Section Styling */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
    opacity: 1;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

/* Highlight Text */
.keyword-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-weight: 700;
    color: #2d3748;
}

/* Lists */
.custom-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
}

.custom-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Quote Sections */
.quote-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid #ed8936;
    position: relative;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: rgba(237, 137, 54, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    color: #744210;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.quote-source {
    color: #a0522d;
    font-weight: 600;
    padding-left: 2.5rem;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
    position: relative;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.tip-title {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.tip-content {
    color: #0d47a1;
    padding-left: 2.5rem;
    line-height: 1.6;
}

/* Poster-specific styling */
.poster-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ff6b6b;
    position: relative;
    color: white;
}

.poster-box::before {
    content: '🎨';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.poster-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.poster-content {
    padding-left: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Font Showcase Box */
.font-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.font-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.font-showcase-category {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.font-showcase-text {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.font-showcase-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Design Category Boxes */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Link Styling */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.internal-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.internal-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.internal-link:hover::before {
    width: 100%;
}

.external-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #48bb78;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #38a169;
    border-bottom-style: solid;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.5);
}

/* Poster Design Accents */
.poster-accent {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.impact-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cool-fonts-posters-article {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }
    
    .article-intro {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .section-title {
        padding-left: 0.75rem;
    }
    
    .subsection-title {
        padding-left: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-progress {
        display: none;
    }
    
    .quote-box,
    .poster-box,
    .font-showcase {
        padding: 1.5rem;
    }
    
    .quote-text,
    .quote-source {
        padding-left: 2rem;
    }
    
    .tip-box {
        padding: 1.25rem;
    }
    
    .tip-title,
    .tip-content,
    .poster-title,
    .poster-content {
        padding-left: 2rem;
    }
    
    .font-showcase-text {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cool-fonts-posters-article {
        padding: 1.5rem 0.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .custom-list li {
        padding-left: 2.5rem;
    }
    
    .custom-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    
    .font-showcase-text {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .cool-fonts-posters-article {
        background: white;
        color: black;
    }
    
    .cool-fonts-posters-article::before {
        display: none;
    }
    
    .cta-section,
    .reading-progress {
        display: none;
    }
    
    .content-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}





















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.social-media-bios-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.social-media-bios-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1;
}

/* AdSense Placeholders */
.adsense-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.adsense-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-ad 2s infinite;
}

@keyframes shimmer-ad {
    0% { left: -100%; }
    100% { left: 100%; }
}

.adsense-728x90 {
    width: 728px;
    height: 90px;
    max-width: 100%;
}

.adsense-300x250 {
    width: 300px;
    height: 250px;
    float: right;
    margin: 0 0 1rem 2rem;
}

.adsense-320x100 {
    width: 320px;
    height: 100px;
    max-width: 100%;
    display: none;
}

.article-content {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.1;
}

.article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    line-height: 1.6;
    text-align: justify;
}

/* Section Styling */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
    opacity: 1;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

/* Highlight Text */
.keyword-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-weight: 700;
    color: #2d3748;
}

/* Lists */
.custom-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
}

.custom-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Quote Sections */
.quote-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid #ed8936;
    position: relative;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: rgba(237, 137, 54, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    color: #744210;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.quote-source {
    color: #a0522d;
    font-weight: 600;
    padding-left: 2.5rem;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
    position: relative;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.tip-title {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.tip-content {
    color: #0d47a1;
    padding-left: 2.5rem;
    line-height: 1.6;
}

/* Example Boxes */
.example-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
    position: relative;
}

.example-box::before {
    content: '📝';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.example-title {
    font-weight: 700;
    color: #155724;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.example-content {
    color: #155724;
    padding-left: 2.5rem;
    line-height: 1.6;
    font-style: italic;
}

/* Link Styling */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.internal-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.internal-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.internal-link:hover::before {
    width: 100%;
}

.external-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #48bb78;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #38a169;
    border-bottom-style: solid;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.5);
}

/* Social Media Accents */
.social-accent {
    color: #667eea;
    font-weight: 600;
}

.platform-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-media-bios-article {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }
    
    .article-intro {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .section-title {
        padding-left: 0.75rem;
    }
    
    .subsection-title {
        padding-left: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-progress {
        display: none;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .quote-text,
    .quote-source {
        padding-left: 2rem;
    }
    
    .tip-box,
    .example-box {
        padding: 1.25rem;
    }
    
    .tip-title,
    .tip-content,
    .example-title,
    .example-content {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .social-media-bios-article {
        padding: 1.5rem 0.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .custom-list li {
        padding-left: 2.5rem;
    }
    
    .custom-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .social-media-bios-article {
        background: white;
        color: black;
    }
    
    .social-media-bios-article::before {
        display: none;
    }
    
    .cta-section,
    .reading-progress {
        display: none;
    }
    
    .content-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}





   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.japanese-font-seo-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.japanese-font-seo-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1;
}

.article-content {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.1;
}

.article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    line-height: 1.6;
    text-align: justify;
}

/* Section Styling */
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
    opacity: 1;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

/* Highlight Text */
.keyword-highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-weight: 700;
    color: #2d3748;
}

/* Lists */
.custom-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
}

.custom-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Quote Sections */
.quote-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid #ed8936;
    position: relative;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: rgba(237, 137, 54, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    color: #744210;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.quote-source {
    color: #a0522d;
    font-weight: 600;
    padding-left: 2.5rem;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
    position: relative;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.tip-title {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.tip-content {
    color: #0d47a1;
    padding-left: 2.5rem;
    line-height: 1.6;
}

/* Link Styling */
.internal-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.internal-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.internal-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #764ba2;
}

.internal-link:hover::before {
    width: 100%;
}

.external-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #48bb78;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #38a169;
    border-bottom-style: solid;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.5);
}

/* Japanese Typography Elements */
.japanese-accent {
    font-family: 'Noto Sans JP', sans-serif;
    color: #667eea;
    font-weight: 600;
}

.cultural-highlight {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .japanese-font-seo-article {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }
    
    .article-intro {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .section-title {
        padding-left: 0.75rem;
    }
    
    .subsection-title {
        padding-left: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-progress {
        display: none;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .quote-text,
    .quote-source {
        padding-left: 2rem;
    }
    
    .tip-box {
        padding: 1.25rem;
    }
    
    .tip-title,
    .tip-content {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .japanese-font-seo-article {
        padding: 1.5rem 0.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .custom-list li {
        padding-left: 2.5rem;
    }
    
    .custom-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .japanese-font-seo-article {
        background: white;
        color: black;
    }
    
    .japanese-font-seo-article::before {
        display: none;
    }
    
    .cta-section,
    .reading-progress {
        display: none;
    }
    
    .content-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.related-articles-section {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.related-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.related-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.related-article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 1);
}

.related-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-article-card:hover::before {
    opacity: 1;
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.image-icon {
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.article-content {
    padding: 1.5rem;
}

.article-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.9rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding-top: 1rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cta-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-article-card:hover .cta-arrow {
    color: #764ba2;
    transform: translateX(5px);
}

/* Specialized gradients for different article types */
.creative-writing .article-image {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.japanese-fonts .article-image {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.social-media .article-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.tiktok-fonts .article-image {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
}

.poster-fonts .article-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .related-articles-section {
        padding: 0 1rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .article-content {
        padding: 1.25rem;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .image-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .related-articles-section {
        margin-top: 2rem;
        padding: 0 0.75rem;
    }
    
    .article-image {
        height: 160px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .image-icon {
        font-size: 2.5rem;
    }
}




















 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
  
  .aesthetic-font-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .aesthetic-font-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #fafafa;
    padding: 2rem 1rem;
  }
  
  .aesthetic-font-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .aesthetic-font-section .card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
  }
  
  .aesthetic-font-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .aesthetic-font-section .card-header {
    height: 180px;
    position: relative;
    overflow: hidden;
  }
  
  /* Unique gradients for each card */
  .aesthetic-font-section .creepy-header {
    background: linear-gradient(135deg, #4c1d95 0%, #7c2d12 100%);
  }
  
  .aesthetic-font-section .japanese-header {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
  }
  
  .aesthetic-font-section .chinese-header {
    background: linear-gradient(135deg, #b91c1c 0%, #fbbf24 100%);
  }
  
  .aesthetic-font-section .glitch-header {
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
  }
  
  .aesthetic-font-section .instagram-header {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  }
  
  .aesthetic-font-section .crazy-header {
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  }
  
  .aesthetic-font-section .background-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  }
  
  .aesthetic-font-section .background-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transform: rotate(-15deg);
  }
  
  .aesthetic-font-section .background-pattern::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .aesthetic-font-section .header-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.75rem;
    opacity: 0.8;
    filter: brightness(1.2);
    z-index: 1;
  }
  
  .aesthetic-font-section .icon-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
  }
  
  .aesthetic-font-section .icon {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .aesthetic-font-section .card-content {
    padding: 1.5rem;
  }
  
  .aesthetic-font-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .aesthetic-font-section .card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .aesthetic-font-section .cta-button {
    width: 100%;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Button colors matching each theme */
  .aesthetic-font-section .creepy-button {
    background: #7c2d12;
  }
  
  .aesthetic-font-section .creepy-button:hover {
    background: #6c2912;
  }
  
  .aesthetic-font-section .japanese-button {
    background: #dc2626;
  }
  
  .aesthetic-font-section .japanese-button:hover {
    background: #b91c1c;
  }
  
  .aesthetic-font-section .chinese-button {
    background: #f59e0b;
  }
  
  .aesthetic-font-section .chinese-button:hover {
    background: #d97706;
  }
  
  .aesthetic-font-section .glitch-button {
    background: #6366f1;
  }
  
  .aesthetic-font-section .glitch-button:hover {
    background: #4f46e5;
  }
  
  .aesthetic-font-section .instagram-button {
    background: #ec4899;
  }
  
  .aesthetic-font-section .instagram-button:hover {
    background: #db2777;
  }
  
  .aesthetic-font-section .crazy-button {
    background: #059669;
  }
  
  .aesthetic-font-section .crazy-button:hover {
    background: #047857;
  }
  
  .aesthetic-font-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .aesthetic-font-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .aesthetic-font-section .cta-button:hover::before {
    left: 100%;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .aesthetic-font-section .cards-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 0 0.5rem;
    }
    
    .aesthetic-font-section .card-header {
      height: 150px;
    }
    
    .aesthetic-font-section .card-content {
      padding: 1.25rem;
    }
    
    .aesthetic-font-section .card-title {
      font-size: 1.125rem;
    }
    
    .aesthetic-font-section .card-description {
      font-size: 0.9rem;
    }
    
    .aesthetic-font-section .header-image {
      width: 50px;
      height: 50px;
    }
    
    .aesthetic-font-section .icon-container {
      bottom: 0.75rem;
      left: 0.75rem;
      padding: 0.5rem;
    }
    
    .aesthetic-font-section .icon {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .aesthetic-font-section {
      padding: 1rem 0.5rem;
    }
    
    .aesthetic-font-section .card-title {
      font-size: 1rem;
      line-height: 1.4;
    }
    
    .aesthetic-font-section .card-description {
      font-size: 0.875rem;
    }
    
    .aesthetic-font-section .cta-button {
      padding: 0.75rem 1.25rem;
      font-size: 0.9rem;
    }
  }














   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&display=swap');
  
  .title-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .title-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #fafafa;
    padding: 1rem;
  }

  .title-section .banner-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .title-section .banner-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }

  .title-section .banner-content {
    flex: 1;
  }

  .title-section .banner-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .title-section .banner-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .title-section .banner-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .title-section .banner-container {
      padding: 0.875rem 1rem;
      gap: 0.75rem;
    }

    .title-section .banner-icon {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }

    .title-section .banner-title {
      font-size: 1.125rem;
    }

    .title-section .banner-subtitle {
      font-size: 0.8rem;
    }

    .title-section .banner-badge {
      padding: 0.375rem 0.75rem;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .title-section .banner-container {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
      padding: 1rem;
    }

    .title-section .banner-title {
      font-size: 1rem;
    }

    .title-section .banner-subtitle {
      font-size: 0.75rem;
    }
  }


    /* Your original CSS - completely unchanged */
        .testimonials-section {
            padding: 5rem 2rem;
            background: white;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-intro {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: #667eea;
        }

        .testimonial-quote {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: #667eea;
            font-family: Georgia, serif;
            position: absolute;
            top: -10px;
            left: -5px;
            opacity: 0.3;
        }

        .quote-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #2d3748;
            margin: 0;
            padding-left: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #2d3748;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .author-company {
            color: #4a5568;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            text-align: right;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .testimonials-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            color: white;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 3rem 1rem;
            }
            
            .testimonials-h2 {
                font-size: 1.8rem;
            }
            
            .testimonials-intro {
                font-size: 1rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .quote-text {
                font-size: 0.95rem;
                padding-left: 1.5rem;
            }
            
            .author-avatar {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .testimonials-stats {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
                gap: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .quote-icon {
                font-size: 2.5rem;
                top: -8px;
                left: -3px;
            }
            
            .quote-text {
                padding-left: 1.2rem;
            }
        }

        /* ONLY additive enhancements - won't conflict with existing styles */
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .testimonials-container {
            position: relative;
            z-index: 1;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.6s ease;
            z-index: 1;
            pointer-events: none;
        }

        .testimonial-card:hover::after {
            left: 100%;
        }

        .testimonial-card > * {
            position: relative;
            z-index: 2;
        }

        .quote-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
        }

        .author-avatar {
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .author-avatar {
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            transform: scale(1.05);
        }

        .stars {
            text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .stars {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .testimonials-h2 {
            text-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
        }









  




.faq-section {
    padding: 5rem 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: #667eea;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-h2 {
        font-size: 1.8rem;
    }
    
    .faq-intro {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}






.examples-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.examples-container {
    max-width: 1200px;
    margin: 0 auto;
}

.examples-header {
    text-align: center;
    margin-bottom: 4rem;
}

.examples-h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.examples-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.example-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.example-header {
    padding: 2rem 2rem 1rem;
}

.example-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.example-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.example-output {
    padding: 1rem 2rem 2rem;
    background: #f8fafc;
}

.output-label {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1rem;
    font-weight: 500;
}

.font-samples {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.font-sample {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.font-sample:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
    transform: scale(1.02);
}

.font-sample.business {
    color: #2d3748;
}

.font-sample.creative {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-sample.personal {
    color: #ed64a6;
}

.font-sample.academic {
    color: #3182ce;
}

.examples-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .examples-section {
        padding: 3rem 1rem;
    }
    
    .examples-h2 {
        font-size: 1.8rem;
    }
    
    .examples-intro {
        font-size: 1rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .example-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .example-output {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .font-sample {
        font-size: 1.2rem;
        padding: 0.7rem 0.8rem;
    }
    
    .examples-cta {
        padding: 2rem 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}





.features-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-h2 {
        font-size: 2rem;
    }
    
    .features-intro {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}
















.hero-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.85rem;
}

.checkmark {
    color: #48bb78;
    font-weight: bold;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.font-demo {
    text-align: center;
    z-index: 2;
}

.demo-text {
    font-size: 1.2rem;
    margin: 0.4rem 0;
    transition: all 0.3s ease;
}

.demo-text:hover {
    transform: scale(1.05);
}

.demo-1 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #2d3748;
}

.demo-2 {
    color: #9f7aea;
    font-weight: bold;
}

.demo-3 {
    color: #ed8936;
    font-weight: bold;
}

.demo-4 {
    color: #38b2ac;
    font-weight: bold;
}

.demo-5 {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    color: #e53e3e;
    letter-spacing: 1px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-letter {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-letter:nth-child(1) {
    top: 20%;
    left: 15%;
    color: #667eea;
    animation-delay: 0s;
}

.floating-letter:nth-child(2) {
    top: 60%;
    right: 20%;
    color: #764ba2;
    animation-delay: 2s;
}

.floating-letter:nth-child(3) {
    bottom: 25%;
    left: 25%;
    color: #ff6b6b;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-h1 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .demo-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-h1 {
        font-size: 1.5rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .demo-text {
        font-size: 0.9rem;
    }
}

















/* Scoped styles for aesthetic font generator hero */
.aesthetic-hero-wrapper {
    background: #ffffff;
    padding: 2rem 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.aesthetic-hero-content {
    max-width: 500px;
    padding-left: 3rem;
}

.aesthetic-hero-badge {
    display: inline-block;
    background: #f0f9ff;
    color: #0369a1;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0f2fe;
}

.aesthetic-hero-h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.aesthetic-hero-highlight {
    color: #3b82f6;
}

.aesthetic-hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.aesthetic-hero-cta-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.aesthetic-hero-btn-primary {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.aesthetic-hero-btn-primary:hover {
    background: #2563eb;
}

.aesthetic-hero-btn-secondary {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.aesthetic-hero-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.aesthetic-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.aesthetic-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.aesthetic-hero-feature::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.aesthetic-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aesthetic-hero-image-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
}

.aesthetic-hero-font-examples {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aesthetic-hero-font-item {
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.aesthetic-hero-font-item:hover {
    border-color: #3b82f6;
}

.aesthetic-hero-font-sample {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.aesthetic-hero-font-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .aesthetic-hero-wrapper {
        padding: 1.5rem 2rem;
    }
    
    .aesthetic-hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .aesthetic-hero-content {
        max-width: none;
        padding-left: 0;
    }
    
    .aesthetic-hero-h1 {
        font-size: 2rem;
    }
    
    .aesthetic-hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .aesthetic-hero-btn-primary,
    .aesthetic-hero-btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .aesthetic-hero-features {
        justify-content: center;
    }
    
    .aesthetic-hero-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .aesthetic-hero-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .aesthetic-hero-h1 {
        font-size: 1.75rem;
    }
    
    .aesthetic-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .aesthetic-hero-image-container {
        padding: 1rem;
    }
    
    .aesthetic-hero-font-item {
        padding: 0.5rem;
    }
    
    .aesthetic-hero-font-sample {
        font-size: 1rem;
    }
}






/* Examples section styles */
.aesthetic-examples-section {
    background: #f8fafc;
    padding: 2rem 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-examples-container {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.aesthetic-examples-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.aesthetic-examples-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.aesthetic-example-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease;
}

.aesthetic-example-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.aesthetic-example-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.aesthetic-example-description {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.aesthetic-example-preview {
    margin: 0;
    font-size: 0.95rem;
    color: #374151;
}

.aesthetic-example-preview strong {
    color: #1f2937;
    font-weight: 600;
}

.aesthetic-example-font {
    font-size: 1.25rem;
    color: #3b82f6;
    font-weight: 500;
    margin-left: 0.5rem;
}

.aesthetic-examples-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.aesthetic-examples-cta-text {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.aesthetic-examples-highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .aesthetic-examples-section {
        padding: 1.5rem 2rem;
    }
    
    .aesthetic-examples-container {
        padding-left: 0;
    }
    
    .aesthetic-examples-title {
        font-size: 1.5rem;
    }
    
    .aesthetic-examples-description {
        font-size: 0.95rem;
    }
    
    .aesthetic-example-item {
        padding: 1.25rem;
    }
    
    .aesthetic-example-title {
        font-size: 1rem;
    }
    
    .aesthetic-example-description {
        font-size: 0.9rem;
    }
    
    .aesthetic-example-font {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .aesthetic-examples-section {
        padding: 1rem 1.5rem;
    }
    
    .aesthetic-examples-title {
        font-size: 1.375rem;
    }
    
    .aesthetic-example-item {
        padding: 1rem;
    }
    
    .aesthetic-example-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .aesthetic-example-font {
        font-size: 1rem;
    }
}



/* Testimonials section styles */
.aesthetic-testimonials-section {
    background: #ffffff;
    padding: 2rem 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.aesthetic-testimonials-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.aesthetic-testimonial {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.aesthetic-testimonial:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.aesthetic-testimonial p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.aesthetic-testimonial footer {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    font-style: normal;
}

.aesthetic-testimonial footer::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #d1d5db;
    margin-right: 8px;
    vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .aesthetic-testimonials-section {
        padding: 1.5rem 2rem;
    }
    
    .aesthetic-testimonials-container {
        padding-left: 0;
    }
    
    .aesthetic-testimonials-title {
        font-size: 1.5rem;
    }
    
    .aesthetic-testimonial {
        padding: 1.25rem;
    }
    
    .aesthetic-testimonial p {
        font-size: 0.9rem;
    }
    
    .aesthetic-testimonial footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .aesthetic-testimonials-section {
        padding: 1rem 1.5rem;
    }
    
    .aesthetic-testimonials-title {
        font-size: 1.375rem;
    }
    
    .aesthetic-testimonial {
        padding: 1rem;
        border-left-width: 3px;
    }
    
    .aesthetic-testimonial p {
        font-size: 0.875rem;
    }
    
    .aesthetic-testimonial footer {
        font-size: 0.75rem;
    }
}













/* FAQ section styles */
.aesthetic-faq-section {
    background: #ffffff;
    padding: 3rem 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.aesthetic-faq-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.aesthetic-faq-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.aesthetic-faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.aesthetic-faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.aesthetic-faq-answer {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.aesthetic-faq-answer strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .aesthetic-faq-section {
        padding: 2rem 1.5rem;
    }
    
    .aesthetic-faq-title {
        font-size: 1.75rem;
    }
    
    .aesthetic-faq-item {
        padding: 1.25rem;
    }
    
    .aesthetic-faq-question {
        font-size: 1rem;
    }
    
    .aesthetic-faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .aesthetic-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .aesthetic-faq-title {
        font-size: 1.5rem;
    }
    
    .aesthetic-faq-item {
        padding: 1rem;
    }
    
    .aesthetic-faq-question {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}

/* How-to section styles */
.aesthetic-howto-section {
    background: #f8fafc;
    padding: 2rem 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-howto-container {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.aesthetic-howto-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.aesthetic-howto-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.aesthetic-howto-list {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.aesthetic-howto-list ol {
    margin: 0;
    padding-left: 1.25rem;
    list-style-type: decimal;
}

.aesthetic-howto-list li {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.aesthetic-howto-list li:last-child {
    margin-bottom: 0;
}

.aesthetic-howto-list li strong {
    color: #3b82f6;
    font-weight: 600;
}

.aesthetic-howto-cta {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
}

.aesthetic-howto-cta-text {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.aesthetic-howto-highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 375px) {
    .aesthetic-howto-section {
        padding: 1rem 1.5rem;
    }
    
    .aesthetic-howto-container {
        padding-left: 0;
    }
    
    .aesthetic-howto-title {
        font-size: 1.375rem;
    }
    
    .aesthetic-howto-description {
        font-size: 0.9rem;
    }
    
    .aesthetic-howto-list {
        padding: 1rem;
    }
    
    .aesthetic-howto-list ol {
        padding-left: 1rem;
    }
    
    .aesthetic-howto-list li {
        font-size: 0.875rem;
        padding-left: 0.25rem;
    }
    
    .aesthetic-howto-cta {
        padding: 1rem;
    }
    
    .aesthetic-howto-cta-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    .aesthetic-howto-section {
        padding: 1.5rem 2rem;
    }
    
    .aesthetic-howto-container {
        padding-left: 0;
    }
    
    .aesthetic-howto-title {
        font-size: 1.5rem;
    }
    
    .aesthetic-howto-description {
        font-size: 0.95rem;
    }
    
    .aesthetic-howto-list {
        padding: 1.25rem;
    }
    
    .aesthetic-howto-list li {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .aesthetic-howto-section {
        padding: 2rem 3rem;
    }
    
    .aesthetic-howto-container {
        padding-left: 2rem;
    }
    
    .aesthetic-howto-title {
        font-size: 1.625rem;
    }
}

@media (min-width: 1024px) {
    .aesthetic-howto-section {
        padding: 2rem 4rem;
    }
    
    .aesthetic-howto-container {
        padding-left: 3rem;
    }
}





/* Features section styles */
.aesthetic-features-section {
    background: #f8fafc;
    padding: 3rem 4rem;
    border-top: 1px solid #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.aesthetic-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.aesthetic-features-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.aesthetic-features-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.aesthetic-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.aesthetic-feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.aesthetic-feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.aesthetic-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.aesthetic-feature-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.aesthetic-features-cta {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.aesthetic-features-cta-text {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0;
    font-weight: 600;
}

.aesthetic-features-highlight {
    color: #3b82f6;
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .aesthetic-features-section {
        padding: 2rem 1.5rem;
    }
    
    .aesthetic-features-title {
        font-size: 1.75rem;
    }
    
    .aesthetic-features-description {
        font-size: 1rem;
    }
    
    .aesthetic-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .aesthetic-feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .aesthetic-features-section {
        padding: 1.5rem 1rem;
    }
    
    .aesthetic-features-title {
        font-size: 1.5rem;
    }
    
    .aesthetic-feature-card {
        padding: 1.25rem;
    }
}











/* Medium Chinese Font Hero Section - Horizontal Layout */
.chinese-hero-section {
    background: #ffffff;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.text-content {
    padding-left: 2.5rem;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.text-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.text-content p:first-of-type {
    margin-bottom: 1.5rem;
}

.text-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin: 0.25rem 0.75rem 0.25rem 0;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.text-content p:nth-of-type(2) a {
    background: #3b82f6;
    border: 1px solid #3b82f6;
}

.text-content p:nth-of-type(2) a:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.text-content p:nth-of-type(3) a {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.text-content p:nth-of-type(3) a:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-content {
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chinese-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .chinese-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .chinese-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .chinese-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .chinese-fonts-showcase {
        gap: 1.5rem;
    }
}

.chinese-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.chinese-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chinese-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chinese-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Chinese Font Families */
.font-mingti {
    font-family: "PMingLiU", "MingLiU", "Microsoft JhengHei", "SimSun", serif;
}

.font-heiti {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "SimHei", sans-serif;
    font-weight: 500;
}

.font-kaiti {
    font-family: "KaiTi", "STKaiti", "BiauKai", "DFKai-SB", cursive;
}

.font-fangsong {
    font-family: "FangSong", "STFangsong", "SimSun", serif;
}

.chinese-sample {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
}

.chinese-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Extra Small (320px-479px) */
@media (max-width: 479px) {
    .chinese-hero-section {
        padding: 1rem 1rem;
    }
    
    .chinese-hero-container {
        text-align: center;
        gap: 1.25rem;
    }
    
    .text-content {
        padding-left: 0;
    }
    
    .text-content h2 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .text-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .text-content a {
        width: 100%;
        max-width: 200px;
        margin: 0.375rem 0;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .chinese-fonts-showcase {
        gap: 0.75rem;
    }
    
    .chinese-preview {
        padding: 0.75rem;
    }
    
    .chinese-sample {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .chinese-label {
        font-size: 0.6875rem;
    }
}

/* Mobile (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .chinese-hero-section {
        padding: 1.25rem 1.5rem;
    }
    
    .chinese-hero-container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .text-content {
        padding-left: 0;
    }
    
    .text-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .text-content p {
        font-size: 0.9rem;
    }
    
    .text-content a {
        width: 48%;
        margin: 0.25rem 1%;
        min-width: auto;
        font-size: 0.875rem;
    }
    
    .chinese-preview {
        padding: 0.875rem;
    }
    
    .chinese-sample {
        font-size: 1.125rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .chinese-hero-section {
        padding: 1.75rem 2.5rem;
    }
    
    .chinese-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .text-content {
        padding-left: 1.5rem;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .text-content a {
        width: auto;
        margin: 0.25rem 0.5rem 0.25rem 0;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .chinese-sample {
        font-size: 1.375rem;
    }
}

/* Desktop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .chinese-hero-section {
        padding: 2rem 3rem;
    }
    
    .chinese-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .text-content {
        padding-left: 2rem;
    }
    
    .text-content h2 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }
    
    .text-content p {
        font-size: 1.0625rem;
    }
    
    .text-content a {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
    }
    
    .chinese-sample {
        font-size: 1.5rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .chinese-hero-section {
        padding: 2.5rem 4rem;
    }
    
    .chinese-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .text-content {
        padding-left: 3rem;
    }
    
    .text-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .text-content p {
        font-size: 1.125rem;
    }
    
    .text-content a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .chinese-preview {
        padding: 1.25rem;
    }
    
    .chinese-sample {
        font-size: 1.625rem;
    }
}







/* Medium Chinese Font Features Section */
.chinese-features-section {
    background: #f8fafc;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-features-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.chinese-features-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.chinese-features-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.chinese-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.chinese-feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chinese-feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.chinese-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.chinese-feature-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.chinese-feature-text strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .chinese-features-section {
        padding: 1.5rem 2rem;
    }
    
    .chinese-features-container {
        padding-left: 0;
    }
    
    .chinese-features-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .chinese-features-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-features-grid {
        gap: 1.25rem;
    }
    
    .chinese-feature-card {
        padding: 1.25rem;
    }
    
    .chinese-feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .chinese-feature-text {
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .chinese-features-container {
        padding-left: 2rem;
    }
    
    .chinese-features-title {
        text-align: left;
    }
    
    .chinese-features-description {
        text-align: left;
        margin-left: 0;
    }
    
    .chinese-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .chinese-features-section {
        padding: 2rem 4rem;
    }
    
    .chinese-features-container {
        padding-left: 3rem;
    }
    
    .chinese-features-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .chinese-features-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        text-align: left;
        margin-left: 0;
        max-width: 800px;
    }
    
    .chinese-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .chinese-feature-card {
        padding: 2rem;
    }
    
    .chinese-feature-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .chinese-feature-text {
        font-size: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .chinese-features-container {
        max-width: 1300px;
        padding-left: 4rem;
    }
    
    .chinese-features-grid {
        gap: 2.5rem;
    }
    
    .chinese-feature-card {
        padding: 2.25rem;
    }
}












/* Medium Chinese Font Examples Section */
.chinese-examples-section {
    background: #ffffff;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-examples-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.chinese-examples-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.chinese-examples-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.chinese-examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chinese-example-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chinese-example-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.chinese-example-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.chinese-example-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.chinese-example-output {
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
}

.chinese-example-output strong {
    color: #1f2937;
    font-weight: 600;
}

.chinese-sample-text {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 500;
    margin-left: 0.5rem;
    display: inline-block;
}

.chinese-examples-cta {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.chinese-examples-cta-text {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.chinese-examples-highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .chinese-examples-section {
        padding: 1.5rem 2rem;
    }
    
    .chinese-examples-container {
        padding-left: 0;
    }
    
    .chinese-examples-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .chinese-examples-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-examples-grid {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-example-card {
        padding: 1.25rem;
    }
    
    .chinese-example-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .chinese-example-description {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .chinese-example-output {
        font-size: 0.9rem;
    }
    
    .chinese-sample-text {
        font-size: 1.375rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .chinese-examples-cta {
        padding: 1.25rem;
    }
    
    .chinese-examples-cta-text {
        font-size: 0.95rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .chinese-examples-container {
        padding-left: 2rem;
    }
    
    .chinese-examples-title {
        text-align: left;
    }
    
    .chinese-examples-description {
        text-align: left;
        margin-left: 0;
    }
    
    .chinese-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .chinese-examples-cta {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .chinese-examples-section {
        padding: 2rem 4rem;
    }
    
    .chinese-examples-container {
        padding-left: 3rem;
    }
    
    .chinese-examples-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .chinese-examples-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        text-align: left;
        margin-left: 0;
        max-width: 800px;
    }
    
    .chinese-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .chinese-example-card {
        padding: 2rem;
    }
    
    .chinese-example-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .chinese-example-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .chinese-example-output {
        font-size: 1rem;
    }
    
    .chinese-sample-text {
        font-size: 1.75rem;
    }
    
    .chinese-examples-cta {
        padding: 2rem;
        text-align: left;
    }
    
    .chinese-examples-cta-text {
        font-size: 1.125rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .chinese-examples-container {
        max-width: 1300px;
        padding-left: 4rem;
    }
    
    .chinese-examples-grid {
        gap: 2.5rem;
    }
    
    .chinese-example-card {
        padding: 2.25rem;
    }
    
    .chinese-sample-text {
        font-size: 2rem;
    }
}






/* Medium Chinese Font How-To Section */
.chinese-howto-section {
    background: #f8fafc;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-howto-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.chinese-howto-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.chinese-howto-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.chinese-howto-steps {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chinese-howto-steps ol {
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: decimal;
}

.chinese-howto-steps li {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.chinese-howto-steps li:last-child {
    margin-bottom: 0;
}

.chinese-howto-steps li strong {
    color: #3b82f6;
    font-weight: 600;
}

.chinese-howto-cta {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chinese-howto-cta-text {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.chinese-howto-highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .chinese-howto-section {
        padding: 1.5rem 2rem;
    }
    
    .chinese-howto-container {
        padding-left: 0;
    }
    
    .chinese-howto-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .chinese-howto-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-howto-steps {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-howto-steps ol {
        padding-left: 1.25rem;
    }
    
    .chinese-howto-steps li {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
        padding-left: 0.375rem;
    }
    
    .chinese-howto-cta {
        padding: 1.25rem;
    }
    
    .chinese-howto-cta-text {
        font-size: 0.95rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .chinese-howto-container {
        padding-left: 2rem;
    }
    
    .chinese-howto-title {
        text-align: left;
    }
    
    .chinese-howto-description {
        text-align: left;
        margin-left: 0;
    }
    
    .chinese-howto-cta {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .chinese-howto-section {
        padding: 2rem 4rem;
    }
    
    .chinese-howto-container {
        padding-left: 3rem;
    }
    
    .chinese-howto-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .chinese-howto-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        text-align: left;
        margin-left: 0;
        max-width: 800px;
    }
    
    .chinese-howto-steps {
        padding: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .chinese-howto-steps ol {
        padding-left: 1.75rem;
    }
    
    .chinese-howto-steps li {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding-left: 0.75rem;
    }
    
    .chinese-howto-cta {
        padding: 2rem;
        text-align: left;
    }
    
    .chinese-howto-cta-text {
        font-size: 1.125rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .chinese-howto-container {
        max-width: 1300px;
        padding-left: 4rem;
    }
    
    .chinese-howto-steps {
        padding: 3rem;
    }
    
    .chinese-howto-steps li {
        margin-bottom: 1.5rem;
    }
}





/* Medium Chinese Font FAQ Section */
.chinese-faq-section {
    background: #ffffff;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.chinese-faq-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    text-align: center;
}

.chinese-faq-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chinese-faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.chinese-faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.chinese-faq-answer {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.chinese-faq-answer strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .chinese-faq-section {
        padding: 1.5rem 2rem;
    }
    
    .chinese-faq-container {
        padding-left: 0;
    }
    
    .chinese-faq-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-faq-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .chinese-faq-question {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .chinese-faq-answer {
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .chinese-faq-container {
        padding-left: 2rem;
    }
    
    .chinese-faq-title {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .chinese-faq-section {
        padding: 2rem 4rem;
    }
    
    .chinese-faq-container {
        padding-left: 3rem;
    }
    
    .chinese-faq-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .chinese-faq-item {
        padding: 2rem;
        margin-bottom: 1.75rem;
    }
    
    .chinese-faq-question {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .chinese-faq-answer {
        font-size: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .chinese-faq-container {
        max-width: 1300px;
        padding-left: 4rem;
    }
    
    .chinese-faq-item {
        padding: 2.25rem;
        margin-bottom: 2rem;
    }
}




/* Medium Chinese Font Testimonials Section */
.chinese-testimonials-section {
    background: #f8fafc;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chinese-testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.chinese-testimonials-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    text-align: center;
}

.chinese-testimonial {
    background: #ffffff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.chinese-testimonial:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.chinese-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.chinese-testimonial p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.chinese-testimonial p strong {
    color: #3b82f6;
    font-weight: 600;
    font-style: normal;
}

.chinese-testimonial footer {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    font-style: normal;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.chinese-testimonial footer::before {
    content: '— ';
    color: #9ca3af;
}

/* Mobile */
@media (max-width: 768px) {
    .chinese-testimonials-section {
        padding: 1.5rem 2rem;
    }
    
    .chinese-testimonials-container {
        padding-left: 0;
    }
    
    .chinese-testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .chinese-testimonial {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-left-width: 3px;
    }
    
    .chinese-testimonial::before {
        font-size: 2.5rem;
        top: -0.25rem;
        left: 0.75rem;
    }
    
    .chinese-testimonial p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .chinese-testimonial footer {
        font-size: 0.8rem;
        padding-top: 0.625rem;
        margin-top: 0.625rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .chinese-testimonials-container {
        padding-left: 2rem;
    }
    
    .chinese-testimonials-title {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .chinese-testimonials-section {
        padding: 2rem 4rem;
    }
    
    .chinese-testimonials-container {
        padding-left: 3rem;
    }
    
    .chinese-testimonials-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .chinese-testimonial {
        padding: 2rem;
        margin-bottom: 1.75rem;
    }
    
    .chinese-testimonial::before {
        font-size: 3.5rem;
        top: -0.75rem;
        left: 1.25rem;
    }
    
    .chinese-testimonial p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .chinese-testimonial footer {
        font-size: 0.9rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .chinese-testimonials-container {
        max-width: 1300px;
        padding-left: 4rem;
    }
    
    .chinese-testimonial {
        padding: 2.25rem;
        margin-bottom: 2rem;
    }
    
    .chinese-testimonial p {
        font-size: 1.125rem;
    }
    
    .chinese-testimonial footer {
        font-size: 1rem;
    }
}

/* Grid layout for larger screens (optional enhancement) */
@media (min-width: 1200px) {
    .chinese-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .chinese-testimonial {
        margin-bottom: 0;
    }
}














/* Japanese Font Generator Testimonials Section - Medium Scoped Styles */
.jpn-testimonials-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.jpn-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.jpn-testimonials-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.jpn-testimonials-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jpn-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jpn-testimonial {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: all 0.2s ease;
}

.jpn-testimonial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: #2563eb;
}

.jpn-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    font-weight: 700;
    line-height: 1;
    background: #f8fafc;
    padding: 0 0.25rem;
}

.jpn-testimonial-headline {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.jpn-testimonial-content {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.jpn-testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.jpn-testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.jpn-testimonial-author::before {
    content: "— ";
    color: #9ca3af;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .jpn-testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .jpn-testimonials-header h2 {
        font-size: 1.25rem;
    }
    
    .jpn-testimonials-header p {
        font-size: 0.9rem;
    }
    
    .jpn-testimonials-list {
        gap: 1.25rem;
    }
    
    .jpn-testimonial {
        padding: 1.25rem;
    }
    
    .jpn-testimonial::before {
        font-size: 2.5rem;
        top: -0.375rem;
        left: 0.75rem;
    }
    
    .jpn-testimonial-headline {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .jpn-testimonial-content {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .jpn-testimonial-author {
        font-size: 0.8125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .jpn-testimonials-section {
        padding: 2.5rem 2rem;
    }
    
    .jpn-testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .jpn-testimonials-header p {
        font-size: 1.0625rem;
    }
    
    .jpn-testimonials-list {
        gap: 1.75rem;
    }
    
    .jpn-testimonial {
        padding: 2rem;
    }
    
    .jpn-testimonial-headline {
        font-size: 1.0625rem;
    }
    
    .jpn-testimonial-content {
        font-size: 1rem;
    }
    
    .jpn-testimonial-author {
        font-size: 0.9375rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .jpn-testimonials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .jpn-testimonial:nth-child(odd):last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .jpn-testimonial {
        transition: none;
    }
}

/* Focus states */
.jpn-testimonial:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Quote styling variations */
.jpn-testimonial:nth-child(2n) {
    border-left-color: #8b5cf6;
}

.jpn-testimonial:nth-child(2n)::before {
    color: #8b5cf6;
}

.jpn-testimonial:nth-child(2n):hover {
    border-left-color: #7c3aed;
}

.jpn-testimonial:nth-child(3n) {
    border-left-color: #10b981;
}

.jpn-testimonial:nth-child(3n)::before {
    color: #10b981;
}

.jpn-testimonial:nth-child(3n):hover {
    border-left-color: #059669;
}






/* Japanese Font Generator FAQ Section - Medium Scoped Styles */
.jpn-faq-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.jpn-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.jpn-faq-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.jpn-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jpn-faq-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.jpn-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.jpn-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    user-select: none;
}

.jpn-faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.jpn-faq-toggle {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.jpn-faq-item.active .jpn-faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
}

.jpn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.jpn-faq-item.active .jpn-faq-answer {
    max-height: 200px;
}

.jpn-faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.jpn-faq-answer p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .jpn-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .jpn-faq-header h2 {
        font-size: 1.25rem;
    }
    
    .jpn-faq-question {
        padding: 1.25rem;
    }
    
    .jpn-faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }
    
    .jpn-faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .jpn-faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .jpn-faq-answer p {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .jpn-faq-section {
        padding: 2.5rem 2rem;
    }
    
    .jpn-faq-header h2 {
        font-size: 1.75rem;
    }
    
    .jpn-faq-question h3 {
        font-size: 1.0625rem;
    }
    
    .jpn-faq-answer p {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .jpn-faq-item,
    .jpn-faq-toggle,
    .jpn-faq-answer {
        transition: none;
    }
}

/* Focus states */
.jpn-faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.jpn-faq-question:focus .jpn-faq-toggle {
    background: #2563eb;
}



















/* Japanese Font Generator How-To Section - Medium Scoped Styles */
.jpn-howto-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-howto-container {
    max-width: 800px;
    margin: 0 auto;
}

.jpn-howto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.jpn-howto-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.jpn-howto-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jpn-steps-header {
    text-align: left;
    margin: 2rem 0 1.5rem 0;
}

.jpn-steps-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.jpn-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    counter-reset: step-counter;
}

.jpn-step-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
    transition: box-shadow 0.2s ease;
}

.jpn-step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jpn-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.jpn-step-title {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.jpn-step-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.jpn-howto-footer {
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.jpn-howto-footer p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .jpn-howto-section {
        padding: 1.5rem 1rem;
    }
    
    .jpn-howto-header h2 {
        font-size: 1.25rem;
    }
    
    .jpn-howto-header p {
        font-size: 0.9rem;
    }
    
    .jpn-steps-header h3 {
        font-size: 1.125rem;
    }
    
    .jpn-step-item {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }
    
    .jpn-step-item::before {
        left: 0.75rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .jpn-step-title {
        font-size: 0.9rem;
    }
    
    .jpn-step-description {
        font-size: 0.85rem;
    }
    
    .jpn-howto-footer {
        padding: 1.25rem;
    }
    
    .jpn-howto-footer p {
        font-size: 0.9rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .jpn-howto-section {
        padding: 2.5rem 2rem;
    }
    
    .jpn-howto-header h2 {
        font-size: 1.75rem;
    }
    
    .jpn-howto-header p {
        font-size: 1.0625rem;
    }
    
    .jpn-steps-header h3 {
        font-size: 1.375rem;
    }
    
    .jpn-step-title {
        font-size: 1.0625rem;
    }
    
    .jpn-step-description {
        font-size: 0.95rem;
    }
    
    .jpn-howto-footer p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .jpn-step-item {
        transition: none;
    }
}

/* Focus states */
.jpn-step-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
















/* Japanese Font Generator Examples Section - Medium Scoped Styles */
.jpn-examples-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-examples-container {
    max-width: 800px;
    margin: 0 auto;
}

.jpn-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.jpn-examples-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.jpn-examples-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jpn-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.jpn-example-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.jpn-example-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.jpn-example-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.jpn-example-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.jpn-sample-output {
    background: #ffffff;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.jpn-sample-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jpn-sample-text {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

/* Specific font styles for each example */
.jpn-traditional {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
    font-weight: 400;
}

.jpn-modern {
    font-family: "Hiragino Sans", "Yu Gothic UI", "Meiryo UI", sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.jpn-kawaii {
    font-family: "Comic Sans MS", "Hiragino Sans", "Yu Gothic", cursive;
    font-weight: 500;
    transform: rotate(-1deg);
}

.jpn-bold {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "MS Gothic", sans-serif;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.jpn-brush {
    font-family: "Brush Script MT", "KaiTi", "Hiragino Mincho ProN", cursive;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .jpn-examples-section {
        padding: 1.5rem 1rem;
    }
    
    .jpn-examples-header h2 {
        font-size: 1.25rem;
    }
    
    .jpn-examples-header p {
        font-size: 0.9rem;
    }
    
    .jpn-examples-list {
        gap: 1.25rem;
    }
    
    .jpn-example-item {
        padding: 1.25rem;
    }
    
    .jpn-example-header h3 {
        font-size: 1rem;
    }
    
    .jpn-example-description {
        font-size: 0.85rem;
    }
    
    .jpn-sample-text {
        font-size: 1.125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .jpn-examples-section {
        padding: 2.5rem 2rem;
    }
    
    .jpn-examples-header h2 {
        font-size: 1.75rem;
    }
    
    .jpn-examples-header p {
        font-size: 1.0625rem;
    }
    
    .jpn-sample-text {
        font-size: 1.375rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .jpn-example-item {
        transition: none;
    }
}

/* Focus states */
.jpn-example-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


















/* Japanese Font Generator Features Section - Scoped Styles */
.jpn-features-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jpn-features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.jpn-features-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.jpn-features-header p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.jpn-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.jpn-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jpn-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.jpn-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.jpn-feature-card:hover::before {
    transform: scaleX(1);
}

.jpn-feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.jpn-feature-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Icon styling */
.jpn-feature-card h3::before {
    content: attr(data-icon);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .jpn-features-section {
        padding: 2rem 1.5rem;
    }
    
    .jpn-features-header {
        margin-bottom: 2rem;
    }
    
    .jpn-features-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .jpn-features-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .jpn-features-grid {
        gap: 1.5rem;
    }
    
    .jpn-feature-card {
        padding: 1.5rem;
    }
    
    .jpn-feature-card h3 {
        font-size: 1.25rem;
        gap: 0.5rem;
    }
    
    .jpn-feature-card h3::before {
        font-size: 1.25rem;
    }
    
    .jpn-feature-card p {
        font-size: 0.9rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .jpn-features-section {
        padding: 2.5rem 2rem;
    }
    
    .jpn-features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .jpn-features-header h2 {
        font-size: 1.75rem;
    }
    
    .jpn-feature-card {
        padding: 1.75rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .jpn-features-section {
        padding: 4rem 3rem;
    }
    
    .jpn-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .jpn-features-header {
        margin-bottom: 4rem;
    }
    
    .jpn-features-header h2 {
        font-size: 2.25rem;
    }
    
    .jpn-feature-card {
        padding: 2.5rem;
    }
    
    .jpn-feature-card h3 {
        font-size: 1.5rem;
    }
    
    .jpn-feature-card p {
        font-size: 1.0625rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .jpn-features-section {
        padding: 5rem 4rem;
    }
    
    .jpn-features-grid {
        gap: 3rem;
    }
    
    .jpn-feature-card {
        padding: 3rem;
    }
}

/* Animation for staggered load effect */
.jpn-feature-card:nth-child(1) {
    animation: jpn-fade-in-up 0.6s ease-out 0.1s both;
}

.jpn-feature-card:nth-child(2) {
    animation: jpn-fade-in-up 0.6s ease-out 0.2s both;
}

.jpn-feature-card:nth-child(3) {
    animation: jpn-fade-in-up 0.6s ease-out 0.3s both;
}

@keyframes jpn-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .jpn-feature-card,
    .jpn-feature-card::before {
        transition: none;
    }
    
    .jpn-feature-card:nth-child(1),
    .jpn-feature-card:nth-child(2),
    .jpn-feature-card:nth-child(3) {
        animation: none;
    }
    
    .jpn-feature-card:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.jpn-feature-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}




/* Japanese Font Generator Section - Scoped Styles */
.jpn-hero-section {
    background: #ffffff;
    padding: 2rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.jpn-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.jpn-text-content {
    padding-left: 2.5rem;
}

.jpn-text-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.jpn-text-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.jpn-text-content p:first-of-type {
    margin-bottom: 1.5rem;
}

.jpn-text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jpn-text-content li {
    margin: 0.5rem 0;
}

.jpn-text-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin: 0.25rem 0.75rem 0.25rem 0;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.jpn-text-content li:first-child a {
    background: #3b82f6;
    border: 1px solid #3b82f6;
}

.jpn-text-content li:first-child a:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.jpn-text-content li:last-child a {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.jpn-text-content li:last-child a:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jpn-image-content {
    display: flex;
    justify-content: center;
}

.jpn-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .jpn-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .jpn-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .jpn-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .jpn-fonts-showcase {
        gap: 1.5rem;
    }
}

.jpn-font-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.jpn-font-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.jpn-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jpn-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Japanese Font Families */
.jpn-font-gothic {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "MS Gothic", sans-serif;
    font-weight: 500;
}

.jpn-font-mincho {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
}

.jpn-font-rounded {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", sans-serif;
    font-weight: 400;
}

.jpn-font-brush {
    font-family: "Brush Script MT", "KaiTi", "Hiragino Mincho ProN", cursive;
    font-weight: 600;
}

/* Mobile Extra Small (320px-479px) */
@media (max-width: 479px) {
    .jpn-hero-section {
        padding: 1rem 1rem;
    }
    
    .jpn-hero-container {
        text-align: center;
        gap: 1.25rem;
    }
    
    .jpn-text-content {
        padding-left: 0;
    }
    
    .jpn-text-content h2 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .jpn-text-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .jpn-text-content a {
        width: 100%;
        max-width: 200px;
        margin: 0.375rem 0;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .jpn-fonts-showcase {
        gap: 0.75rem;
    }
    
    .jpn-font-preview {
        padding: 0.75rem;
    }
    
    .jpn-sample {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .jpn-label {
        font-size: 0.6875rem;
    }
}

/* Mobile (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .jpn-hero-section {
        padding: 1.25rem 1.5rem;
    }
    
    .jpn-hero-container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .jpn-text-content {
        padding-left: 0;
    }
    
    .jpn-text-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .jpn-text-content p {
        font-size: 0.9rem;
    }
    
    .jpn-text-content a {
        width: 48%;
        margin: 0.25rem 1%;
        min-width: auto;
        font-size: 0.875rem;
    }
    
    .jpn-font-preview {
        padding: 0.875rem;
    }
    
    .jpn-sample {
        font-size: 1.125rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .jpn-hero-section {
        padding: 1.75rem 2.5rem;
    }
    
    .jpn-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .jpn-text-content {
        padding-left: 1.5rem;
    }
    
    .jpn-text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .jpn-text-content p {
        font-size: 1rem;
    }
    
    .jpn-text-content a {
        width: auto;
        margin: 0.25rem 0.5rem 0.25rem 0;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .jpn-sample {
        font-size: 1.375rem;
    }
}

/* Desktop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .jpn-hero-section {
        padding: 2rem 3rem;
    }
    
    .jpn-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .jpn-text-content {
        padding-left: 2rem;
    }
    
    .jpn-text-content h2 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }
    
    .jpn-text-content p {
        font-size: 1.0625rem;
    }
    
    .jpn-text-content a {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
    }
    
    .jpn-sample {
        font-size: 1.5rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .jpn-hero-section {
        padding: 2.5rem 4rem;
    }
    
    .jpn-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .jpn-text-content {
        padding-left: 3rem;
    }
    
    .jpn-text-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .jpn-text-content p {
        font-size: 1.125rem;
    }
    
    .jpn-text-content a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .jpn-font-preview {
        padding: 1.25rem;
    }
    
    .jpn-sample {
        font-size: 1.625rem;
    }
}





















/* Crazy Font Generator Testimonials Section - Medium Scoped Styles */
.crazy-testimonials-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.crazy-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.crazy-testimonials-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.crazy-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.crazy-testimonial {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: all 0.2s ease;
}

.crazy-testimonial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: #2563eb;
}

.crazy-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    font-weight: 700;
    line-height: 1;
    background: #f8fafc;
    padding: 0 0.25rem;
}

.crazy-testimonial-content {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.crazy-testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.crazy-testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.crazy-testimonial-author::before {
    content: "— ";
    color: #9ca3af;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-testimonials-header h2 {
        font-size: 1.25rem;
    }
    
    .crazy-testimonials-list {
        gap: 1.25rem;
    }
    
    .crazy-testimonial {
        padding: 1.25rem;
    }
    
    .crazy-testimonial::before {
        font-size: 2.5rem;
        top: -0.375rem;
        left: 0.75rem;
    }
    
    .crazy-testimonial-content {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .crazy-testimonial-author {
        font-size: 0.8125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .crazy-testimonials-section {
        padding: 2.5rem 2rem;
    }
    
    .crazy-testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .crazy-testimonials-list {
        gap: 1.75rem;
    }
    
    .crazy-testimonial {
        padding: 2rem;
    }
    
    .crazy-testimonial-content {
        font-size: 1rem;
    }
    
    .crazy-testimonial-author {
        font-size: 0.9375rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .crazy-testimonials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-testimonial {
        transition: none;
    }
}

/* Focus states */
.crazy-testimonial:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Quote styling variations */
.crazy-testimonial:nth-child(2n) {
    border-left-color: #8b5cf6;
}

.crazy-testimonial:nth-child(2n)::before {
    color: #8b5cf6;
}

.crazy-testimonial:nth-child(2n):hover {
    border-left-color: #7c3aed;
}

.crazy-testimonial:nth-child(3n) {
    border-left-color: #10b981;
}

.crazy-testimonial:nth-child(3n)::before {
    color: #10b981;
}

.crazy-testimonial:nth-child(3n):hover {
    border-left-color: #059669;
}

.crazy-testimonial:nth-child(4n) {
    border-left-color: #f59e0b;
}

.crazy-testimonial:nth-child(4n)::before {
    color: #f59e0b;
}

.crazy-testimonial:nth-child(4n):hover {
    border-left-color: #d97706;
}













/* Crazy Font Generator FAQ Section - Medium Scoped Styles */
.crazy-faq-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.crazy-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.crazy-faq-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.crazy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crazy-faq-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.crazy-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.crazy-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    user-select: none;
}

.crazy-faq-question strong {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.crazy-faq-toggle {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.crazy-faq-item.active .crazy-faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
}

.crazy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.crazy-faq-item.active .crazy-faq-answer {
    max-height: 200px;
}

.crazy-faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.crazy-faq-answer p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-faq-header h2 {
        font-size: 1.25rem;
    }
    
    .crazy-faq-question {
        padding: 1.25rem;
    }
    
    .crazy-faq-question strong {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }
    
    .crazy-faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .crazy-faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .crazy-faq-answer p {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .crazy-faq-section {
        padding: 2.5rem 2rem;
    }
    
    .crazy-faq-header h2 {
        font-size: 1.75rem;
    }
    
    .crazy-faq-question strong {
        font-size: 1.0625rem;
    }
    
    .crazy-faq-answer p {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-faq-item,
    .crazy-faq-toggle,
    .crazy-faq-answer {
        transition: none;
    }
}

/* Focus states */
.crazy-faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.crazy-faq-question:focus .crazy-faq-toggle {
    background: #2563eb;
}


















/* Crazy Font Generator How-To Section - Medium Scoped Styles */
.crazy-howto-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-howto-container {
    max-width: 800px;
    margin: 0 auto;
}

.crazy-howto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.crazy-howto-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.crazy-howto-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.crazy-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.crazy-step-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
    transition: box-shadow 0.2s ease;
}

.crazy-step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.crazy-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.crazy-step-content {
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-howto-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-howto-header h2 {
        font-size: 1.25rem;
    }
    
    .crazy-howto-header p {
        font-size: 0.9rem;
    }
    
    .crazy-step-item {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }
    
    .crazy-step-item::before {
        left: 0.75rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .crazy-step-content {
        font-size: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .crazy-howto-section {
        padding: 2.5rem 2rem;
    }
    
    .crazy-howto-header h2 {
        font-size: 1.75rem;
    }
    
    .crazy-howto-header p {
        font-size: 1.0625rem;
    }
    
    .crazy-step-item {
        padding: 2rem;
        padding-left: 4.5rem;
    }
    
    .crazy-step-item::before {
        left: 1.25rem;
        top: 2rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
    
    .crazy-step-content {
        font-size: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-step-item {
        transition: none;
    }
}

/* Focus states */
.crazy-step-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}















/* Crazy Font Generator Examples Section - Medium Scoped Styles */
.crazy-examples-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-examples-container {
    max-width: 800px;
    margin: 0 auto;
}

.crazy-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.crazy-examples-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.crazy-examples-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.crazy-examples-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.crazy-example-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.crazy-example-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.crazy-example-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.crazy-example-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.crazy-sample-output {
    background: #ffffff;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.crazy-sample-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crazy-sample-text {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    word-break: break-all;
}

/* Specific font styles for each example */
.crazy-bold-edgy {
    font-family: "Impact", "Arial Black", sans-serif;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 2px 2px 0px #fca5a5;
    letter-spacing: 1px;
}

.crazy-playful {
    font-family: "Comic Sans MS", "Marker Felt", cursive;
    color: #7c3aed;
    font-weight: 600;
    transform: rotate(-1deg);
    text-decoration: underline wavy;
}

.crazy-futuristic {
    font-family: "Courier New", "Monaco", monospace;
    color: #0891b2;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(8, 145, 178, 0.5);
}

.crazy-elegant {
    font-family: "Georgia", "Times New Roman", serif;
    color: #be185d;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-examples-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-examples-header h2 {
        font-size: 1.25rem;
    }
    
    .crazy-examples-header p {
        font-size: 0.9rem;
    }
    
    .crazy-examples-list {
        gap: 1.25rem;
    }
    
    .crazy-example-item {
        padding: 1.25rem;
    }
    
    .crazy-example-header h3 {
        font-size: 1rem;
    }
    
    .crazy-example-description {
        font-size: 0.85rem;
    }
    
    .crazy-sample-text {
        font-size: 1.125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .crazy-examples-section {
        padding: 2.5rem 2rem;
    }
    
    .crazy-examples-header h2 {
        font-size: 1.75rem;
    }
    
    .crazy-examples-header p {
        font-size: 1.0625rem;
    }
    
    .crazy-examples-list {
        gap: 1.75rem;
    }
    
    .crazy-example-item {
        padding: 2rem;
    }
    
    .crazy-example-header h3 {
        font-size: 1.25rem;
    }
    
    .crazy-example-description {
        font-size: 0.95rem;
    }
    
    .crazy-sample-text {
        font-size: 1.375rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-example-item {
        transition: none;
    }
    
    .crazy-playful {
        transform: none;
    }
}

/* Focus states */
.crazy-example-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}














/* Crazy Font Generator Features Section - Medium Scoped Styles */
.crazy-features-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-features-container {
    max-width: 800px;
    margin: 0 auto;
}

.crazy-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.crazy-features-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.crazy-features-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.crazy-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.crazy-feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.crazy-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.crazy-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crazy-feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-features-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-features-header h2 {
        font-size: 1.25rem;
    }
    
    .crazy-features-header p {
        font-size: 0.9rem;
    }
    
    .crazy-features-grid {
        gap: 1.25rem;
    }
    
    .crazy-feature-card {
        padding: 1.25rem;
    }
    
    .crazy-feature-card h3 {
        font-size: 1rem;
        gap: 0.375rem;
    }
    
    .crazy-feature-card p {
        font-size: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .crazy-features-section {
        padding: 2.5rem 2rem;
    }
    
    .crazy-features-header h2 {
        font-size: 1.75rem;
    }
    
    .crazy-features-header p {
        font-size: 1.0625rem;
    }
    
    .crazy-features-grid {
        gap: 1.75rem;
    }
    
    .crazy-feature-card {
        padding: 2rem;
    }
    
    .crazy-feature-card h3 {
        font-size: 1.25rem;
        gap: 0.625rem;
    }
    
    .crazy-feature-card p {
        font-size: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .crazy-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .crazy-feature-card {
        padding: 2.5rem;
    }
    
    .crazy-feature-card h3 {
        font-size: 1.375rem;
    }
    
    .crazy-feature-card p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-feature-card {
        transition: none;
    }
}

/* Focus states */
.crazy-feature-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}












/* Crazy Font Generator Hero Section - Medium Scoped Styles */
.crazy-hero-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crazy-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.crazy-text-content {
    padding-left: 2.5rem;
}

.crazy-text-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.crazy-text-content p:first-of-type {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.crazy-text-content p:last-of-type {
    margin: 0;
}

.crazy-text-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin: 0.25rem 0.75rem 0.25rem 0;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.crazy-text-content p:last-of-type a:first-child {
    background: #3b82f6;
    border: 1px solid #3b82f6;
}

.crazy-text-content p:last-of-type a:first-child:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.crazy-text-content p:last-of-type a:last-child {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.crazy-text-content p:last-of-type a:last-child:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.crazy-image-content {
    display: flex;
    justify-content: center;
}

.crazy-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .crazy-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .crazy-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .crazy-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .crazy-fonts-showcase {
        gap: 1.5rem;
    }
}

.crazy-font-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.crazy-font-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.crazy-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crazy-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Crazy Font Families */
.crazy-wild {
    font-family: "Impact", "Arial Black", sans-serif;
    font-weight: 900;
    text-shadow: 2px 2px 0px #ff6b6b;
    color: #ff4757;
}

.crazy-tech {
    font-family: "Courier New", "Monaco", monospace;
    font-weight: 600;
    letter-spacing: 2px;
    color: #3742fa;
}

.crazy-fancy {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    text-decoration: underline;
    color: #e84393;
}

.crazy-bold {
    font-family: "Arial Black", "Helvetica", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00d2d3;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .crazy-hero-section {
        padding: 1.5rem 1rem;
    }
    
    .crazy-text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .crazy-text-content p:first-of-type {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .crazy-text-content a {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
        margin: 0.375rem 0.5rem;
        display: block;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .crazy-preview-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 280px;
    }
    
    .crazy-font-preview {
        padding: 0.875rem;
    }
    
    .crazy-sample {
        font-size: 1.125rem;
    }
}

/* Tablet and up */
@media (min-width: 769px) {
    .crazy-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .crazy-text-content {
        padding-left: 2.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .crazy-hero-section {
        padding: 2rem 4rem;
    }
    
    .crazy-text-content {
        padding-left: 3rem;
    }
    
    .crazy-text-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .crazy-text-content p:first-of-type {
        font-size: 1.125rem;
    }
    
    .crazy-text-content a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .crazy-font-preview {
        padding: 1.25rem;
    }
    
    .crazy-sample {
        font-size: 1.625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .crazy-text-content h2 {
        animation: none;
    }
    
    .crazy-font-preview {
        transition: none;
    }
    
    .crazy-font-preview:hover {
        transform: none;
    }
}

/* Focus states */
.crazy-text-content a:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}














/* Instagram Font Generator Testimonials Section - Medium Scoped Styles */
.ig-testimonials-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.ig-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ig-testimonials-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.ig-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ig-testimonial {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: all 0.2s ease;
}

.ig-testimonial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: #2563eb;
}

.ig-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    font-weight: 700;
    line-height: 1;
    background: #f8fafc;
    padding: 0 0.25rem;
}

.ig-testimonial-content {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.ig-testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.ig-testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.ig-testimonial-author::before {
    content: "— ";
    color: #9ca3af;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .ig-testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .ig-testimonials-header h2 {
        font-size: 1.25rem;
    }
    
    .ig-testimonials-list {
        gap: 1.25rem;
    }
    
    .ig-testimonial {
        padding: 1.25rem;
    }
    
    .ig-testimonial::before {
        font-size: 2.5rem;
        top: -0.375rem;
        left: 0.75rem;
    }
    
    .ig-testimonial-content {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .ig-testimonial-author {
        font-size: 0.8125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .ig-testimonials-section {
        padding: 2.5rem 2rem;
    }
    
    .ig-testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .ig-testimonials-list {
        gap: 1.75rem;
    }
    
    .ig-testimonial {
        padding: 2rem;
    }
    
    .ig-testimonial-content {
        font-size: 1rem;
    }
    
    .ig-testimonial-author {
        font-size: 0.9375rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .ig-testimonials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .ig-testimonial:nth-child(odd):last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-testimonial {
        transition: none;
    }
}

/* Focus states */
.ig-testimonial:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Quote styling variations */
.ig-testimonial:nth-child(2n) {
    border-left-color: #8b5cf6;
}

.ig-testimonial:nth-child(2n)::before {
    color: #8b5cf6;
}

.ig-testimonial:nth-child(2n):hover {
    border-left-color: #7c3aed;
}

.ig-testimonial:nth-child(3n) {
    border-left-color: #10b981;
}

.ig-testimonial:nth-child(3n)::before {
    color: #10b981;
}

.ig-testimonial:nth-child(3n):hover {
    border-left-color: #059669;
}

.ig-testimonial:nth-child(4n) {
    border-left-color: #f59e0b;
}

.ig-testimonial:nth-child(4n)::before {
    color: #f59e0b;
}

.ig-testimonial:nth-child(4n):hover {
    border-left-color: #d97706;
}

.ig-testimonial:nth-child(5n) {
    border-left-color: #ef4444;
}

.ig-testimonial:nth-child(5n)::before {
    color: #ef4444;
}

.ig-testimonial:nth-child(5n):hover {
    border-left-color: #dc2626;
}











/* Instagram Font Generator FAQ Section - Medium Scoped Styles */
.ig-faq-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ig-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ig-faq-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-faq-intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ig-faq-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.ig-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ig-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    user-select: none;
}

.ig-faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.ig-faq-toggle {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.ig-faq-item.active .ig-faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
}

.ig-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ig-faq-item.active .ig-faq-answer {
    max-height: 200px;
}

.ig-faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.ig-faq-answer p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .ig-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .ig-faq-header h2 {
        font-size: 1.25rem;
    }
    
    .ig-faq-intro {
        font-size: 0.9rem;
    }
    
    .ig-faq-question {
        padding: 1.25rem;
    }
    
    .ig-faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }
    
    .ig-faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .ig-faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .ig-faq-answer p {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .ig-faq-section {
        padding: 2.5rem 2rem;
    }
    
    .ig-faq-header h2 {
        font-size: 1.75rem;
    }
    
    .ig-faq-intro {
        font-size: 1.0625rem;
    }
    
    .ig-faq-question h3 {
        font-size: 1.0625rem;
    }
    
    .ig-faq-answer p {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-faq-item,
    .ig-faq-toggle,
    .ig-faq-answer {
        transition: none;
    }
}

/* Focus states */
.ig-faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.ig-faq-question:focus .ig-faq-toggle {
    background: #2563eb;
}








/* Instagram Font Generator How-To Section - Medium Scoped Styles */
.ig-howto-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-howto-container {
    max-width: 800px;
    margin: 0 auto;
}

.ig-howto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ig-howto-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-intro-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.ig-step-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
    transition: box-shadow 0.2s ease;
}

.ig-step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ig-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.ig-step-title {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.ig-step-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .ig-howto-section {
        padding: 1.5rem 1rem;
    }
    
    .ig-howto-header h2 {
        font-size: 1.25rem;
    }
    
    .ig-intro-text {
        font-size: 0.9rem;
    }
    
    .ig-step-item {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }
    
    .ig-step-item::before {
        left: 0.75rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .ig-step-title {
        font-size: 0.9rem;
    }
    
    .ig-step-description {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .ig-howto-section {
        padding: 2.5rem 2rem;
    }
    
    .ig-howto-header h2 {
        font-size: 1.75rem;
    }
    
    .ig-intro-text {
        font-size: 1.0625rem;
    }
    
    .ig-step-item {
        padding: 2rem;
        padding-left: 4.5rem;
    }
    
    .ig-step-item::before {
        left: 1.25rem;
        top: 2rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
    
    .ig-step-title {
        font-size: 1.0625rem;
    }
    
    .ig-step-description {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-step-item {
        transition: none;
    }
}

/* Focus states */
.ig-step-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

















/* Instagram Font Generator Examples Section - Medium Scoped Styles */
.ig-examples-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-examples-container {
    max-width: 800px;
    margin: 0 auto;
}

.ig-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ig-examples-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-examples-intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-font-example-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ig-font-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.ig-font-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ig-font-card .ig-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.ig-font-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-font-card .ig-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.ig-example-text {
    background: #ffffff;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    word-break: break-word;
}

/* Specific font styles for each example */
.ig-example-text.bold-bio {
    font-family: "Arial Black", "Helvetica", sans-serif;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: 0.5px;
}

.ig-example-text.fun-caption {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    color: #7c3aed;
    text-decoration: underline;
}

.ig-example-text.stylish-story {
    font-family: "Courier New", "Monaco", monospace;
    color: #059669;
    letter-spacing: 1px;
    font-weight: 600;
}

.ig-example-text.professional {
    font-family: "Georgia", "Times New Roman", serif;
    color: #1f2937;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ig-example-text.aesthetic-comment {
    font-family: "Helvetica", "Arial", sans-serif;
    color: #e91e63;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .ig-examples-section {
        padding: 1.5rem 1rem;
    }
    
    .ig-examples-header h2 {
        font-size: 1.25rem;
    }
    
    .ig-examples-intro {
        font-size: 0.9rem;
    }
    
    .ig-font-example-grid {
        gap: 1.25rem;
    }
    
    .ig-font-card {
        padding: 1.25rem;
    }
    
    .ig-font-card .ig-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .ig-font-card h3 {
        font-size: 1rem;
    }
    
    .ig-font-card .ig-description {
        font-size: 0.85rem;
    }
    
    .ig-example-text {
        font-size: 1rem;
        padding: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .ig-examples-section {
        padding: 2.5rem 2rem;
    }
    
    .ig-examples-header h2 {
        font-size: 1.75rem;
    }
    
    .ig-examples-intro {
        font-size: 1.0625rem;
    }
    
    .ig-font-example-grid {
        gap: 1.75rem;
    }
    
    .ig-font-card {
        padding: 2rem;
    }
    
    .ig-font-card .ig-icon {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .ig-font-card h3 {
        font-size: 1.25rem;
    }
    
    .ig-font-card .ig-description {
        font-size: 0.95rem;
    }
    
    .ig-example-text {
        font-size: 1.25rem;
        padding: 1.25rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .ig-font-example-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: start;
    }
    
    .ig-font-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-font-card {
        transition: none;
    }
}

/* Focus states */
.ig-font-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


















/* Instagram Font Generator Features Section - Medium Scoped Styles */
.ig-features-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-features-container {
    max-width: 800px;
    margin: 0 auto;
}

.ig-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ig-features-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-intro-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ig-feature-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.ig-feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ig-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.ig-feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.ig-feature-item p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .ig-features-section {
        padding: 1.5rem 1rem;
    }
    
    .ig-features-header h2 {
        font-size: 1.25rem;
    }
    
    .ig-intro-text {
        font-size: 0.9rem;
    }
    
    .ig-features-list {
        gap: 1.25rem;
    }
    
    .ig-feature-item {
        padding: 1.25rem;
    }
    
    .ig-emoji {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .ig-feature-item h3 {
        font-size: 1rem;
    }
    
    .ig-feature-item p {
        font-size: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .ig-features-section {
        padding: 2.5rem 2rem;
    }
    
    .ig-features-header h2 {
        font-size: 1.75rem;
    }
    
    .ig-intro-text {
        font-size: 1.0625rem;
    }
    
    .ig-features-list {
        gap: 1.75rem;
    }
    
    .ig-feature-item {
        padding: 2rem;
    }
    
    .ig-emoji {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .ig-feature-item h3 {
        font-size: 1.25rem;
    }
    
    .ig-feature-item p {
        font-size: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .ig-features-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .ig-feature-item {
        padding: 2.5rem;
    }
    
    .ig-feature-item h3 {
        font-size: 1.375rem;
    }
    
    .ig-feature-item p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-feature-item {
        transition: none;
    }
}

/* Focus states */
.ig-feature-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}










/* Instagram Font Generator Hero Section - Medium Scoped Styles */
.ig-hero-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ig-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.ig-text-content {
    padding-left: 2.5rem;
}

.ig-text-content h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.ig-text-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.ig-cta-buttons {
    margin: 0;
}

.ig-cta-buttons a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin: 0.25rem 0.75rem 0.25rem 0;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.ig-cta-primary {
    background: #3b82f6;
    border: 1px solid #3b82f6;
}

.ig-cta-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.ig-cta-secondary {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.ig-cta-secondary:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ig-image-content {
    display: flex;
    justify-content: center;
}

.ig-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .ig-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .ig-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .ig-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .ig-fonts-showcase {
        gap: 1.5rem;
    }
}

.ig-font-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.ig-font-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ig-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ig-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Instagram Font Families */
.ig-bold {
    font-family: "Arial Black", "Helvetica", sans-serif;
    font-weight: 900;
    color: #e91e63;
    text-shadow: 1px 1px 2px rgba(233, 30, 99, 0.3);
}

.ig-stylish {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    color: #9c27b0;
    text-decoration: underline;
}

.ig-cool {
    font-family: "Courier New", "Monaco", monospace;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2196f3;
    text-transform: uppercase;
}

.ig-trendy {
    font-family: "Comic Sans MS", "Marker Felt", cursive;
    color: #ff9800;
    font-weight: 600;
    transform: rotate(-1deg);
}

/* Mobile Extra Small (320px-479px) */
@media (max-width: 479px) {
    .ig-hero-section {
        padding: 1rem 1rem;
    }
    
    .ig-hero-container {
        text-align: center;
        gap: 1.25rem;
    }
    
    .ig-text-content {
        padding-left: 0;
    }
    
    .ig-text-content h1 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .ig-text-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .ig-cta-buttons a {
        width: 100%;
        max-width: 200px;
        margin: 0.375rem 0;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .ig-fonts-showcase {
        gap: 0.75rem;
    }
    
    .ig-font-preview {
        padding: 0.75rem;
    }
    
    .ig-sample {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .ig-label {
        font-size: 0.6875rem;
    }
}

/* Mobile (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .ig-hero-section {
        padding: 1.25rem 1.5rem;
    }
    
    .ig-hero-container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .ig-text-content {
        padding-left: 0;
    }
    
    .ig-text-content h1 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .ig-text-content p {
        font-size: 0.9rem;
    }
    
    .ig-cta-buttons a {
        width: 48%;
        margin: 0.25rem 1%;
        min-width: auto;
        font-size: 0.875rem;
    }
    
    .ig-font-preview {
        padding: 0.875rem;
    }
    
    .ig-sample {
        font-size: 1.125rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .ig-hero-section {
        padding: 1.75rem 2.5rem;
    }
    
    .ig-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .ig-text-content {
        padding-left: 1.5rem;
    }
    
    .ig-text-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .ig-text-content p {
        font-size: 1rem;
    }
    
    .ig-cta-buttons a {
        width: auto;
        margin: 0.25rem 0.5rem 0.25rem 0;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .ig-sample {
        font-size: 1.375rem;
    }
}

/* Desktop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .ig-hero-section {
        padding: 2rem 3rem;
    }
    
    .ig-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .ig-text-content {
        padding-left: 2rem;
    }
    
    .ig-text-content h1 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }
    
    .ig-text-content p {
        font-size: 1.0625rem;
    }
    
    .ig-cta-buttons a {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
    }
    
    .ig-sample {
        font-size: 1.5rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .ig-hero-section {
        padding: 2rem 4rem;
    }
    
    .ig-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .ig-text-content {
        padding-left: 3rem;
    }
    
    .ig-text-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .ig-text-content p {
        font-size: 1.125rem;
    }
    
    .ig-cta-buttons a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .ig-font-preview {
        padding: 1.25rem;
    }
    
    .ig-sample {
        font-size: 1.625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .ig-font-preview,
    .ig-cta-buttons a {
        transition: none;
    }
    
    .ig-font-preview:hover,
    .ig-cta-buttons a:hover {
        transform: none;
    }
    
    .ig-trendy {
        transform: none;
    }
}

/* Focus states */
.ig-cta-buttons a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.ig-font-preview:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

















/* Creepy Font Generator Testimonials Section - Medium Scoped Styles */
.creepy-testimonials-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.creepy-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.creepy-testimonials-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.creepy-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creepy-testimonial {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: all 0.2s ease;
}

.creepy-testimonial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: #2563eb;
}

.creepy-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    font-weight: 700;
    line-height: 1;
    background: #f8fafc;
    padding: 0 0.25rem;
}

.creepy-testimonial-content {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.creepy-testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.creepy-testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.creepy-testimonial-author::before {
    content: "— ";
    color: #9ca3af;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .creepy-testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .creepy-testimonials-header h2 {
        font-size: 1.25rem;
    }
    
    .creepy-testimonials-list {
        gap: 1.25rem;
    }
    
    .creepy-testimonial {
        padding: 1.25rem;
    }
    
    .creepy-testimonial::before {
        font-size: 2.5rem;
        top: -0.375rem;
        left: 0.75rem;
    }
    
    .creepy-testimonial-content {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .creepy-testimonial-author {
        font-size: 0.8125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .creepy-testimonials-section {
        padding: 2.5rem 2rem;
    }
    
    .creepy-testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .creepy-testimonials-list {
        gap: 1.75rem;
    }
    
    .creepy-testimonial {
        padding: 2rem;
    }
    
    .creepy-testimonial-content {
        font-size: 1rem;
    }
    
    .creepy-testimonial-author {
        font-size: 0.9375rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .creepy-testimonials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .creepy-testimonial:nth-child(odd):last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-testimonial {
        transition: none;
    }
}

/* Focus states */
.creepy-testimonial:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Quote styling variations */
.creepy-testimonial:nth-child(2n) {
    border-left-color: #8b5cf6;
}

.creepy-testimonial:nth-child(2n)::before {
    color: #8b5cf6;
}

.creepy-testimonial:nth-child(2n):hover {
    border-left-color: #7c3aed;
}

.creepy-testimonial:nth-child(3n) {
    border-left-color: #10b981;
}

.creepy-testimonial:nth-child(3n)::before {
    color: #10b981;
}

.creepy-testimonial:nth-child(3n):hover {
    border-left-color: #059669;
}

.creepy-testimonial:nth-child(4n) {
    border-left-color: #f59e0b;
}

.creepy-testimonial:nth-child(4n)::before {
    color: #f59e0b;
}

.creepy-testimonial:nth-child(4n):hover {
    border-left-color: #d97706;
}

.creepy-testimonial:nth-child(5n) {
    border-left-color: #ef4444;
}

.creepy-testimonial:nth-child(5n)::before {
    color: #ef4444;
}

.creepy-testimonial:nth-child(5n):hover {
    border-left-color: #dc2626;
}








/* Creepy Font Generator FAQ Section - Medium Scoped Styles */
.creepy-faq-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.creepy-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.creepy-faq-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.creepy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.creepy-faq-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.creepy-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.creepy-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    user-select: none;
}

.creepy-faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.creepy-faq-toggle {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.creepy-faq-item.active .creepy-faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
}

.creepy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.creepy-faq-item.active .creepy-faq-answer {
    max-height: 200px;
}

.creepy-faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.creepy-faq-answer p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.creepy-faq-footer {
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.creepy-faq-footer p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.creepy-faq-footer strong {
    color: #1f2937;
    font-weight: 600;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .creepy-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .creepy-faq-header h2 {
        font-size: 1.25rem;
    }
    
    .creepy-faq-question {
        padding: 1.25rem;
    }
    
    .creepy-faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }
    
    .creepy-faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .creepy-faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .creepy-faq-answer p {
        font-size: 0.85rem;
    }
    
    .creepy-faq-footer {
        padding: 1.25rem;
    }
    
    .creepy-faq-footer p {
        font-size: 0.9rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .creepy-faq-section {
        padding: 2.5rem 2rem;
    }
    
    .creepy-faq-header h2 {
        font-size: 1.75rem;
    }
    
    .creepy-faq-question h3 {
        font-size: 1.0625rem;
    }
    
    .creepy-faq-answer p {
        font-size: 0.95rem;
    }
    
    .creepy-faq-footer p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-faq-item,
    .creepy-faq-toggle,
    .creepy-faq-answer {
        transition: none;
    }
}

/* Focus states */
.creepy-faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.creepy-faq-question:focus .creepy-faq-toggle {
    background: #2563eb;
}






/* Creepy Font Generator How-To Section - Medium Scoped Styles */
.creepy-howto-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-howto-container {
    max-width: 800px;
    margin: 0 auto;
}

.creepy-howto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.creepy-howto-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.creepy-howto-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.creepy-steps-header {
    text-align: left;
    margin: 2rem 0 1.5rem 0;
}

.creepy-steps-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.creepy-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.creepy-step-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
    transition: box-shadow 0.2s ease;
}

.creepy-step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.creepy-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.creepy-step-title {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.creepy-step-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .creepy-howto-section {
        padding: 1.5rem 1rem;
    }
    
    .creepy-howto-header h2 {
        font-size: 1.25rem;
    }
    
    .creepy-howto-header p {
        font-size: 0.9rem;
    }
    
    .creepy-steps-header h3 {
        font-size: 1.125rem;
    }
    
    .creepy-step-item {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }
    
    .creepy-step-item::before {
        left: 0.75rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .creepy-step-title {
        font-size: 0.9rem;
    }
    
    .creepy-step-description {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .creepy-howto-section {
        padding: 2.5rem 2rem;
    }
    
    .creepy-howto-header h2 {
        font-size: 1.75rem;
    }
    
    .creepy-howto-header p {
        font-size: 1.0625rem;
    }
    
    .creepy-steps-header h3 {
        font-size: 1.375rem;
    }
    
    .creepy-step-item {
        padding: 2rem;
        padding-left: 4.5rem;
    }
    
    .creepy-step-item::before {
        left: 1.25rem;
        top: 2rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
    
    .creepy-step-title {
        font-size: 1.0625rem;
    }
    
    .creepy-step-description {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-step-item {
        transition: none;
    }
}

/* Focus states */
.creepy-step-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}





/* Creepy Font Generator Examples Section - Medium Scoped Styles */
.creepy-examples-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-examples-container {
    max-width: 800px;
    margin: 0 auto;
}

.creepy-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.creepy-examples-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.creepy-examples-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.creepy-examples-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.creepy-example-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.creepy-example-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.creepy-example-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.creepy-example-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.creepy-example-use {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
}

.creepy-example-use strong {
    color: #374151;
    font-weight: 600;
}

.creepy-sample-output {
    background: #ffffff;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.creepy-sample-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creepy-sample-text {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    word-break: break-word;
}

/* Specific font styles for each example */
.creepy-haunted {
    font-family: "Chiller", "Creepster", serif;
    color: #7c2d12;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(124, 45, 18, 0.3);
    letter-spacing: 1px;
}

.creepy-bio {
    font-family: "Old English Text MT", "Blackletter", serif;
    color: #374151;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.creepy-logo {
    font-family: "Impact", "Arial Black", sans-serif;
    color: #dc2626;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.creepy-party {
    font-family: "Old English Text MT", "Blackletter", serif;
    color: #ea580c;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(234, 88, 12, 0.3);
}

.creepy-youtube {
    font-family: "Courier New", "Monaco", monospace;
    color: #059669;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(5, 150, 105, 0.4);
}

.creepy-examples-footer {
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.creepy-examples-footer p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .creepy-examples-section {
        padding: 1.5rem 1rem;
    }
    
    .creepy-examples-header h2 {
        font-size: 1.25rem;
    }
    
    .creepy-examples-header p {
        font-size: 0.9rem;
    }
    
    .creepy-examples-list {
        gap: 1.25rem;
    }
    
    .creepy-example-item {
        padding: 1.25rem;
    }
    
    .creepy-example-header h3 {
        font-size: 1rem;
    }
    
    .creepy-example-description,
    .creepy-example-use {
        font-size: 0.85rem;
    }
    
    .creepy-sample-text {
        font-size: 1.125rem;
    }
    
    .creepy-examples-footer {
        padding: 1.25rem;
    }
    
    .creepy-examples-footer p {
        font-size: 0.9rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .creepy-examples-section {
        padding: 2.5rem 2rem;
    }
    
    .creepy-examples-header h2 {
        font-size: 1.75rem;
    }
    
    .creepy-examples-header p {
        font-size: 1.0625rem;
    }
    
    .creepy-examples-list {
        gap: 1.75rem;
    }
    
    .creepy-example-item {
        padding: 2rem;
    }
    
    .creepy-example-header h3 {
        font-size: 1.25rem;
    }
    
    .creepy-example-description,
    .creepy-example-use {
        font-size: 0.95rem;
    }
    
    .creepy-sample-text {
        font-size: 1.375rem;
    }
    
    .creepy-examples-footer p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-example-item {
        transition: none;
    }
}

/* Focus states */
.creepy-example-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}






/* Creepy Font Generator Features Section - Medium Scoped Styles */
.creepy-features-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-features-container {
    max-width: 800px;
    margin: 0 auto;
}

.creepy-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.creepy-features-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.creepy-features-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.creepy-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.creepy-feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.creepy-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.creepy-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.creepy-feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .creepy-features-section {
        padding: 1.5rem 1rem;
    }
    
    .creepy-features-header h2 {
        font-size: 1.25rem;
    }
    
    .creepy-features-header p {
        font-size: 0.9rem;
    }
    
    .creepy-features-grid {
        gap: 1.25rem;
    }
    
    .creepy-feature-card {
        padding: 1.25rem;
    }
    
    .creepy-feature-card h3 {
        font-size: 1rem;
    }
    
    .creepy-feature-card p {
        font-size: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .creepy-features-section {
        padding: 2.5rem 2rem;
    }
    
    .creepy-features-header h2 {
        font-size: 1.75rem;
    }
    
    .creepy-features-header p {
        font-size: 1.0625rem;
    }
    
    .creepy-features-grid {
        gap: 1.75rem;
    }
    
    .creepy-feature-card {
        padding: 2rem;
    }
    
    .creepy-feature-card h3 {
        font-size: 1.25rem;
    }
    
    .creepy-feature-card p {
        font-size: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .creepy-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .creepy-feature-card {
        padding: 2.5rem;
    }
    
    .creepy-feature-card h3 {
        font-size: 1.375rem;
    }
    
    .creepy-feature-card p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-feature-card {
        transition: none;
    }
}

/* Focus states */
.creepy-feature-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}






/* Creepy Font Generator Hero Section - Medium Scoped Styles */
.creepy-hero-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.creepy-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.creepy-text-content {
    padding-left: 2.5rem;
}

.creepy-text-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.creepy-text-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.creepy-text-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin: 0.25rem 0.75rem 0.25rem 0;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.creepy-text-content a:first-of-type {
    background: #3b82f6;
    border: 100px solid #3b82f6;
}

.creepy-text-content a:first-of-type:hover {
    background: #4aa4ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.creepy-text-content a:last-of-type {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.creepy-text-content a:last-of-type:hover {
    background: #4aa4ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creepy-image-content {
    display: flex;
    justify-content: center;
}

.creepy-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .creepy-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .creepy-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .creepy-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .creepy-fonts-showcase {
        gap: 1.5rem;
    }
}

.creepy-font-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.creepy-font-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.creepy-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.creepy-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Creepy Font Families */
.creepy-scary {
    font-family: "Chiller", "Creepster", "Horror", serif;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.3);
    font-weight: 700;
    transform: rotate(-1deg);
}

.creepy-gothic {
    font-family: "Old English Text MT", "Blackletter", serif;
    color: #374151;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.creepy-zombie {
    font-family: "Impact", "Arial Black", sans-serif;
    color: #059669;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(5, 150, 105, 0.5);
}

.creepy-horror {
    font-family: "Courier New", "Monaco", monospace;
    color: #7c2d12;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: underline wavy;
}

/* Mobile Extra Small (320px-479px) */
@media (max-width: 479px) {
    .creepy-hero-section {
        padding: 1rem 1rem;
    }
    
    .creepy-hero-container {
        text-align: center;
        gap: 1.25rem;
    }
    
    .creepy-text-content {
        padding-left: 0;
    }
    
    .creepy-text-content h2 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .creepy-text-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .creepy-text-content a {
        width: 100%;
        max-width: 200px;
        margin: 0.375rem 0;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .creepy-fonts-showcase {
        gap: 0.75rem;
    }
    
    .creepy-font-preview {
        padding: 0.75rem;
    }
    
    .creepy-sample {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .creepy-label {
        font-size: 0.6875rem;
    }
}

/* Mobile (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .creepy-hero-section {
        padding: 1.25rem 1.5rem;
    }
    
    .creepy-hero-container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .creepy-text-content {
        padding-left: 0;
    }
    
    .creepy-text-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .creepy-text-content p {
        font-size: 0.9rem;
    }
    
    .creepy-text-content a {
        width: 48%;
        margin: 0.25rem 1%;
        min-width: auto;
        font-size: 0.875rem;
    }
    
    .creepy-font-preview {
        padding: 0.875rem;
    }
    
    .creepy-sample {
        font-size: 1.125rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .creepy-hero-section {
        padding: 1.75rem 2.5rem;
    }
    
    .creepy-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .creepy-text-content {
        padding-left: 1.5rem;
    }
    
    .creepy-text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .creepy-text-content p {
        font-size: 1rem;
    }
    
    .creepy-text-content a {
        width: auto;
        margin: 0.25rem 0.5rem 0.25rem 0;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .creepy-sample {
        font-size: 1.375rem;
    }
}

/* Desktop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .creepy-hero-section {
        padding: 2rem 3rem;
    }
    
    .creepy-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .creepy-text-content {
        padding-left: 2rem;
    }
    
    .creepy-text-content h2 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }
    
    .creepy-text-content p {
        font-size: 1.0625rem;
    }
    
    .creepy-text-content a {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
    }
    
    .creepy-sample {
        font-size: 1.5rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .creepy-hero-section {
        padding: 2rem 4rem;
    }
    
    .creepy-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .creepy-text-content {
        padding-left: 3rem;
    }
    
    .creepy-text-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .creepy-text-content p {
        font-size: 1.125rem;
    }
    
    .creepy-text-content a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .creepy-font-preview {
        padding: 1.25rem;
    }
    
    .creepy-sample {
        font-size: 1.625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .creepy-font-preview,
    .creepy-text-content a {
        transition: none;
    }
    
    .creepy-font-preview:hover,
    .creepy-text-content a:hover {
        transform: none;
    }
    
    .creepy-scary {
        transform: none;
    }
}

/* Focus states */
.creepy-text-content a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.creepy-font-preview:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}







/* Glitch Font Generator Testimonials Section - Medium Scoped Styles */
.glitch-testimonials-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.glitch-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glitch-testimonials-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.glitch-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.glitch-testimonial {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: all 0.2s ease;
}

.glitch-testimonial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: #2563eb;
}

.glitch-testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: #3b82f6;
    font-weight: 700;
    line-height: 1;
    background: #f8fafc;
    padding: 0 0.25rem;
}

.glitch-testimonial-content {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.glitch-testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.glitch-testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.glitch-testimonial-author::before {
    content: "— ";
    color: #9ca3af;
}

.glitch-testimonials-footer {
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.glitch-testimonials-footer p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .glitch-testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .glitch-testimonials-header h2 {
        font-size: 1.25rem;
    }
    
    .glitch-testimonials-list {
        gap: 1.25rem;
    }
    
    .glitch-testimonial {
        padding: 1.25rem;
    }
    
    .glitch-testimonial::before {
        font-size: 2.5rem;
        top: -0.375rem;
        left: 0.75rem;
    }
    
    .glitch-testimonial-content {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .glitch-testimonial-author {
        font-size: 0.8125rem;
    }
    
    .glitch-testimonials-footer {
        padding: 1.25rem;
    }
    
    .glitch-testimonials-footer p {
        font-size: 0.9rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .glitch-testimonials-section {
        padding: 2.5rem 2rem;
    }
    
    .glitch-testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .glitch-testimonials-list {
        gap: 1.75rem;
    }
    
    .glitch-testimonial {
        padding: 2rem;
    }
    
    .glitch-testimonial-content {
        font-size: 1rem;
    }
    
    .glitch-testimonial-author {
        font-size: 0.9375rem;
    }
    
    .glitch-testimonials-footer p {
        font-size: 1.0625rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .glitch-testimonials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .glitch-testimonial:nth-child(odd):last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-testimonial {
        transition: none;
    }
}

/* Focus states */
.glitch-testimonial:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Quote styling variations */
.glitch-testimonial:nth-child(2n) {
    border-left-color: #8b5cf6;
}

.glitch-testimonial:nth-child(2n)::before {
    color: #8b5cf6;
}

.glitch-testimonial:nth-child(2n):hover {
    border-left-color: #7c3aed;
}

.glitch-testimonial:nth-child(3n) {
    border-left-color: #10b981;
}

.glitch-testimonial:nth-child(3n)::before {
    color: #10b981;
}

.glitch-testimonial:nth-child(3n):hover {
    border-left-color: #059669;
}

.glitch-testimonial:nth-child(4n) {
    border-left-color: #f59e0b;
}

.glitch-testimonial:nth-child(4n)::before {
    color: #f59e0b;
}

.glitch-testimonial:nth-child(4n):hover {
    border-left-color: #d97706;
}

.glitch-testimonial:nth-child(5n) {
    border-left-color: #ef4444;
}

.glitch-testimonial:nth-child(5n)::before {
    color: #ef4444;
}

.glitch-testimonial:nth-child(5n):hover {
    border-left-color: #dc2626;
}













/* Glitch Font Generator FAQ Section - Medium Scoped Styles */
.glitch-faq-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.glitch-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glitch-faq-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.glitch-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glitch-faq-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.glitch-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.glitch-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    user-select: none;
}

.glitch-faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.glitch-faq-toggle {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.glitch-faq-item.active .glitch-faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
}

.glitch-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.glitch-faq-item.active .glitch-faq-answer {
    max-height: 200px;
}

.glitch-faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.glitch-faq-answer p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .glitch-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .glitch-faq-header h2 {
        font-size: 1.25rem;
    }
    
    .glitch-faq-question {
        padding: 1.25rem;
    }
    
    .glitch-faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }
    
    .glitch-faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .glitch-faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .glitch-faq-answer p {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .glitch-faq-section {
        padding: 2.5rem 2rem;
    }
    
    .glitch-faq-header h2 {
        font-size: 1.75rem;
    }
    
    .glitch-faq-question h3 {
        font-size: 1.0625rem;
    }
    
    .glitch-faq-answer p {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-faq-item,
    .glitch-faq-toggle,
    .glitch-faq-answer {
        transition: none;
    }
}

/* Focus states */
.glitch-faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.glitch-faq-question:focus .glitch-faq-toggle {
    background: #2563eb;
}






/* Glitch Font Generator How-To Section - Medium Scoped Styles */
.glitch-howto-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-howto-container {
    max-width: 800px;
    margin: 0 auto;
}

.glitch-howto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glitch-howto-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.glitch-howto-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glitch-steps-header {
    text-align: left;
    margin: 2rem 0 1.5rem 0;
}

.glitch-steps-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.glitch-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.glitch-step-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
    transition: box-shadow 0.2s ease;
}

.glitch-step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.glitch-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.glitch-step-title {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.glitch-step-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .glitch-howto-section {
        padding: 1.5rem 1rem;
    }
    
    .glitch-howto-header h2 {
        font-size: 1.25rem;
    }
    
    .glitch-howto-header p {
        font-size: 0.9rem;
    }
    
    .glitch-steps-header h3 {
        font-size: 1.125rem;
    }
    
    .glitch-step-item {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }
    
    .glitch-step-item::before {
        left: 0.75rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .glitch-step-title {
        font-size: 0.9rem;
    }
    
    .glitch-step-description {
        font-size: 0.85rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .glitch-howto-section {
        padding: 2.5rem 2rem;
    }
    
    .glitch-howto-header h2 {
        font-size: 1.75rem;
    }
    
    .glitch-howto-header p {
        font-size: 1.0625rem;
    }
    
    .glitch-steps-header h3 {
        font-size: 1.375rem;
    }
    
    .glitch-step-item {
        padding: 2rem;
        padding-left: 4.5rem;
    }
    
    .glitch-step-item::before {
        left: 1.25rem;
        top: 2rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
    
    .glitch-step-title {
        font-size: 1.0625rem;
    }
    
    .glitch-step-description {
        font-size: 0.95rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-step-item {
        transition: none;
    }
}

/* Focus states */
.glitch-step-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}






/* Glitch Font Generator Examples Section - Medium Scoped Styles */
.glitch-examples-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-examples-container {
    max-width: 800px;
    margin: 0 auto;
}

.glitch-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glitch-examples-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.glitch-examples-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glitch-examples-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glitch-example-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.glitch-example-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.glitch-example-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glitch-example-use {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
}

.glitch-example-use strong {
    color: #374151;
    font-weight: 600;
}

.glitch-sample-output {
    background: #ffffff;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.glitch-sample-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: normal;
}

.glitch-sample-text {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    word-break: break-word;
}

/* Specific font styles for each example */
.glitch-bio {
    font-family: "Arial", "Helvetica", sans-serif;
    color: #8b5cf6;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    letter-spacing: 1px;
}

.glitch-digital {
    font-family: "Courier New", "Monaco", monospace;
    color: #0ea5e9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
}

.glitch-gaming {
    font-family: "Impact", "Arial Black", sans-serif;
    color: #10b981;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.5px;
}

.glitch-aesthetic {
    font-family: "Georgia", "Times New Roman", serif;
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(245, 158, 11, 0.4);
}

.glitch-horror {
    font-family: "Times New Roman", serif;
    color: #dc2626;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.4);
    letter-spacing: 0.5px;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .glitch-examples-section {
        padding: 1.5rem 1rem;
    }
    
    .glitch-examples-header h2 {
        font-size: 1.25rem;
    }
    
    .glitch-examples-header p {
        font-size: 0.9rem;
    }
    
    .glitch-examples-list {
        gap: 1.25rem;
    }
    
    .glitch-example-item {
        padding: 1.25rem;
    }
    
    .glitch-example-header h3 {
        font-size: 1rem;
        gap: 0.375rem;
    }
    
    .glitch-example-use {
        font-size: 0.8125rem;
    }
    
    .glitch-sample-text {
        font-size: 1.125rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .glitch-examples-section {
        padding: 2.5rem 2rem;
    }
    
    .glitch-examples-header h2 {
        font-size: 1.75rem;
    }
    
    .glitch-examples-header p {
        font-size: 1.0625rem;
    }
    
    .glitch-examples-list {
        gap: 1.75rem;
    }
    
    .glitch-example-item {
        padding: 2rem;
    }
    
    .glitch-example-header h3 {
        font-size: 1.25rem;
        gap: 0.625rem;
    }
    
    .glitch-example-use {
        font-size: 0.9375rem;
    }
    
    .glitch-sample-text {
        font-size: 1.375rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-example-item {
        transition: none;
    }
}

/* Focus states */
.glitch-example-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}





/* Glitch Font Generator Features Section - Medium Scoped Styles */
.glitch-features-section {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-features-container {
    max-width: 800px;
    margin: 0 auto;
}

.glitch-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glitch-features-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.glitch-features-header p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glitch-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.glitch-feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.glitch-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.glitch-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.glitch-feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile (320px-767px) */
@media (max-width: 767px) {
    .glitch-features-section {
        padding: 1.5rem 1rem;
    }
    
    .glitch-features-header h2 {
        font-size: 1.25rem;
    }
    
    .glitch-features-header p {
        font-size: 0.9rem;
    }
    
    .glitch-features-grid {
        gap: 1.25rem;
    }
    
    .glitch-feature-card {
        padding: 1.25rem;
    }
    
    .glitch-feature-card h3 {
        font-size: 1rem;
    }
    
    .glitch-feature-card p {
        font-size: 0.875rem;
    }
}

/* Tablet and Desktop (768px+) */
@media (min-width: 768px) {
    .glitch-features-section {
        padding: 2.5rem 2rem;
    }
    
    .glitch-features-header h2 {
        font-size: 1.75rem;
    }
    
    .glitch-features-header p {
        font-size: 1.0625rem;
    }
    
    .glitch-features-grid {
        gap: 1.75rem;
    }
    
    .glitch-feature-card {
        padding: 2rem;
    }
    
    .glitch-feature-card h3 {
        font-size: 1.25rem;
    }
    
    .glitch-feature-card p {
        font-size: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .glitch-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .glitch-feature-card {
        padding: 2.5rem;
    }
    
    .glitch-feature-card h3 {
        font-size: 1.375rem;
    }
    
    .glitch-feature-card p {
        font-size: 1.0625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-feature-card {
        transition: none;
    }
}

/* Focus states */
.glitch-feature-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}





/* Glitch Font Generator Hero Section - Medium Scoped Styles */
.glitch-hero-section {
    background: #ffffff;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glitch-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.glitch-text-content {
    padding-left: 2.5rem;
}

.glitch-text-content h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-wrap: break-word;
}

.glitch-text-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.glitch-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.glitch-cta-buttons button,
.glitch-cta-buttons a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.glitch-cta-buttons button {
    background: #3b82f6;
    border: 1px solid #3b82f6;
}

.glitch-cta-buttons button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.glitch-cta-buttons a {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.glitch-cta-buttons a:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.glitch-image-content {
    display: flex;
    justify-content: center;
}

.glitch-fonts-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .glitch-fonts-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .glitch-fonts-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .glitch-fonts-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .glitch-fonts-showcase {
        gap: 1.5rem;
    }
}

.glitch-font-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.glitch-font-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.glitch-sample {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.glitch-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* Glitch Font Families */
.glitch-digital {
    font-family: "Courier New", "Monaco", monospace;
    color: #0ea5e9;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.glitch-cyber {
    font-family: "Impact", "Arial Black", sans-serif;
    color: #a855f7;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(168, 85, 247, 0.3);
}

.glitch-neon {
    font-family: "Arial", "Helvetica", sans-serif;
    color: #10b981;
    font-weight: 600;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.glitch-retro {
    font-family: "Times New Roman", serif;
    color: #f59e0b;
    font-weight: 700;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(245, 158, 11, 0.4);
    transform: skew(-5deg);
}

/* Mobile Extra Small (320px-479px) */
@media (max-width: 479px) {
    .glitch-hero-section {
        padding: 1rem 1rem;
    }
    
    .glitch-hero-container {
        text-align: center;
        gap: 1.25rem;
    }
    
    .glitch-text-content {
        padding-left: 0;
    }
    
    .glitch-text-content h1 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .glitch-text-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .glitch-cta-buttons {
        align-items: center;
    }
    
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        width: 100%;
        max-width: 200px;
        min-width: auto;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .glitch-fonts-showcase {
        gap: 0.75rem;
    }
    
    .glitch-font-preview {
        padding: 0.75rem;
    }
    
    .glitch-sample {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .glitch-label {
        font-size: 0.6875rem;
    }
}

/* Mobile (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .glitch-hero-section {
        padding: 1.25rem 1.5rem;
    }
    
    .glitch-hero-container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .glitch-text-content {
        padding-left: 0;
    }
    
    .glitch-text-content h1 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .glitch-text-content p {
        font-size: 0.9rem;
    }
    
    .glitch-cta-buttons {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        width: auto;
        min-width: 120px;
        font-size: 0.875rem;
    }
    
    .glitch-font-preview {
        padding: 0.875rem;
    }
    
    .glitch-sample {
        font-size: 1.125rem;
    }
}

/* Tablet (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .glitch-hero-section {
        padding: 1.75rem 2.5rem;
    }
    
    .glitch-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .glitch-text-content {
        padding-left: 1.5rem;
    }
    
    .glitch-text-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .glitch-text-content p {
        font-size: 1rem;
    }
    
    .glitch-cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        width: auto;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .glitch-sample {
        font-size: 1.375rem;
    }
}

/* Desktop (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .glitch-hero-section {
        padding: 2rem 3rem;
    }
    
    .glitch-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .glitch-text-content {
        padding-left: 2rem;
    }
    
    .glitch-text-content h1 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }
    
    .glitch-text-content p {
        font-size: 1.0625rem;
    }
    
    .glitch-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
    }
    
    .glitch-sample {
        font-size: 1.5rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .glitch-hero-section {
        padding: 2rem 4rem;
    }
    
    .glitch-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .glitch-text-content {
        padding-left: 3rem;
    }
    
    .glitch-text-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .glitch-text-content p {
        font-size: 1.125rem;
    }
    
    .glitch-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        min-width: 160px;
    }
    
    .glitch-font-preview {
        padding: 1.25rem;
    }
    
    .glitch-sample {
        font-size: 1.625rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .glitch-font-preview,
    .glitch-cta-buttons button,
    .glitch-cta-buttons a {
        transition: none;
    }
    
    .glitch-font-preview:hover,
    .glitch-cta-buttons button:hover,
    .glitch-cta-buttons a:hover {
        transform: none;
    }
    
    .glitch-retro {
        transform: none;
    }
}

/* Focus states */
.glitch-cta-buttons button:focus,
.glitch-cta-buttons a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.glitch-font-preview:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}













 /* CSS Reset & Base Styles - Mobile First */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #262626;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Main Section Container - Mobile First */
  .instagram-fonts-section {
    width: 100%;
    min-height: 100vh;
    background: transparent;
    padding: 1rem;
  }

  .main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Header */
  .section-header {
    text-align: center;
    margin-bottom: 1rem;
  }

  .main-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #262626;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .main-subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: #8e8e8e;
    font-weight: 400;
  }

  /* Generator Panel */
  .generator-panel {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    order: 1;
  }

  /* Input Section */
  .input-group {
    margin-bottom: 1.5rem;
  }

  .input-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
  }

  .text-input {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid #dbdbdb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    background: #ffffff;
    line-height: 1.5;
  }

  .text-input:focus {
    outline: none;
    border-color: #e1306c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.1);
  }

  .text-input::placeholder {
    color: #8e8e8e;
  }

  /* Generate Button */
  .generate-button {
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.025em;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  }

  .generate-button:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
  }

  .generate-button:active {
    transform: translateY(0);
  }

  .generate-button:focus {
    outline: 2px solid #e1306c;
    outline-offset: 2px;
  }

  /* Results Section */
  .results-section {
    margin-top: 1.5rem;
    display: none;
  }

  .results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1rem;
  }

  /* Font Items */
  .font-item {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
  }

  .font-item:hover {
    background: #ffffff;
    border-color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.15);
    transform: translateY(-2px);
  }

  .font-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .font-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e1306c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }

  .copy-button {
    min-height: 36px;
    min-width: 64px;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(225, 48, 108, 0.3);
  }

  .copy-button:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
  }

  .copy-button:active {
    transform: scale(0.98);
  }

  .copy-button:focus {
    outline: 2px solid #e1306c;
    outline-offset: 2px;
  }

  .copy-button.copied {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4);
  }

  .font-preview {
    font-size: clamp(1rem, 3vw, 1.125rem);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    color: hwb(0 100% 0%);
  }

  /* Font Styles */
  .style-bold { font-weight: 900; }
  .style-italic { font-style: italic; font-weight: 500; }
  .style-cursive { font-family: cursive; font-style: italic; }
  .style-monospace { font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace; letter-spacing: 0.5px; }
  .style-gothic { font-family: 'Times New Roman', 'Georgia', serif; font-weight: bold; }
  .style-wide { letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase; }
  .style-small-caps { font-variant: small-caps; font-weight: 600; }
  .style-strikethrough { text-decoration: line-through; }

  /* Instagram Preview */
  .instagram-preview {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    order: 2;
  }

  .preview-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-bottom: 1px solid #efefef;
  }

  .profile-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
  }

  .profile-details {
    flex: 1;
    min-width: 0;
  }

  .profile-name {
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .profile-username {
    font-size: 0.875rem;
    color: #8e8e8e;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .profile-stats {
    padding: 0 1rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    border-bottom: 1px solid #efefef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .stat {
    text-align: center;
    flex: 1;
  }

  .stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 0.75rem;
    color: #8e8e8e;
    font-weight: 400;
  }

  .bio-section {
    padding: 0 1rem 1.5rem;
  }

  .bio-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #262626;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 40px;
  }

  .bio-placeholder {
    color: #8e8e8e;
    font-style: italic;
  }

  /* Loading State */
  .loading {
    opacity: 0.6;
    pointer-events: none;
  }

  /* Error Message */
  .error-message {
    color: #ed4956;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
  }

  /* Extra Small Devices (≤375px) */
  @media (max-width: 375px) {
    .instagram-fonts-section {
      padding: 0.75rem;
    }
    
    .generator-panel,
    .instagram-preview {
      padding: 1rem;
    }
    
    .font-item {
      padding: 0.875rem;
    }
    
    .font-header {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
    }
    
    .copy-button {
      align-self: flex-end;
      width: auto;
    }
    
    .profile-avatar {
      width: 48px;
      height: 48px;
      min-width: 48px;
      font-size: 1.25rem;
    }
  }

  /* Small Devices (376px–767px) */
  @media (min-width: 376px) and (max-width: 767px) {
    .instagram-fonts-section {
      padding: 1rem;
    }
    
    .font-header {
      flex-direction: row;
      align-items: center;
    }
  }

  /* Tablet (768px–1023px) */
  @media (min-width: 768px) {
    .instagram-fonts-section {
      padding: 1.5rem 2rem;
    }
    
    .main-container {
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 2rem;
      align-items: start;
    }
    
    .section-header {
      grid-column: 1 / -1;
      margin-bottom: 1rem;
    }
    
    .generator-panel {
      order: 0;
      padding: 2rem;
    }
    
    .instagram-preview {
      order: 0;
      position: sticky;
      top: 1.5rem;
    }
    
    .font-item {
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }
    
    .font-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      flex: 1;
    }
    
    .font-preview {
      margin-top: 0.5rem;
    }
    
    .copy-button {
      align-self: center;
    }
  }

  /* Desktop (≥1024px) */
  @media (min-width: 1024px) {
    .instagram-fonts-section {
      padding: 2rem 3rem;
    }
    
    .main-container {
      grid-template-columns: 1fr 380px;
      gap: 2.5rem;
    }
    
    .generator-panel {
      padding: 2.5rem;
    }
    
    .text-input {
      min-height: 140px;
    }
    
    .generate-button:hover {
      transform: translateY(-2px);
    }
  }

  /* Large Desktop (≥1440px) */
  @media (min-width: 1440px) {
    .main-container {
      grid-template-columns: 1fr 400px;
      gap: 3rem;
    }
  }

  /* High DPI Displays */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-avatar {
      border-width: 2px;
    }
  }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* Print Styles */
  @media print {
    .instagram-fonts-section {
      padding: 0;
      box-shadow: none;
    }
    
    .generate-button,
    .copy-button {
      display: none;
    }
  }

  /* Focus Styles for Better Accessibility */
  .text-input:focus,
  .generate-button:focus,
  .copy-button:focus {
    outline: 2px solid #e1306c;
    outline-offset: 2px;
  }

  /* Screen Reader Only */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }




















    .creepy-font-generator {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      background: #ffffff;
      color: #000000;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }

    .generator-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .generator-title {
      font-size: 2rem;
      font-weight: bold;
      color: #8B0000;
      margin-bottom: 0.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .generator-subtitle {
      color: #4A0080;
      font-size: 1.1rem;
      margin-bottom: 0;
    }

    .generator-layout {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .input-section {
      width: 100%;
    }

    .input-label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #000;
    }

    .text-input {
      width: 100%;
      min-height: 120px;
      padding: 1rem;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      resize: vertical;
      font-family: inherit;
      background: #fafafa;
      transition: border-color 0.3s ease;
    }

    .text-input:focus {
      outline: none;
      border-color: #8B0000;
      background: #fff;
    }

    .generate-btn {
      width: 100%;
      padding: 1rem 2rem;
      background: linear-gradient(135deg, #8B0000, #4A0080);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      min-height: 48px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .generate-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    }

    .generate-btn:active {
      transform: translateY(0);
    }

    .results-section {
      width: 100%;
    }

    .results-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #8B0000;
      margin-bottom: 1rem;
      text-align: center;
    }

    .font-result {
      background: #f9f9f9;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }

    .font-result:hover {
      border-color: #8B0000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .font-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: #4A0080;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .font-preview {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      word-wrap: break-word;
      min-height: 1.5rem;
      padding: 0.75rem;
      background: white;
      border-radius: 4px;
      border: 1px solid #eee;
      line-height: 1.4;
      font-family: inherit;
      color: #000;
    }

    .copy-btn {
      background: #4A0080;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
      min-height: 36px;
      transition: all 0.3s ease;
    }

    .copy-btn:hover {
      background: #6A00A0;
    }

    .copy-btn.copied {
      background: #28a745;
      transform: scale(0.95);
    }

    .preview-section {
      width: 100%;
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
      border-radius: 12px;
      padding: 1.5rem;
      color: white;
      position: sticky;
      top: 1rem;
    }

    .preview-title {
      color: #8B0000;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-align: center;
    }

    .instagram-preview {
      background: #ffffff;
      border-radius: 12px;
      padding: 1.5rem;
      color: #000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .profile-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .profile-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: radial-gradient(circle, #8B0000, #000);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      flex-shrink: 0;
    }

    .profile-info {
      flex: 1;
    }

    .profile-username {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .profile-stats {
      font-size: 0.9rem;
      color: #666;
    }

    .profile-bio {
      font-size: 1rem;
      margin-top: 1rem;
      word-wrap: break-word;
      min-height: 1.5rem;
      padding: 0.5rem;
      background: #f8f8f8;
      border-radius: 6px;
      border-left: 3px solid #8B0000;
    }

    .empty-state {
      color: #999;
      font-style: italic;
      text-align: center;
      padding: 2rem;
    }

    /* Font Styles */
    .zalgo { font-family: 'Courier New', monospace; }
    .dripping { font-family: serif; text-shadow: 0 2px 4px rgba(139,0,0,0.5); }
    .gothic { font-family: 'Times New Roman', serif; font-weight: bold; letter-spacing: 2px; }
    .scratchy { font-family: 'Courier New', monospace; transform: rotate(-1deg); }
    .cursive { font-family: cursive; font-style: italic; }
    .wide { letter-spacing: 8px; font-weight: 300; }
    .narrow { letter-spacing: -2px; transform: scaleX(0.8); }
    .wavy { display: inline-block; }
    .shadowed { text-shadow: 3px 3px 0 #8B0000; font-weight: bold; }
    .glitch { font-family: 'Courier New', monospace; color: #ff0080; text-shadow: 2px 0 #00ff80, -2px 0 #8000ff; }
    .static { font-family: 'Courier New', monospace; transform: scale(1.1); }
    .bloody { color: #8B0000; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
    .skeletal { font-family: serif; font-weight: 100; letter-spacing: 4px; }
    .crawling { font-family: monospace; transform: skew(-5deg); }
    .virus { font-family: monospace; color: #00ff00; background: #000; padding: 0.2rem; }
    .decay { font-family: serif; opacity: 0.7; transform: rotate(1deg); }
    .haunted { font-family: cursive; color: #666; text-shadow: 0 0 10px rgba(0,0,0,0.8); }
    .screaming { font-family: sans-serif; font-weight: 900; text-transform: uppercase; }
    .void { color: #000; background: #000; text-shadow: 0 0 5px #fff; }
    .possessed { font-family: serif; color: #ff0000; transform: scale(1.2) rotate(-2deg); }
    .melting { font-family: sans-serif; transform: perspective(100px) rotateX(10deg); }
    .cursed { font-family: monospace; color: #4B0082; letter-spacing: 3px; }
    .ancient { font-family: serif; color: #8B4513; font-variant: small-caps; }
    .twisted { font-family: sans-serif; transform: skewX(-10deg); }
    .nightmare { font-family: cursive; color: #FF1493; text-shadow: 2px 2px 4px #000; }
    .demonic { font-family: serif; color: #DC143C; font-weight: bold; }
    .ghostly { font-family: sans-serif; opacity: 0.6; color: #C0C0C0; }
    .apocalypse { font-family: monospace; color: #8B0000; background: #2F2F2F; padding: 0.1rem; }
    .witchy { font-family: cursive; color: #9932CC; font-style: italic; }
    .cryptic { font-family: monospace; color: #2F4F4F; letter-spacing: 2px; }
    .infernal { font-family: serif; color: #FF4500; text-shadow: 1px 1px 3px #000; }
    .spectral { font-family: sans-serif; color: #E6E6FA; text-shadow: 0 0 8px #9370DB; }
    .corrupted { font-family: monospace; color: #FF0000; background: #000000; }
    .sinister { font-family: serif; color: #2F2F2F; font-weight: bold; }
    .occult { font-family: cursive; color: #4B0082; text-decoration: underline; }
    .banshee { font-family: serif; color: #708090; font-style: italic; }
    .wraith { font-family: sans-serif; color: #A9A9A9; opacity: 0.8; }
    .hellish { font-family: monospace; color: #FF0000; background: #800000; }
    .macabre { font-family: serif; color: #556B2F; font-variant: small-caps; }
    .disturbed { font-family: sans-serif; transform: rotate(-3deg) scale(0.9); }
    .eerie { font-family: cursive; color: #8FBC8F; text-shadow: 0 0 5px #000; }
    .tormented { font-family: monospace; color: #B22222; letter-spacing: 1px; }
    .malevolent { font-family: serif; color: #000000; text-shadow: 2px 2px 1px #8B0000; }

    /* Media Queries - Mobile First */
    @media (min-width: 376px) {
      .creepy-font-generator {
        padding: 1.25rem;
      }
      
      .generator-title {
        font-size: 2.2rem;
      }
    }

    @media (min-width: 768px) {
      .creepy-font-generator {
        padding: 1.5rem;
      }
      
      .generator-layout {
        flex-direction: row;
        align-items: flex-start;
      }
      
      .input-section {
        flex: 1;
        margin-right: 1rem;
      }
      
      .preview-section {
        flex: 0 0 320px;
        margin-left: 1rem;
      }
      
      .generate-btn {
        width: auto;
        min-width: 200px;
      }
    }

    @media (min-width: 1024px) {
      .creepy-font-generator {
        padding: 2rem;
      }
      
      .generator-title {
        font-size: 2.5rem;
      }
      
      .preview-section {
        flex: 0 0 380px;
      }
    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* High contrast mode */
    @media (prefers-contrast: high) {
      .text-input {
        border-width: 3px;
      }
      
      .font-result {
        border-width: 2px;
      }
    }



















    /* Glitch Font Generator Styles - Scoped with glitchgen- prefix */

.glitchgen-container {
  background: #ffffff;
  font-family: 'Courier New', 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
  padding: 1rem;
  color: #000000;
  position: relative;
  overflow-x: hidden;
}

.glitchgen-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.glitchgen-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glitchgen-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.glitchgen-input-section {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 
    0 8px 32px rgba(0, 123, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glitchgen-preview-section {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 
    0 8px 32px rgba(0, 123, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glitchgen-title {
  background: linear-gradient(135deg, #007bff, #00ffff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  position: relative;
}

.glitchgen-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3.75rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, #007bff, #00ffff);
  border-radius: 0.125rem;
}

.glitchgen-input-container {
  margin-bottom: 1.5rem;
}

.glitchgen-textarea {
  width: 100%;
  min-height: 7.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #000000;
  resize: vertical;
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.glitchgen-textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.glitchgen-textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 
    0 0 0 0.1875rem rgba(0, 255, 255, 0.2),
    0 0 20px rgba(0, 255, 255, 0.3);
  background: rgba(255, 255, 255, 1);
}

.glitchgen-generate-btn {
  background: linear-gradient(135deg, #007bff, #0056b3, #004085);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  transition: all 0.3s ease;
  min-height: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(0, 123, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glitchgen-generate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.glitchgen-generate-btn:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 
    0 12px 32px rgba(0, 123, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glitchgen-generate-btn:hover::before {
  left: 100%;
}

.glitchgen-generate-btn:active {
  transform: translateY(-0.0625rem);
}

.glitchgen-results {
  margin-top: 2rem;
}

.glitchgen-result-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 123, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glitchgen-result-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.glitchgen-result-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 255, 255, 0.5);
  transform: translateY(-0.125rem);
  box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2);
}

.glitchgen-result-text {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  word-break: break-all;
  flex: 1;
  line-height: 1.5;
  color: #000000;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.glitchgen-copy-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-height: 3rem;
  min-width: 5rem;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.glitchgen-copy-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.5);
  background: linear-gradient(135deg, #34ce57, #17a2b8);
}

.glitchgen-copy-btn.glitchgen-copied {
  background: linear-gradient(135deg, #fd7e14, #e83e8c);
  color: white;
  box-shadow: 0 4px 12px rgba(253, 126, 20, 0.4);
}

.glitchgen-instagram-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 123, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 28.125rem;
  margin: 0 auto;
  box-shadow: 
    0 12px 40px rgba(0, 123, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glitchgen-ig-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.glitchgen-ig-avatar {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #007bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.4rem;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}

.glitchgen-ig-username {
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.glitchgen-ig-bio {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  word-break: break-all;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 123, 255, 0.1);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.glitchgen-ig-emojis {
  font-size: 1.4rem;
  margin-top: 1rem;
  text-align: center;
  filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.3));
}

/* Glitch animation for title */
@keyframes glitchgen-glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-0.125rem, 0.125rem); }
  40% { transform: translate(-0.125rem, -0.125rem); }
  60% { transform: translate(0.125rem, 0.125rem); }
  80% { transform: translate(0.125rem, -0.125rem); }
  100% { transform: translate(0); }
}

.glitchgen-title:hover {
  animation: glitchgen-glitch 0.3s ease-in-out;
}

/* Media Queries - Mobile First */
@media (max-width: 23.4375em) { /* 375px */
  .glitchgen-container {
    padding: 0.75rem;
  }
  
  .glitchgen-input-section, 
  .glitchgen-preview-section {
    padding: 1.25rem;
  }
  
  .glitchgen-title {
    font-size: 1.2rem;
  }
}

@media (min-width: 23.5em) and (max-width: 47.9375em) { /* 376px-767px */
  .glitchgen-container {
    padding: 1rem;
  }
  
  .glitchgen-main {
    gap: 1.5rem;
  }
}

@media (min-width: 48em) { /* 768px+ */
  .glitchgen-container {
    padding: 2rem;
  }
  
  .glitchgen-main {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .glitchgen-input-section {
    flex: 1.3;
  }

  .glitchgen-preview-section {
    flex: 0.7;
    position: sticky;
    top: 2rem;
  }

  .glitchgen-result-item {
    flex-direction: row;
    align-items: center;
  }

  .glitchgen-result-text {
    word-break: normal;
  }

  .glitchgen-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 64em) { /* 1024px+ */
  .glitchgen-container {
    padding: 3rem;
  }

  .glitchgen-textarea {
    min-height: 8.75rem;
    font-size: 1.2rem;
  }

  .glitchgen-generate-btn {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
  }

  .glitchgen-title {
    font-size: 2rem;
  }
}

/* Touch-friendly adjustments for mobile */
@media (max-width: 47.9375em) { /* 767px */
  .glitchgen-result-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
  }

  .glitchgen-copy-btn {
    align-self: center;
    min-width: 8.75rem;
    padding: 1rem 2rem;
  }

  .glitchgen-result-text {
    text-align: center;
    font-size: 1.1rem;
  }
}

/* Scrollbar styling - scoped to glitch generator */
.glitchgen-textarea::-webkit-scrollbar {
  width: 0.5rem;
}

.glitchgen-textarea::-webkit-scrollbar-track {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 0.25rem;
}

.glitchgen-textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #007bff, #00ffff);
  border-radius: 0.25rem;
}

.glitchgen-results::-webkit-scrollbar {
  width: 0.5rem;
}

.glitchgen-results::-webkit-scrollbar-track {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 0.25rem;
}

.glitchgen-results::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 0.25rem;
}










/* Crazy Font Generator Styles - Scoped with .crazygen- prefix */

.crazygen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

.crazygen-header {
  text-align: center;
  margin-bottom: 2rem;
}

.crazygen-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: crazygen-gradient 3s ease-in-out infinite;
}

@keyframes crazygen-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.crazygen-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.crazygen-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.crazygen-input-wrapper {
  position: relative;
}

.crazygen-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.1rem;
}

.crazygen-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 3px solid #e1e8ed;
  border-radius: 15px;
  font-size: 1.1rem;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.crazygen-textarea:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
  transform: translateY(-2px);
}

.crazygen-char-count {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 0.8rem;
  color: #666;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

.crazygen-generate-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crazygen-generate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.crazygen-generate-btn:active {
  transform: translateY(-1px);
}

.crazygen-results {
  margin-top: 1rem;
}

.crazygen-result-item {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crazygen-result-item:hover {
  border-color: #4ecdc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.crazygen-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.crazygen-style-name {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.crazygen-copy-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  background: #4ecdc4;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  min-width: 48px;
  min-height: 32px;
}

.crazygen-copy-btn:hover {
  background: #45b7d1;
  transform: scale(1.05);
}

.crazygen-copy-btn.crazygen-copied {
  background: #96ceb4;
  animation: crazygen-pulse 0.6s ease;
}

@keyframes crazygen-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.crazygen-result-text {
  font-size: 1.2rem;
  line-height: 1.4;
  word-break: break-word;
  color: #333;
  padding: 0.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  user-select: all;
  cursor: text;
}

.crazygen-preview-section {
  position: sticky;
  top: 2rem;
}

.crazygen-preview-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e8ed;
}

.crazygen-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crazygen-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.crazygen-profile-info {
  flex: 1;
}

.crazygen-username {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}

.crazygen-followers {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.crazygen-follow-btn {
  padding: 0.5rem 1rem;
  background: #4ecdc4;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 48px;
  min-height: 36px;
}

.crazygen-follow-btn:hover {
  background: #45b7d1;
}

.crazygen-preview-bio {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
  border-left: 4px solid #4ecdc4;
}

.crazygen-preview-bio p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

.crazygen-preview-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
  border-top: 1px solid #e1e8ed;
}

.crazygen-stat {
  text-align: center;
}

.crazygen-stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.crazygen-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crazygen-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(225, 232, 237, 0.5);
}

.crazygen-tip {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Mobile Styles */
@media (max-width: 375px) {
  .crazygen-container {
    padding: 0.75rem;
    border-radius: 15px;
  }
  
  .crazygen-title {
    font-size: 2rem;
  }
  
  .crazygen-subtitle {
    font-size: 1rem;
  }
  
  .crazygen-textarea {
    min-height: 100px;
    font-size: 1rem;
  }
  
  .crazygen-generate-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .crazygen-result-text {
    font-size: 1rem;
  }
  
  .crazygen-preview-card {
    padding: 1rem;
  }
  
  .crazygen-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .crazygen-main {
    gap: 1.5rem;
  }
  
  .crazygen-preview-section {
    position: static;
  }
  
  .crazygen-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .crazygen-copy-btn {
    align-self: flex-end;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .crazygen-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .crazygen-container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .crazygen-main {
    grid-template-columns: 1fr 0.6fr;
    gap: 3rem;
  }
  
  .crazygen-container {
    padding: 2rem;
  }
  
  .crazygen-title {
    font-size: 3rem;
  }
  
  .crazygen-result-header {
    flex-direction: row;
    align-items: center;
  }
}



















/* Aesthetic Font Generator Styles - Scoped with .aestheticgen- prefix */

.aestheticgen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(70, 130, 180, 0.15);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #4a4a4a;
  border: 1px solid rgba(70, 130, 180, 0.1);
}

.aestheticgen-header {
  text-align: center;
  margin-bottom: 2rem;
}

.aestheticgen-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #4682b4, #87ceeb, #add8e6, #e0f6ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aestheticgen-gradient 4s ease-in-out infinite;
  letter-spacing: 0.5px;
}

@keyframes aestheticgen-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.aestheticgen-subtitle {
  font-size: 1rem;
  color: #9b9b9b;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.aestheticgen-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.aestheticgen-input-wrapper {
  position: relative;
}

.aestheticgen-label {
  display: block;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #6b6b6b;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.aestheticgen-textarea {
  width: 100%;
  min-height: 100px;
  padding: 1.2rem;
  border: 2px solid #f8f8f8;
  border-radius: 16px;
  font-size: 1rem;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(240, 248, 255, 0.5);
  color: #5a5a5a;
}

.aestheticgen-textarea:focus {
  outline: none;
  border-color: #4682b4;
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
  background: rgba(240, 248, 255, 0.8);
}

.aestheticgen-textarea::placeholder {
  color: #c0c0c0;
  font-style: italic;
}

.aestheticgen-char-count {
  position: absolute;
  bottom: 0.6rem;
  right: 1rem;
  font-size: 0.75rem;
  color: #b0b0b0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(70, 130, 180, 0.1);
}

.aestheticgen-generate-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 400;
  background: linear-gradient(45deg, #4682b4, #87ceeb);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(70, 130, 180, 0.3);
}

.aestheticgen-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
}

.aestheticgen-generate-btn:active {
  transform: translateY(0);
}

.aestheticgen-results {
  margin-top: 1rem;
}

.aestheticgen-result-item {
  background: rgba(240, 248, 255, 0.3);
  border: 1px solid rgba(70, 130, 180, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.aestheticgen-result-item:hover {
  border-color: rgba(70, 130, 180, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(70, 130, 180, 0.1);
}

.aestheticgen-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.aestheticgen-style-name {
  font-weight: 400;
  color: #7a7a7a;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.aestheticgen-copy-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  background: linear-gradient(45deg, #4682b4, #87ceeb);
  color: white;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 400;
  min-width: 48px;
  min-height: 32px;
  letter-spacing: 0.2px;
}

.aestheticgen-copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(70, 130, 180, 0.3);
}

.aestheticgen-copy-btn.aestheticgen-copied {
  background: linear-gradient(45deg, #98fb98, #87ceeb);
  animation: aestheticgen-pulse 0.5s ease;
}

@keyframes aestheticgen-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.aestheticgen-result-text {
  font-size: 1.1rem;
  line-height: 1.5;
  word-break: break-word;
  color: #4a4a4a;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  user-select: all;
  cursor: text;
  border: 1px solid rgba(70, 130, 180, 0.05);
}

.aestheticgen-preview-section {
  position: sticky;
  top: 2rem;
}

.aestheticgen-preview-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(70, 130, 180, 0.15);
  border: 1px solid rgba(70, 130, 180, 0.1);
  backdrop-filter: blur(10px);
}

.aestheticgen-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.aestheticgen-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #4682b4, #87ceeb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.aestheticgen-profile-info {
  flex: 1;
}

.aestheticgen-username {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  color: #4a4a4a;
  letter-spacing: 0.2px;
}

.aestheticgen-followers {
  margin: 0;
  font-size: 0.85rem;
  color: #9b9b9b;
  font-weight: 300;
}

.aestheticgen-follow-btn {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(45deg, #4682b4, #87ceeb);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 48px;
  min-height: 36px;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.aestheticgen-follow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(70, 130, 180, 0.3);
}

.aestheticgen-preview-bio {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(240, 248, 255, 0.5);
  border-radius: 14px;
  border-left: 3px solid #4682b4;
}

.aestheticgen-preview-bio p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
  color: #5a5a5a;
}

.aestheticgen-preview-stats {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  border-top: 1px solid rgba(70, 130, 180, 0.1);
  border-bottom: 1px solid rgba(70, 130, 180, 0.1);
  margin-bottom: 1rem;
}

.aestheticgen-stat {
  text-align: center;
}

.aestheticgen-stat-number {
  display: block;
  font-weight: 500;
  font-size: 1.1rem;
  color: #4a4a4a;
}

.aestheticgen-stat-label {
  display: block;
  font-size: 0.75rem;
  color: #9b9b9b;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  font-weight: 300;
}

.aestheticgen-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.aestheticgen-post {
  aspect-ratio: 1;
  background: linear-gradient(45deg, #4682b4, #87ceeb, #add8e6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.aestheticgen-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(70, 130, 180, 0.1);
}

.aestheticgen-tip {
  margin: 0;
  font-size: 0.85rem;
  color: #9b9b9b;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* Mobile Styles */
@media (max-width: 375px) {
  .aestheticgen-container {
    padding: 0.8rem;
    border-radius: 20px;
  }
  
  .aestheticgen-title {
    font-size: 2rem;
  }
  
  .aestheticgen-subtitle {
    font-size: 0.9rem;
  }
  
  .aestheticgen-textarea {
    min-height: 80px;
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .aestheticgen-generate-btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
  
  .aestheticgen-result-text {
    font-size: 1rem;
  }
  
  .aestheticgen-preview-card {
    padding: 1.2rem;
  }
  
  .aestheticgen-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .aestheticgen-main {
    gap: 1.5rem;
  }
  
  .aestheticgen-preview-section {
    position: static;
  }
  
  .aestheticgen-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .aestheticgen-copy-btn {
    align-self: flex-end;
  }
  
  .aestheticgen-post-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aestheticgen-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .aestheticgen-container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .aestheticgen-main {
    grid-template-columns: 1fr 0.65fr;
    gap: 3rem;
  }
  
  .aestheticgen-container {
    padding: 2rem;
  }
  
  .aestheticgen-title {
    font-size: 2.8rem;
  }
  
  .aestheticgen-result-header {
    flex-direction: row;
    align-items: center;
  }
  
  .aestheticgen-textarea {
    min-height: 120px;
  }
}



























/* Japanese Font Generator Styles */
.japanesegen-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

.japanesegen-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.japanesegen-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.japanesegen-title {
  font-size: 2rem;
  color: #dc2626;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.japanesegen-subtitle {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

/* Main Content Layout */
.japanesegen-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Left Column */
.japanesegen-left {
  flex: 1;
}

.japanesegen-input-section {
  background: #fef7f7;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #fecaca;
  margin-bottom: 2rem;
}

.japanesegen-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.japanesegen-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.japanesegen-textarea:focus {
  outline: none;
  border-color: #dc2626;
}

.japanesegen-generate-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
  min-height: 48px;
}

.japanesegen-generate-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-1px);
}

.japanesegen-generate-btn:active {
  transform: translateY(0);
}

/* Font List */
.japanesegen-fonts-list {
  display: grid;
  gap: 1rem;
}

.japanesegen-font-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.2s ease;
}

.japanesegen-font-item:hover {
  border-color: #fda4af;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.japanesegen-font-name {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.japanesegen-font-preview {
  font-size: 1.25rem;
  color: #111;
  margin: 0 0 0.75rem 0;
  word-break: break-word;
  min-height: 1.5rem;
}

.japanesegen-copy-btn {
  background: #fef7f7;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  min-height: 36px;
}

.japanesegen-copy-btn:hover {
  background: #fecaca;
}

.japanesegen-copy-btn:active {
  background: #fca5a5;
}

.japanesegen-copy-btn.japanesegen-copied {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #16a34a;
}

/* Right Column - Preview */
.japanesegen-right {
  flex: 1;
}

.japanesegen-preview {
  position: sticky;
  top: 2rem;
}

.japanesegen-phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  background: #111;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.japanesegen-phone-header {
  background: #111;
  padding: 1rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.japanesegen-phone-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.japanesegen-phone-dots span {
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
}

.japanesegen-phone-content {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 16px 16px;
  text-align: center;
  min-height: 200px;
}

.japanesegen-profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fda4af, #fb7185);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
}

.japanesegen-handle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 0.5rem 0;
}

.japanesegen-bio {
  font-size: 0.875rem;
  color: #333;
  margin: 0 0 1rem 0;
  word-break: break-word;
  min-height: 1.25rem;
}

.japanesegen-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
}

.japanesegen-stats span {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  color: #666;
}

/* Responsive Design */

/* Very small phones (≤375px) */
@media (max-width: 375px) {
  .japanesegen-container {
    padding: 0.5rem;
  }
  
  .japanesegen-title {
    font-size: 1.5rem;
  }
  
  .japanesegen-input-section {
    padding: 1rem;
  }
  
  .japanesegen-phone-mockup {
    max-width: 250px;
  }
}

/* Mobile (376-767px) */
@media (min-width: 376px) and (max-width: 767px) {
  .japanesegen-container {
    padding: 1rem;
  }
  
  .japanesegen-phone-mockup {
    max-width: 280px;
  }
}

/* Tablets (768-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .japanesegen-content {
    flex-direction: row;
    gap: 2rem;
  }
  
  .japanesegen-left {
    flex: 1.5;
  }
  
  .japanesegen-right {
    flex: 1;
  }
  
  .japanesegen-fonts-list {
    grid-template-columns: 1fr;
  }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .japanesegen-container {
    padding: 2rem;
  }
  
  .japanesegen-content {
    flex-direction: row;
    gap: 3rem;
  }
  
  .japanesegen-left {
    flex: 2;
  }
  
  .japanesegen-right {
    flex: 1;
  }
  
  .japanesegen-fonts-list {
    grid-template-columns: 1fr;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
  }
  
  .japanesegen-fonts-list::-webkit-scrollbar {
    width: 6px;
  }
  
  .japanesegen-fonts-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }
  
  .japanesegen-fonts-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }
  
  .japanesegen-fonts-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
}

/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
  .japanesegen-generate-btn,
  .japanesegen-copy-btn {
    min-height: 48px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .japanesegen-generate-btn,
  .japanesegen-copy-btn,
  .japanesegen-font-item {
    transition: none;
  }
}




















    .chinesegen-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'Arial', sans-serif;
            background: #ffffff;
            min-height: 100vh;
        }

        .chinesegen-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .chinesegen-title {
            font-size: 2.5rem;
            color: #d32f2f;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .chinesegen-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        .chinesegen-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .chinesegen-input-section {
            background: #fafafa;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
        }

        .chinesegen-textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
            font-family: inherit;
        }

        .chinesegen-textarea:focus {
            outline: none;
            border-color: #d32f2f;
        }

        .chinesegen-generate-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #d32f2f, #f44336);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 48px;
        }

        .chinesegen-generate-btn:hover {
            background: linear-gradient(135deg, #b71c1c, #d32f2f);
            transform: translateY(-2px);
        }

        .chinesegen-preview-section {
            background: #fff3e0;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #ffcc02;
        }

        .chinesegen-preview-title {
            color: #d32f2f;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .chinesegen-mock-profile {
            background: white;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #ddd;
        }

        .chinesegen-profile-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .chinesegen-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d32f2f, #f44336);
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .chinesegen-profile-info h3 {
            margin: 0;
            color: #333;
            font-size: 1.2rem;
        }

        .chinesegen-profile-info p {
            margin: 5px 0 0 0;
            color: #666;
            font-size: 0.9rem;
        }

        .chinesegen-bio {
            margin-top: 15px;
            padding: 15px;
            background: #f5f5f5;
            border-radius: 8px;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .chinesegen-results {
            margin-top: 30px;
        }

        .chinesegen-results-title {
            color: #d32f2f;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-align: center;
        }

        .chinesegen-font-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        .chinesegen-font-item {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .chinesegen-font-item:hover {
            border-color: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
        }

        .chinesegen-font-name {
            color: #d32f2f;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .chinesegen-font-preview {
            font-size: 1.2rem;
            margin-bottom: 10px;
            padding: 10px;
            background: #fafafa;
            border-radius: 4px;
            word-break: break-all;
            line-height: 1.4;
        }

        .chinesegen-copy-btn {
            background: #ffcc02;
            color: #333;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: bold;
            transition: all 0.3s ease;
            min-height: 32px;
        }

        .chinesegen-copy-btn:hover {
            background: #ffc107;
            transform: scale(1.05);
        }

        .chinesegen-copy-btn.copied {
            background: #4caf50;
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .chinesegen-container {
                padding: 15px;
            }

            .chinesegen-title {
                font-size: 2rem;
            }

            .chinesegen-main {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .chinesegen-font-grid {
                grid-template-columns: 1fr;
            }

            .chinesegen-input-section,
            .chinesegen-preview-section {
                padding: 20px;
            }
        }

        @media (max-width: 375px) {
            .chinesegen-container {
                padding: 10px;
            }

            .chinesegen-title {
                font-size: 1.8rem;
            }

            .chinesegen-input-section,
            .chinesegen-preview-section {
                padding: 15px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .chinesegen-font-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .chinesegen-font-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }














        .aesthetic-card {
  border-radius: 16px;
  background: #fff0f6;
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.aesthetic-card:hover {
  transform: translateY(-5px);
}

.aesthetic-header {
  background: linear-gradient(to right, #fbd3e9, #bbd2c5);
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.aesthetic-header .icon {
  font-size: 2.5rem;
}

.card-title {
  color: #d63384;
  font-family: 'Segoe UI', cursive;
}

.card-description {
  color: #6f42c1;
  font-size: 0.95rem;
  padding: 0 1rem;
}

.aesthetic-button {
  background-color: #e599f7;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.aesthetic-button:hover {
  background-color: #da77f2;
}












/* Font Section Intro Styling */
.font-section-intro {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.font-section-intro::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

.font-section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #475569);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.font-section-intro p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Font Grid Styling */
.font-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.font-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  group: true;
}

.font-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.font-card:hover::before {
  left: 100%;
}

.font-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(99, 102, 241, 0.1);
  border-color: #c7d2fe;
}

.font-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 1rem;
}

.font-card:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.font-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.font-card:hover h2 {
  color: #6366f1;
}

.font-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 400;
}

.font-card:hover p {
  color: #475569;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .font-section-intro h2 {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .font-section-intro p {
    color: #94a3b8;
  }
  
  .font-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  }
  
  .font-card:hover {
    border-color: #6366f1;
    box-shadow: 
      0 20px 25px -5px rgba(0, 0, 0, 0.3), 
      0 10px 10px -5px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(99, 102, 241, 0.3);
  }
  
  .font-card img {
    background: linear-gradient(135deg, #334155, #475569);
  }
  
  .font-card h2 {
    color: #f8fafc;
  }
  
  .font-card:hover h2 {
    color: #a5b4fc;
  }
  
  .font-card p {
    color: #94a3b8;
  }
  
  .font-card:hover p {
    color: #cbd5e1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .font-section-intro {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .font-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .font-card {
    padding: 1.5rem;
  }
  
  .font-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .font-section-intro::before {
    width: 40px;
    height: 3px;
  }
  
  .font-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .font-card img {
    width: 60px;
    height: 60px;
    padding: 0.75rem;
  }
  
  .font-card h2 {
    font-size: 1.125rem;
  }
  
  .font-card p {
    font-size: 0.875rem;
  }
}

/* Enhanced hover animations for larger screens */
@media (min-width: 1024px) {
  .font-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .font-card:hover {
    transform: translateY(-12px) scale(1.02);
  }
  
  .font-grid {
    gap: 2.5rem;
  }
}

/* Grid layout optimizations */
@media (min-width: 640px) and (max-width: 1023px) {
  .font-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .font-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .font-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}















