* {
    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: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.container {
    text-align: center;
    max-width: 400px;
}

.name {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tagline {
    font-size: 1.25rem;
    color: #a3a3a3;
    margin-bottom: 0.75rem;
}

.description {
    font-size: 1rem;
    color: #737373;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 8px;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.link:hover {
    background-color: #262626;
    border-color: #404040;
    color: #ffffff;
}

.link svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .links {
        flex-direction: column;
    }
    
    .link {
        justify-content: center;
    }
}
