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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.05em;
}

footer {
    padding: 2rem;
    text-align: center;
}

footer p {
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 0.05em;
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
