body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    color: white;
}

.container {
    text-align: center;
}

.logo {
    font-size: 100px;
    font-weight: bold;
    color: white;
    background: linear-gradient(to bottom, #444, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.tagline {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 20px;
}

.links a {
    text-decoration: none;
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.links a:hover {
    background: #cc0000;
}
