:root {
    --graphite: #333333;
    --orange: #FF7A00;
    --white: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--graphite);
    color: var(--white);
    line-height: 1.6;
    padding: 0 20px;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

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

a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: center;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: center;
}

.links {
    margin: 30px 0;
}

.social {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    margin-top: 30px;
    justify-content: center;
}

.social a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social a:hover {
    transform: translateY(-3px);
    color: var(--orange);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
