/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Blue to Purple Gradient */
    --primary-blue: #3C5AFF;
    --primary-purple: #C147FF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(45deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    
    /* Supporting Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --text-gray: #666666;
    --accent-yellow: #FFD700;
    --accent-pink: #FF69B4;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Comic Neue', cursive;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(60, 90, 255, 0.1);
    --shadow-medium: 0 8px 30px rgba(60, 90, 255, 0.15);
    --shadow-strong: 0 12px 40px rgba(60, 90, 255, 0.2);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

/* Desktop only - bigger navigation */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo-img {
    width: 60px;
    height: auto;
}

/* Desktop only - bigger logo */
@media (min-width: 768px) {
    .nav-logo-img {
        width: 120px;
    }
}

.logo-emoji {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.logo-text {
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.3rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-top: 80px;
}

/* Video Placeholder */
.video-placeholder {
    text-align: center;
    margin-bottom: 3rem;
}

.video-frame {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-frame:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.video-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.video-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    color: white;
    position: relative;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    padding: 1rem 0;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
    animation: glow 3s ease-in-out infinite;
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--primary-blue);
    white-space: nowrap;
    margin: 0 auto;
    min-width: 1px;
    max-width: 100%;
    word-wrap: break-word;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-blue); }
}

@keyframes titleGlow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(60, 90, 255, 0.3)); }
    100% { filter: brightness(1.1) drop-shadow(0 0 30px rgba(193, 71, 255, 0.4)); }
}

@keyframes glow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(60, 90, 255, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(60, 90, 255, 0.6); }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
}

.action-buttons::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20%;
    width: 6px;
    height: 6px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.action-buttons::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 20%;
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 1s;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-gray);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 1);
}

.btn-token {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-token:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.btn-emoji {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-emoji {
    transform: scale(1.2) rotate(5deg);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Steps Container */
.steps-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.steps-container h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.step:hover::before {
    width: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: left 0.5s;
}

.step:hover .step-number::before {
    left: 100%;
}

.step p {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Live Crypto Donation Counter */
.donation-counter {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 3rem 0;
    color: #2a2a2a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(60, 90, 255, 0.1);
    border-bottom: 1px solid rgba(60, 90, 255, 0.1);
}

.donation-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(60, 90, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.counter-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(60, 90, 255, 0.1);
}

.counter-amount {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: pulse 2s ease-in-out infinite;
}

.counter-source {
    font-size: 1.3rem;
    color: #3c5aff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.counter-explanation {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.how-to-link {
    margin-bottom: 1.5rem;
}

.how-to-link a {
    color: #3c5aff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.how-to-link a:hover {
    color: #2a4aff;
    border-bottom-color: #2a4aff;
}

.counter-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-buy-now {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-buy-now::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;
}

.btn-buy-now:hover::before {
    left: 100%;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(60, 90, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid #3c5aff;
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #3c5aff;
    border-radius: 50%;
    animation: liveBlink 1s ease-in-out infinite;
}

.live-text {
    color: #3c5aff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes liveBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 0.6;
    }
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

@keyframes waveLeft {
    0%, 100% {
        transform: translateY(-50%) scaleX(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scaleX(1.2);
        opacity: 0.9;
    }
}

@keyframes waveRight {
    0%, 100% {
        transform: translateY(-50%) scaleX(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scaleX(1.2);
        opacity: 0.9;
    }
}

/* News Section */
.news-section {
    padding: var(--section-padding);
    background: white;
    overflow: hidden; /* Prevent horizontal scrolling */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden; /* Prevent horizontal scrolling */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    position: relative;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    opacity: 0.7;
    border-radius: 2px;
}

.section-header h2::before {
    left: -80px;
    animation: slideInLeft 1s ease-out 0.5s both, waveLeft 3s ease-in-out infinite;
}

.section-header h2::after {
    right: -80px;
    animation: slideInRight 1s ease-out 0.5s both, waveRight 3s ease-in-out infinite;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    opacity: 0;
    transform: translateY(20px);
}

/* Decorative elements */
.section-header::before,
.section-header::after {
    content: '📰';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.section-header::before {
    left: 20px;
    animation-delay: 0s;
}

.section-header::after {
    right: 20px;
    animation-delay: 1.5s;
}

.news-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px; /* Higher to fit full card */
    position: relative;
}

.news-card {
    width: 100%;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    border: 1px solid #f0f0f0;
    margin: 0 auto;
    display: block;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.news-image {
    height: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.news-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.3s ease;
}

.news-card:hover .news-logo {
    filter: grayscale(0) contrast(1.2);
    transform: scale(1.05);
}

.image-placeholder {
    font-size: 2rem;
    color: var(--text-gray);
}

.news-content {
    padding: 1.25rem;
}

.news-source {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    line-height: 1.3;
    font-weight: 600;
}

.news-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more:hover {
    color: var(--primary-purple);
    transform: translateX(3px);
}



/* About Lulu Section */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lulu-character {
    display: flex;
    justify-content: center;
}

.lulu-image-container {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.lulu-image-container:hover {
    transform: scale(1.05);
}

.lulu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.lulu-image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-display);
}

.lulu-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lulu-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.story-button-container {
    margin-top: 2rem;
    text-align: center;
}

.btn-story {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-story:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Story Section */
.story-section {
    padding: var(--section-padding);
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text h3 {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text h4 {
    font-size: 1.4rem;
    color: white;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: #C147FF;
    font-weight: 600;
}

/* Story Modal specific styles */
#story-modal .modal-body {
    scrollbar-color: #C147FF #2a2a2a;
}

#story-modal .modal-body::-webkit-scrollbar-thumb {
    background: #C147FF;
}

#story-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #8B5CF6;
}

/* Help Section */
.help-section {
    padding: var(--section-padding);
    background: white;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.help-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.twitter {
    background: #000000;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.telegram {
    background: #0088cc;
}

/* Community Section */
.community-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.community-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.community-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.community-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-gray);
}

.community-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.community-cta {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social .social-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        padding-top: 80px;
    }
    
    .video-placeholder {
        margin-bottom: 3rem;
    }
    
    .video-frame {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .play-button {
        font-size: 3rem;
    }
    
    .video-text h2 {
        font-size: 1.5rem;
    }
    
    .video-text p {
        font-size: 1rem;
    }
    
    /* Mobile - Smaller Help Section */
    .help-section {
        padding: 2rem 0;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .help-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .help-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile - Smaller Community Section */
    .community-section {
        padding: 2rem 0;
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .community-placeholder {
        padding: 1.5rem 1rem;
    }
    
    .community-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .community-placeholder p {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .community-placeholder small {
        font-size: 0.8rem;
    }
    
    .community-cta {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        min-height: 4rem;
    }
    
    .typewriter-text {
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .steps-container {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .steps-container h3 {
        margin-bottom: 1.5rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lulu-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    /* News Slider Mobile */
    .news-slider-container {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .news-slider {
        min-height: 360px; /* Slightly shorter on mobile to reduce white space */
    }
    
    .news-card {
        width: 320px;
        margin-bottom: 0;
    }
    
    .news-image {
        height: 80px; /* Shorter image on mobile */
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .news-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .read-more {
        font-size: 0.8rem;
    }
    
    /* Mobile header animations */
    .section-header h2::before,
    .section-header h2::after {
        width: 25px;
        height: 2px;
    }
    
    .section-header h2::before {
        left: -30px;
    }
    
    .section-header h2::after {
        right: -30px;
    }
    
    .section-header::before,
    .section-header::after {
        font-size: 1.2rem;
    }
    
    .section-header::before {
        left: 10px;
    }
    
    .section-header::after {
        right: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .news-slider-container {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .news-slider {
        min-height: 340px;
    }
    
    .news-card {
        width: 300px;
    }
    
    .news-image {
        height: 70px;
    }
    
    .news-content {
        padding: 0.875rem;
    }
    
    .news-card h3 {
        font-size: 0.85rem;
    }
    
    .news-card p {
        font-size: 0.75rem;
    }
    
    /* Extra small header animations */
    .section-header h2::before,
    .section-header h2::after {
        width: 20px;
        height: 2px;
    }
    
    .section-header h2::before {
        left: -25px;
    }
    
    .section-header h2::after {
        right: -25px;
    }
    
    .section-header::before,
    .section-header::after {
        font-size: 1rem;
    }
    
    .section-header::before {
        left: 5px;
    }
    
    .section-header::after {
        right: 5px;
    }
    
    /* Extra small action buttons */
    .action-buttons {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .btn {
        max-width: 280px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}
    
    .lulu-image-container {
        width: 200px;
        height: 300px;
    }
    
    .counter-text h2 {
        font-size: 2rem;
    }
    
    .counter-source {
        font-size: 1.1rem;
    }
    
    .counter-explanation {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .counter-actions {
        gap: 1rem;
    }
    
    .btn-buy-now {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding-top: 70px;
    }
    
    .video-placeholder {
        margin-bottom: 2.5rem;
    }
    
    .video-frame {
        padding: 1.5rem 0.5rem;
        margin: 0 0.5rem;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .video-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 2.5rem;
        min-height: 3.5rem;
    }
    
    .typewriter-text {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        font-size: 0.95rem;
    }
    
    .action-buttons {
        margin-bottom: 2.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }
    
    .steps-container {
        margin-bottom: 2.5rem;
    }
    
    .steps-container h3 {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling - Removed to prevent jumping */

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* iPhone 16 and very small screens */
@media (max-width: 390px) {
    .hero-container {
        padding-top: 80px;
    }
    
    .video-placeholder {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        min-height: 3rem;
    }
    
    .typewriter-text {
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        font-size: 0.9rem;
    }
    
    .action-buttons {
        margin-bottom: 2rem;
    }
    
    .steps-container {
        margin-bottom: 2rem;
    }
    
    .steps-container h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .action-buttons,
    .help-cards,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    height: 96vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    transform: scale(1.2);
    color: #1a1a1a;
}

.modal-body {
    padding: 2rem;
    max-height: calc(96vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ff88 #2a2a2a;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}

.buy-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.buy-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.buy-step .step-number {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #cccccc;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.step-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-link, .wallet-link, .buy-link {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.app-link:hover, .wallet-link:hover, .buy-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    border-color: #00ff88;
    transform: translateY(-2px);
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer .note {
    color: #00ff88;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

.contract-address {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-address h4 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.ca-warning {
    color: #ff6b6b;
    text-align: center;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.ca-note {
    color: #ffd93d;
    text-align: center;
    margin: 1rem 0 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 217, 61, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 217, 61, 0.3);
}

.address-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.contract-code {
    flex: 1;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.copy-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

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

.copy-btn.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.copy-btn.copied .copy-text {
    content: "Copied!";
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-width: none;
        height: 96vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(96vh - 100px);
    }
    
    .buy-step {
        gap: 1rem;
    }
    
    .buy-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-links {
        flex-direction: column;
    }
    
    .address-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contract-code {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ca-warning, .ca-note {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* Featured News Section */
.featured-news {
    margin-top: 2rem;
}

.featured-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.featured-news-image {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.featured-news-content {
    padding: 2rem;
}

.featured-news-content .news-source {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.3;
    font-weight: 700;
}

.featured-news-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.featured-news-content .read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-news-content .read-more:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

/* Responsive design for featured news */
@media (max-width: 768px) {
    .featured-news-image {
        height: 300px;
    }
    
    .featured-news-content {
        padding: 1.5rem;
    }
    
    .featured-news-content h3 {
        font-size: 1.3rem;
    }
    
    .featured-news-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .featured-news-image {
        height: 250px;
    }
    
    .featured-news-content {
        padding: 1rem;
    }
    
    .featured-news-content h3 {
        font-size: 1.2rem;
    }
}
