* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --eu-blue: #0044CC;
    --eu-gold: #FFCC00;
    --eu-dark-blue: #002288;
    --bg-dark: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #00D4FF;
    --gradient-start: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-end: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #0a0a0a 100%);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-start);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#particleCanvas {
    z-index: 1;
}

#starCanvas {
    z-index: 2;
}

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

.libre {
    color: var(--eu-blue);
    text-shadow: 0 0 20px rgba(0, 68, 204, 0.5);
}

.lab {
    color: var(--eu-gold);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.eu-badge {
    background: linear-gradient(135deg, var(--eu-blue), var(--eu-dark-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 300;
    font-size: 0.8rem;
    border: 2px solid var(--eu-gold);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



.coming-soon {
    margin-bottom: 2rem;
}

.glitch {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    animation: glitch 2s infinite;
    text-shadow: 0 0 10px var(--accent);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.7s infinite;
    color: var(--eu-blue);
    z-index: -1;
    text-shadow: 2px 2px 5px rgba(0, 68, 204, 0.8);
}

.glitch::after {
    animation: glitch-2 0.9s infinite;
    color: var(--eu-gold);
    z-index: -2;
    text-shadow: -2px -2px 5px rgba(255, 204, 0, 0.8);
}



.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease-out backwards;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }

.feature:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.feature:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 204, 0, 0.1) 100%);
    border-radius: 15px;
    z-index: -1;
    animation: shimmer 2s infinite;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter {
    text-align: center;
    animation: fadeInUp 1s ease-out backwards;
    animation-delay: 0.8s;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.email-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.email-form input::placeholder {
    color: var(--text-secondary);
}

.email-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--eu-blue), var(--accent));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.email-form button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.email-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.email-form button:hover::before {
    left: 100%;
}



.footer {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out backwards;
    animation-delay: 1s;
}

.made-with {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.heart {
    color: #ff4458;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

.domain {
    font-size: 1.2rem;
    color: var(--eu-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

@keyframes glitch {
    0%, 100% {
        transform: translate(0, 0);
        text-shadow: 0 0 10px var(--accent);
    }
    20% {
        transform: translate(-3px, 2px);
        text-shadow: 3px -2px 15px rgba(0, 212, 255, 0.8);
    }
    40% {
        transform: translate(2px, -1px);
        text-shadow: -2px 1px 15px rgba(255, 204, 0, 0.8);
    }
    60% {
        transform: translate(-1px, 3px);
        text-shadow: 1px -3px 15px rgba(0, 68, 204, 0.8);
    }
    80% {
        transform: translate(3px, 1px);
        text-shadow: -3px -1px 15px rgba(255, 0, 0, 0.8);
    }
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0, 0);
        opacity: 0.8;
    }
    10% {
        clip-path: inset(10% 30% 20% 0);
        transform: translate(-5px, 3px);
        opacity: 0.9;
    }
    20% {
        clip-path: inset(20% 0 10% 30%);
        transform: translate(3px, -2px);
        opacity: 0.7;
    }
    30% {
        clip-path: inset(0 20% 30% 10%);
        transform: translate(-2px, 5px);
        opacity: 0.9;
    }
    40% {
        clip-path: inset(30% 10% 0 20%);
        transform: translate(5px, -3px);
        opacity: 0.6;
    }
    50% {
        clip-path: inset(10% 0 20% 30%);
        transform: translate(-3px, 2px);
        opacity: 0.8;
    }
    60% {
        clip-path: inset(20% 30% 0 10%);
        transform: translate(2px, -5px);
        opacity: 0.9;
    }
    70% {
        clip-path: inset(0 10% 10% 20%);
        transform: translate(-5px, -2px);
        opacity: 0.7;
    }
    80% {
        clip-path: inset(30% 20% 10% 0);
        transform: translate(3px, 4px);
        opacity: 0.8;
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0, 0);
        opacity: 0.7;
    }
    15% {
        clip-path: inset(5% 25% 15% 10%);
        transform: translate(4px, -3px);
        opacity: 0.8;
    }
    30% {
        clip-path: inset(15% 10% 5% 25%);
        transform: translate(-3px, 4px);
        opacity: 0.6;
    }
    45% {
        clip-path: inset(10% 15% 25% 5%);
        transform: translate(2px, -5px);
        opacity: 0.9;
    }
    60% {
        clip-path: inset(25% 5% 10% 15%);
        transform: translate(-4px, 3px);
        opacity: 0.7;
    }
    75% {
        clip-path: inset(5% 10% 15% 25%);
        transform: translate(3px, -2px);
        opacity: 0.8;
    }
    90% {
        clip-path: inset(15% 25% 5% 10%);
        transform: translate(-2px, 5px);
        opacity: 0.9;
    }
}



@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
    }
}





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

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form button {
        width: 100%;
    }
}