/* ===================================
   PIXMAS CHRISTMAS THEME - Modern & Emotional
   Matching iOS App Design
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pict.AI Christmas Colors - Red + Green Theme */
    --christmas-red: #B71C1C;
    --christmas-green: #1B5E20;
    --deep-red: #8B0000;
    --deep-green: #0D3B0D;
    --darker-red: rgb(76, 10, 10);
    --accent-gold: #FFD700;
    --accent-green: #4CAF50;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    
    /* Gradients - Red to Green */
    --gradient-red-green: linear-gradient(135deg, var(--deep-red) 0%, var(--christmas-red) 35%, var(--christmas-green) 65%, var(--deep-green) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Fonts */
    --font-display: 'Righteous', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.christmas-theme {
    background: var(--gradient-red-green);
    color: var(--text-white);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   NAVIGATION - Simplified
   =================================== */
.navbar-christmas {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(139, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide hamburger menu since we removed navigation links */
.hamburger {
    display: none;
}

.logo-christmas {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.logo-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-download-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: var(--darker-red) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-christmas {
    padding: 1.5rem 0 1rem;
    text-align: center;
    position: relative;
}

.hero-christmas-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFD700 0%, #4CAF50 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-description {
    margin-top: 2.5rem;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.btn-hero-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-hero-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--christmas-green) 100%);
}

/* ===================================
   CATEGORIES SHOWCASE
   =================================== */
.categories-showcase {
    padding: 2rem 0 3rem;
    background: var(--gradient-red);
}

.category-section {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-star {
    font-size: 1.5rem;
    animation: rotate 3s linear infinite;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-white);
    font-weight: 700;
    margin: 0;
}

.view-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    color: var(--accent-green);
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(76, 175, 80, 0.35);
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.6);
    color: #FFD700;
}

.arrow {
    transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow {
    transform: translateX(3px);
}

/* Style Cards Grid */
.styles-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox - show thin scrollbar */
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1); /* Firefox */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Desktop: Show custom scrollbar */
.styles-grid::-webkit-scrollbar {
    height: 8px;
}

.styles-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.styles-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.styles-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.style-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    /* Desktop: 280px width */
    width: 280px;
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.style-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(196,30,58,0.1) 100%);
    position: relative;
    overflow: hidden;
}

.style-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(196,30,58,0.15) 100%);
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-card:hover .style-image img {
    transform: scale(1.05);
}

.favorite-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.favorite-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 0.8);
}

.style-info {
    padding: 1.25rem;
}

.style-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================
   INLINE CTA
   =================================== */
.cta-inline {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-christmas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gold);
    color: var(--darker-red);
    padding: 1.125rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-christmas:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.btn-secondary-christmas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 1.125rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-christmas:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.25rem;
}

/* ===================================
   SEO CONTENT SECTION
   =================================== */
.seo-content-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===================================
   DOWNLOAD CTA SECTION
   =================================== */
.download-cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    text-align: center;
}

.download-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.download-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-download-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-white);
    color: var(--darker-red);
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-download-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.download-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-text {
    text-align: left;
}

.download-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.download-store {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-web-version {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-web-version:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.platform-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   CATEGORY PAGES
   =================================== */
.hero-christmas + .content-section {
    padding-top: 1rem !important;
}

.styles-grid-category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .styles-grid-category {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
    }
    
    .styles-grid-category .style-card {
        width: 100%;
    }
    
    .styles-grid-category .style-image {
        height: 120px; /* Portrait aspect ratio */
    }
    
    .styles-grid-category .style-info {
        padding: 0.3rem;
    }
    
    .styles-grid-category .style-name {
        font-size: 0.65rem;
        line-height: 1.1;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .styles-grid-category .favorite-icon {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        bottom: 0.4rem;
        right: 0.4rem;
    }
}

/* ===================================
   CONTENT PAGES (Affiliates, Influencers, Contact)
   =================================== */
.content-section {
    padding: 4rem 0;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

nav .active {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer-christmas {
    background: rgba(13, 59, 13, 0.95);
    padding: 3rem 0 2rem;
    border-top: 2px solid rgba(76, 175, 80, 0.3);
}

.footer-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================
   SNOW ANIMATION
   =================================== */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: snowfall linear infinite;
    user-select: none;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.snow-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.snow-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.snow-toggle:active {
    transform: scale(0.95);
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .style-card {
        width: 240px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-red);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        padding: 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    /* Mobile: Small cards, ~4 visible at once (like app) */
    .style-card {
        width: 140px;
        flex-shrink: 0;
    }
    
    .style-image {
        height: 180px; /* Portrait aspect ratio like app */
    }
    
    /* Mobile: Hide scrollbar for cleaner look */
    .styles-grid {
        scrollbar-width: none; /* Firefox */
    }
    
    .styles-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .style-info {
        padding: 0.5rem;
    }
    
    .style-name {
        font-size: 0.75rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .favorite-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .cta-inline {
        padding: 2rem 0 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons-inline {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .btn-primary-christmas,
    .btn-secondary-christmas {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ===================================
   THEME PAGE STYLES
   =================================== */

/* Theme page title - smaller, one line max */
.content-card h1 {
    font-family: var(--font-display) !important;
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--accent-gold) !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

/* Theme page image - smaller */
.content-card img[src*="/images/"] {
    width: 100% !important;
    max-width: 600px !important;
    border-radius: 15px !important;
    display: block !important;
    margin: 1.5rem auto !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
}

/* Mobile adjustments for theme pages */
@media (max-width: 768px) {
    .content-card h1 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }
    
    .content-card img[src*="/images/"] {
        max-width: 100% !important;
        margin: 1rem auto !important;
    }
}

@media (max-width: 480px) {
    .content-card h1 {
        font-size: 1.2rem !important;
    }
}

