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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    margin-top: -10vh;
}

.title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    font-weight: 300;
}

.description .link {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.description .link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 0 8%;
        margin-top: -5vh;
    }
    
    .title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
