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

body {
    min-height: 100vh;
    background: #0d1117;
    color: #e6edf3;
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #58a6ff;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #e6edf3 0%, #58a6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.subtitle {
    font-size: 1rem;
    color: #8b949e;
    line-height: 1.7;
    max-width: 400px;
}

.divider {
    width: 40px;
    height: 2px;
    background: #58a6ff;
    border-radius: 2px;
    margin: 0.5rem 0;
}

.cta-text {
    font-size: 0.9rem;
    color: #8b949e;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.8rem;
    background: #0a66c2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.linkedin-btn:hover {
    background: #0856a8;
    transform: translateY(-2px);
}

.linkedin-btn svg {
    width: 18px;
    height: 18px;
}

footer {
    position: fixed;
    bottom: 1.5rem;
    font-size: 0.75rem;
    color: #30363d;
}