* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212; /* Deep dark background */
    color: #e0e0e0;           /* Soft white text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    line-height: 1.6;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -1px;
}

p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3b82f6; /* Modern blue */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn:hover {
    background-color: #2563eb;
}