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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #1d3557 100%);
    color: #fff;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffd166, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 2rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ccd6f6;
    backdrop-filter: blur(10px);
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffd166;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.corn {
    position: fixed;
    font-size: 2rem;
    opacity: 0.1;
    animation: grow 8s ease-in-out infinite;
}

.corn:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.corn:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.corn:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.corn:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }
.corn:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }

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

.footer {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #495670;
    font-size: 0.8rem;
}

