* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body,
html {
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    color: #f5f5f5;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 2s ease forwards;
}

h1 {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #c73f6c, #c22e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

p {
    font-weight: 500;
    font-size: 1.3rem;
    color: #ddd;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

footer a {
    color: #c73f6c;
    text-decoration: none;
}

@keyframes fadeIn {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}