* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 40px;
    max-width: 500px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.text {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 14px 26px;
    background: #ffb300;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
}
