body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.container {
    text-align: center;
    padding-top: 120px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin: 10px 0;
}

p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    background: #ea580c;
}

.btn.secondary {
    background: #334155;
}
