* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    height: 100vh;
    background: #0f1115;
    color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

h1 span {
    color: #ff8a2a;
}

.subtitle {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #9aa0a6;
    letter-spacing: 0.1em;
}

.contact {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact a {
    text-decoration: none;
    color: #e6e6e6;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #1f232b;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact a:hover {
    border-color: #ff8a2a;
    color: #ff8a2a;
    background: rgba(255, 138, 42, 0.05);
}
