/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505; /* Deep Black */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.btn-primary {
    padding: 10px 24px;
    background: var(--text-primary);
    color: var(--bg-color) !important;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--text-secondary);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover {
    border-color: var(--text-primary);
}

.arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

/* Manifesto Section */
.manifesto-section {
    padding: 120px 0;
    border-top: 1px solid var(--glass-border);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

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

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    text-align: justify;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #090909; /* Slightly different background for contrast */
    border-top: 1px solid var(--glass-border);
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-container p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
    text-align: justify;
}

/* The Alignment Logo Animation */
.contact-align-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
    cursor: pointer;
}

.align-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.align-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 30px);
    grid-template-rows: repeat(2, 60px);
    gap: 6px;
    padding: 8px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 8px;
    border: 2px solid #222;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

.align-logo-grid .block {
    border-radius: 4px;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.2), 0 4px 6px rgba(0,0,0,0.4);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy spring effect */
}

.align-logo-grid .block.blue {
    background: linear-gradient(180deg, #3b74b8, #1e4575);
}

.align-logo-grid .block.red {
    background: linear-gradient(180deg, #b83b4b, #751e2a);
}

/* Initial Misaligned State */
.contact-align-wrapper .b1 { transform: translate(-20px, -15px) rotate(-15deg); opacity: 0.5; }
.contact-align-wrapper .b2 { transform: translate(0px, -25px) rotate(5deg); opacity: 0.5; }
.contact-align-wrapper .b3 { transform: translate(25px, -10px) rotate(20deg); opacity: 0.5; }
.contact-align-wrapper .b4 { transform: translate(-15px, 20px) rotate(-25deg); opacity: 0.5; }
.contact-align-wrapper .b5 { transform: translate(10px, 30px) rotate(-5deg); opacity: 0.5; }
.contact-align-wrapper .b6 { transform: translate(30px, 15px) rotate(10deg); opacity: 0.5; }

/* The Perfect Alignment on Hover */
.contact-align-wrapper:hover .block {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
}

/* Glow effect when aligned */
.contact-align-wrapper:hover .align-logo-grid {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 0 30px rgba(59, 116, 184, 0.4);
    border-color: #3b74b8;
    transition: all 0.8s ease;
}

/* Text Logo Expansion */
.align-text-logo {
    width: 0px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.align-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 240px; /* Fixed width prevents letter wrapping during slide out */
    padding-left: 10px;
}

.contact-align-wrapper:hover .align-logo-container {
    gap: 20px;
}

.contact-align-wrapper:hover .align-text-logo {
    width: 250px;
    opacity: 1;
}

.text-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}

.text-row span {
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
}

/* Letter by Letter Animation Triggers */
.contact-align-wrapper:hover .text-row span {
    opacity: 1;
    transform: translateX(0);
}

.contact-align-wrapper:hover .l1 { transition-delay: 0.1s; }
.contact-align-wrapper:hover .l2 { transition-delay: 0.2s; }
.contact-align-wrapper:hover .l3 { transition-delay: 0.3s; }
.contact-align-wrapper:hover .l4 { transition-delay: 0.4s; }
.contact-align-wrapper:hover .l5 { transition-delay: 0.5s; }
.contact-align-wrapper:hover .l6 { transition-delay: 0.6s; }
.contact-align-wrapper:hover .l7 { transition-delay: 0.7s; }
.contact-align-wrapper:hover .l8 { transition-delay: 0.8s; }
.contact-align-wrapper:hover .l9 { transition-delay: 0.9s; }
.contact-align-wrapper:hover .l10 { transition-delay: 1.0s; }
.contact-align-wrapper:hover .l11 { transition-delay: 1.1s; }
.contact-align-wrapper:hover .l12 { transition-delay: 1.2s; }

.btn-huge {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    transition: color 0.3s ease;
}

.btn-huge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-huge:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.green-initiative {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 350px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.leaf-icon { font-size: 1.5rem; }

/* Animations (triggered by JS) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links a:not(.btn-primary) {
        display: none;
    }
    
    .card {
        padding: 30px;
    }
}

/* Splash Screen Animation */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.splash-logo {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: 0px;
    color: var(--text-primary);
    position: relative;
    animation: logoIntro 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Shine effect crossing the text */
.splash-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: shine 2s 0.5s forwards;
}

/* Continuous glow for the top navbar logo */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    padding: 6px 16px;
    background: linear-gradient(145deg, #1f1f1f, #0a0a0a);
    border: 1px solid #333;
    border-top: 1px solid #555; /* Highlight for 3D metallic feel */
    border-bottom: 1px solid #111;
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 6px rgba(0,0,0,0.5);
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes logoIntro {
    0% {
        opacity: 0;
        letter-spacing: 20px;
        transform: scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        letter-spacing: 5px;
        transform: scale(1);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        letter-spacing: 10px;
        transform: scale(1);
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Coming Soon Modal */
.coming-soon-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: all;
    transition: all 0.5s ease;
}

.coming-soon-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: linear-gradient(145deg, #111, #080808);
    border: 1px solid #333;
    padding: 40px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 650px;
    width: 95%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.coming-soon-modal.hidden .modal-content {
    transform: scale(0.8);
}

.close-btn {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: #fff; font-size: 2rem;
    cursor: pointer; opacity: 0.5;
    transition: opacity 0.3s;
}
.close-btn:hover { opacity: 1; }

.modal-logo {
    font-weight: 800; letter-spacing: 2px;
    color: #555; margin-bottom: 20px;
}

.glitch-text {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.modal-desc {
    color: #aaa;
    margin-bottom: 24px;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.m-feat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.m-feat:hover {
    background: rgba(59, 116, 184, 0.15);
    border-color: #3b74b8;
    transform: translateY(-2px);
    color: #fff;
}

.progress-container {
    width: 100%; height: 8px;
    background: #222; border-radius: 4px;
    overflow: hidden; margin-bottom: 10px;
}

.progress-bar {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #3b74b8, #b83b4b);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px #3b74b8;
}

.progress-text {
    font-size: 0.9rem; color: #777;
    margin-bottom: 40px; font-weight: 600;
}

.waitlist-form p {
    font-size: 0.9rem; margin-bottom: 15px; color: #ccc;
}

.input-group {
    display: flex; gap: 10px;
}

.input-group input {
    flex: 1; padding: 12px;
    background: #111; border: 1px solid #444;
    color: #fff; border-radius: 4px;
    outline: none;
}
.input-group input:focus { border-color: #3b74b8; }

/* Footer & Green Initiative */
.footer {
    border-top: 1px solid #1a1a1a;
    padding: 40px 0;
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: #555;
    font-size: 0.9rem;
}

.green-initiative {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.green-initiative:hover {
    opacity: 0.8;
}

/* Carbon Balance Animation */
.carbon-balance {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.balance-beam {
    width: 100%;
    border-bottom: 2px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2px;
    transform-origin: center bottom;
    animation: balanceAlign 3s ease-in-out infinite alternate;
}

.balance-beam .leaf {
    font-size: 1.2rem;
    transform: translateX(-5px);
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.5));
}

.balance-beam .co2 {
    font-size: 1.5rem;
    position: relative;
    transform: translateX(5px);
    color: #444; /* Dark cloud */
}

.co2-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -40%);
    font-size: 0.4rem;
    font-weight: 900;
    color: #000;
    font-family: sans-serif;
}

.fulcrum {
    font-size: 1rem;
    margin-top: -6px;
    z-index: 2;
}

.green-initiative p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.green-initiative p strong {
    color: #4ade80;
    font-weight: 600;
}

@keyframes balanceAlign {
    0% { transform: rotate(15deg); } /* CO2 heavier */
    100% { transform: rotate(0deg); } /* Aligned */
}

/* Language Switcher */
.lang-switcher {
    background: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
    margin-right: 10px;
}

.lang-switcher:hover, .lang-switcher:focus {
    border-color: #3b74b8;
}

.lang-switcher option {
    background: #111;
    color: #fff;
}

/* RTL (Right-to-Left) Mode for Arabic */
.rtl-mode {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.rtl-mode .nav-links {
    flex-direction: row-reverse;
}
.rtl-mode .hero h1, .rtl-mode .hero p, .rtl-mode .hero-content {
    text-align: right;
}
.rtl-mode .footer-content {
    flex-direction: row-reverse;
}
.rtl-mode .green-initiative {
    flex-direction: row-reverse;
    text-align: right;
}

/* Responsive / Mobile Design */
@media (max-width: 768px) {
    /* Prevent Horizontal Scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Navbar */
    .logo { font-size: 1.2rem; }
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-links a[href="#manifesto"] {
        display: none;
    }
    
    /* Hero */
    .hero { padding-top: 60px; min-height: 80vh; }
    .hero h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    .hero .subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* Sections Padding */
    .features-section, .contact-section, .manifesto-section {
        padding: 60px 0;
    }
    
    /* Grids & Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .card {
        padding: 20px 15px;
    }
    .card h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .card p { font-size: 0.9rem; }
    .card-icon { font-size: 1.5rem; margin-bottom: 15px; }
    
    /* Alignment Logo & Text */
    .contact-container h2 {
        font-size: 1.8rem;
    }
    .contact-align-wrapper {
        gap: 10px;
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
    }
    
    /* Splash Screen Fix for Mobile */
    .splash-logo {
        font-size: 2rem;
        animation: splashIntroMobile 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    /* Initial Misaligned State for Mobile (Smaller offsets) */
    .contact-align-wrapper .b1 { transform: translate(-5px, -5px) rotate(-10deg); }
    .contact-align-wrapper .b2 { transform: translate(0px, -10px) rotate(5deg); }
    .contact-align-wrapper .b3 { transform: translate(10px, -5px) rotate(15deg); }
    .contact-align-wrapper .b4 { transform: translate(-10px, 5px) rotate(10deg); }
    .contact-align-wrapper .b5 { transform: translate(0px, 10px) rotate(-5deg); }
    .contact-align-wrapper .b6 { transform: translate(5px, 5px) rotate(-15deg); }
    
    .align-text-logo {
        transform: translateX(5px);
    }
    
    /* Dynamic Auto-Animation on Mobile via JS .force-hover class */
    .contact-align-wrapper.force-hover .b1,
    .contact-align-wrapper.force-hover .b2,
    .contact-align-wrapper.force-hover .b3,
    .contact-align-wrapper.force-hover .b4,
    .contact-align-wrapper.force-hover .b5,
    .contact-align-wrapper.force-hover .b6 {
        transform: translate(0, 0) rotate(0deg) !important;
        opacity: 1 !important;
    }
    .contact-align-wrapper.force-hover .align-logo-grid {
        box-shadow: 0 0 20px rgba(59, 116, 184, 0.5), inset 0 0 10px rgba(0,0,0,0.8) !important;
        border-color: #3b74b8 !important;
    }
    .contact-align-wrapper.force-hover .align-text-logo {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .align-logo-grid {
        grid-template-columns: repeat(3, 15px);
        grid-template-rows: repeat(2, 30px);
        gap: 4px;
        padding: 6px;
    }
    .text-row span {
        font-size: 1.5rem !important;
    }
    .row-project span { letter-spacing: -1px !important; }
    .row-align span { letter-spacing: 2px !important; }
    
    /* Footer */
    .footer { padding: 30px 0; }
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    .green-initiative {
        margin: 0 auto;
    }
    
    /* Modal */
    .modal-content {
        padding: 25px 15px;
    }
    .glitch-text {
        font-size: 1.5rem;
    }
    .m-feat {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}



/* Mobile Splash Screen Keyframes */
@keyframes splashIntroMobile {
    0% {
        opacity: 0;
        letter-spacing: -2px;
        filter: blur(5px);
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        letter-spacing: 5px;
        transform: scale(1);
    }
}
