/* Base styles */
body {
    background: black;
    color: white;
    font-family: monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    min-height: 100vh;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Typography */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.2s;
}

.logo {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.logo a {
    border-bottom: none;
}

/* Links */
a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

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

@keyframes shine {
    to {
        background-position: -300% center;
    }
}

@keyframes sparkle {
    to {
        background-position: 200% center;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    body {
        padding: 16px;
    }
    h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
} 