/* Reset */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Background */
body {
    background: #fafafa;
    font-family: system-ui, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Container */
.container {
    max-width: 400px;
    padding: 20px;
}

/* Logo */
.logo {
    width: 150px;
    height: auto;
    margin-bottom: 40px;
}

/* Social Icons */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.icon:hover {
    opacity: 0.7;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    background: #000;
    color: #fff;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.btn:hover {
    background: #111;
}

/* Footer */
.footer {
    font-size: 13px;
    color: #777;
}
