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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #000;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.logo img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f7;
    color: #333;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.badge img {
    width: 20px;
    height: 20px;
}

.follow-card {
    background: #fff;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.follow-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #007aff;
}

.social-icon i {
    font-size: 26px;
}

footer {
    padding: 2rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #007aff;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #005ecb;
}
