@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600&display=swap');

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #1e293b 0%, #5e728f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #f8fafc;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in;
}

.icon {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 20px rgba(148, 163, 184, 0.2);
    color: #fff;
    text-transform: lowercase;
}

.blink {
    animation: blink 1s step-start infinite;
    font-weight: 800;
}

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

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

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

@media (max-width: 768px) {
    .icon {
        width: 150px;
        height: 150px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}