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


body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #121212;
    color: #e0e0e0; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 680px;
    width: 100%;
}


.name {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff; 
}


.desc {
    font-size: 1.125rem;
    max-width: 36ch;
    margin: 0 auto 2.5rem;
    color: #b0b0b0; 
}


.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.link-item {
    font-size: 1rem;
    text-decoration: none;
    color: #64b5f6; 
    transition: all 0.2s ease;
    position: relative;
    padding: 0 0.125rem;
}

.link-item:hover {
    color: #42a5f5; 
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.link-item:hover::after {
    transform: scaleX(1);
}


.footer-text {
    font-size: 0.875rem;
    color: #757575; 
}
