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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #494f5c;
    color: #fff;
    min-height: 100vh;
}

#spotlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

#home-center {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

#home-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

#home-social {
    margin-top: 1rem;
}

#home-social a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

#home-social a:hover {
    opacity: 1;
}

.feather {
    width: 24px;
    height: 24px;
}

#home-footer {
    padding: 1rem 0;
    font-size: 0.875rem;
    opacity: 0.6;
}

#home-footer a {
    color: #fff;
    text-decoration: none;
}

#home-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    #home-title {
        font-size: 2rem;
    }

    #home-subtitle {
        font-size: 1rem;
    }
}
