body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: -webkit-linear-gradient(#00d4ff, #0056d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade 3s infinite;
}

footer {
    position: fixed;
    bottom: 20px;
    font-size: 1.2rem;
    color: #888;
}

@keyframes fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
