body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #1b0c0c, #2e0b00);
    color: #f1e3d3;
}

h1 {
    font-size: 2rem;
    color: #ff6f3c;
    margin-bottom: 40px;
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.links a {
    display: inline-block;
    text-decoration: none;
    background: #ff6f3c;
    color: #000;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    transition: transform 0.2s, background 0.2s;
}

.links a:hover {
    transform: scale(1.05);
    background: #ff8a50;
}

footer {
    margin-top: 60px;
    font-size: 0.85rem;
    opacity: 0.7;
}