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

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background-color: #000000;
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.main-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ffffff;
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    opacity: 0.8;
    animation: blink 1.5s infinite;
}

.objective {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.6;
    max-width: 600px;
    line-height: 1.4;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #ffffff;
    }
    to {
        text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
    }
}

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

/* Matrix rain effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 255, 0, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: -1;
}
