@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

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

body {
    font-family: 'VT323', monospace;
    background: #000;
    color: #00ff00;
    line-height: 1.3;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 1rem;
    text-align: center;
}

.glitch {
    font-size: 2rem;
    color: #00ff00;
    text-transform: lowercase;
    text-shadow: 0 0 5px #00ff00;
}

/* Content */
.content {
    text-align: center;
}

.text-container {
    font-size: 0.9rem;
    line-height: 1.3;
}

.text-container p {
    margin-bottom: 0.3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.text-container p.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-container p.highlight {
    color: #ffff00;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.spacer {
    height: 0.4rem;
}

/* Footer */
.footer {
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 8s forwards;
}

.signature {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
}

.signature a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signature a:hover {
    color: #00ff00;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Simple scanlines */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 0, 0.02) 50%
    );
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0.3rem;
    }
    
    .glitch {
        font-size: 1.8rem;
    }
    
    .text-container {
        font-size: 0.85rem;
    }
    
    .text-container p.highlight {
        font-size: 0.95rem;
    }
}

/* Selection */
::selection {
    background: #00ff00;
    color: #000;
}