body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #0b0e16;
    color: #e6e6e6;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}
.hero {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255,255,255,0.15);
    margin-bottom: 45px;
}
h1 {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-size: 2.4rem;
}
p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #d6d6d6;
}
.button {
    display: inline-block;
    padding: 16px 32px;
    background: #4c6cff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.25s;
}
.button:hover {
    background: #3b53d6;
}
footer {
    margin-top: 60px;
    opacity: 0.5;
    font-size: 0.9rem;
    padding-bottom: 40px;
}
