/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.05) rotate(0.5deg); opacity: 1; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Enhanced Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header:hover {
    background: rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.nav-brand h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: textGlow 4s ease-in-out infinite alternate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-brand h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.nav-brand h1:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)); }
    100% { filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7)); }
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 25px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Audio control button */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: audioFloat 3s ease-in-out infinite;
    overflow: hidden;
}

.audio-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.audio-control:hover::before {
    left: 100%;
}

.audio-control:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.audio-control i {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.audio-control.playing {
    animation: audioPulse 2s ease-in-out infinite;
}

.audio-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.music-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.music-artist {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
}

@keyframes audioFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes audioPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Enhanced Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 12rem 0 10rem;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff, #e0e0e0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
    animation: titleFloat 8s ease-in-out infinite;
    position: relative;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: titleLine 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes titleLine {
    0%, 100% { width: 250px; opacity: 0.8; }
    50% { width: 300px; opacity: 1; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: subtitleFade 6s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes subtitleFade {
    0%, 100% { opacity: 0.7; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-5px); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: statFloat 6s ease-in-out infinite;
    cursor: none;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat:hover::before {
    transform: translateX(100%);
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    animation: numberPulse 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes statFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg); 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    25% { 
        transform: translateY(-15px) rotateX(2deg); 
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: translateY(-25px) rotateX(0deg); 
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    }
    75% { 
        transform: translateY(-15px) rotateX(-2deg); 
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
}

@keyframes numberPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.08); 
        text-shadow: 0 0 60px rgba(255, 255, 255, 0.9);
    }
}

/* Enhanced Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff, #e0e0e0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    animation: sectionTitleGlow 6s ease-in-out infinite;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes sectionTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6)); }
}

@keyframes titleUnderline {
    0%, 100% { width: 150px; opacity: 0.6; }
    50% { width: 200px; opacity: 1; }
}

/* Enhanced Blog Section */
.blog-section {
    padding: 10rem 0;
    background: transparent;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(32px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 2.5rem 2.5rem 3.5rem 2.5rem;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 40px rgba(255,255,255,0.10);
    transform: translateY(-10px) scale(1.025);
    border-color: rgba(255,255,255,0.28);
}

.blog-card.featured {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.blog-card.featured::after {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.blog-meta {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.blog-date, .blog-category {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.22);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    transition: background 0.2s, color 0.2s;
}

.blog-category {
    background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
    color: #fff;
    border: none;
}

.blog-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.blog-card:hover .blog-icon {
    transform: scale(1.25) rotate(12deg);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-content {
    padding-bottom: 1.5rem;
}

.blog-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.3;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-title {
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Section */
.about-section {
    padding: 10rem 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px);
    margin: 8rem 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(40px);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.social-links {
    display: flex;
    gap: 2.5rem;
}

.social-link {
    color: white;
    font-size: 1.6rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-10px) scale(1.12) rotate(8deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 35px rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 10rem 0 8rem;
        margin-top: 120px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .stat {
        min-width: 280px;
        padding: 2.5rem 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-card-content {
        padding: 2.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-section {
        margin: 6rem 20px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero {
        padding: 8rem 0 6rem;
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .blog-section,
    .about-section {
        padding: 8rem 0;
    }
    
    .blog-card-content {
        padding: 2rem;
    }
    
    .blog-card-header {
        padding: 2.5rem 2rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .nav-link {
        text-align: center;
        width: 100%;
    }
    
    .stat {
        min-width: 250px;
        padding: 2rem 1.5rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.blog-card {
    animation: fadeInUp 1.2s ease-out;
}

.blog-card:nth-child(2) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.6s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.9s;
}

.stat {
    animation: float 5s ease-in-out infinite;
}

.stat:nth-child(2) {
    animation-delay: 1.7s;
}

.stat:nth-child(3) {
    animation-delay: 3.4s;
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

/* Enhanced Particle effect */
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 15s linear infinite;
}

/* Enhanced Hero Stats Animations */
.hero-stats {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 4rem 3rem;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 200px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: statFloat 8s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: statGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.stat:hover::before {
    transform: translateX(100%);
}

.stat:hover {
    transform: translateY(-25px) scale(1.1) rotateY(5deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat:hover .stat-number {
    animation: numberBounce 0.6s ease-out;
}

.stat:hover .stat-label {
    animation: labelGlow 0.6s ease-out;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
    animation: numberPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: numberGlow 3s ease-in-out infinite;
    z-index: -1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Enhanced Animation Keyframes */
@keyframes statFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg); 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    25% { 
        transform: translateY(-15px) rotateX(2deg); 
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: translateY(-25px) rotateX(0deg); 
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    }
    75% { 
        transform: translateY(-15px) rotateX(-2deg); 
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
}

@keyframes numberPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.08); 
        text-shadow: 0 0 60px rgba(255, 255, 255, 0.9);
    }
}

@keyframes numberBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.08); }
}

@keyframes labelGlow {
    0% { 
        opacity: 0.95; 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        opacity: 1; 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% { 
        opacity: 0.95; 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes statGlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1);
    }
}

@keyframes numberGlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* But allow text selection cursor on text elements */
/* (REMOVED: p, h1, h2, h3, h4, h5, h6, span, div, li { cursor: none !important; }) */

.back-button {
    position: fixed;
    top: 100px;
    left: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-button i {
    font-size: 1.2rem;
}

/* Ensure all links are clickable */
.nav-link, .social-link, .back-button {
    position: relative;
    z-index: 10;
}

/* Make sure the transparency content is clickable */
.transparency-content, .transparency-section, .section-content {
    position: relative;
    z-index: 1;
}

/* Full screen blog post overlay */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.fullscreen-overlay.active .fullscreen-content {
    transform: scale(1);
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.fullscreen-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fullscreen-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.fullscreen-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fullscreen-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Move expand arrow to bottom right and style it */
.expand-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(102,126,234,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    z-index: 2;
}

.blog-card:hover .expand-arrow {
    opacity: 1;
    background: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(102,126,234,0.22);
}

.expand-arrow:hover {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    transform: scale(1.18);
    box-shadow: 0 10px 32px rgba(102,126,234,0.28);
}

/* Scrollbar styling for fullscreen content */
.fullscreen-content::-webkit-scrollbar {
    width: 8px;
}

.fullscreen-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.fullscreen-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.fullscreen-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
} 