body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
 
.container {
    text-align: center;
    padding: 20px;
}
 
h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
 
h1 span {
    color: #ff6600;
}
 
p {
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 30px;
}
 
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
 
.btn {
    background: #ff6600;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}
 
.btn:hover {
    background: #e65c00;
}
