* {
}

.card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
}

.card h2 {
    margin-bottom: 15px;
    color: #c4b5fd;
}

.card p {
    color: #d1d5db;
    line-height: 1.6;
}

.large {
    margin-bottom: 30px;
}

.page {
    padding: 60px 8%;
}

.page h1 {
    margin-bottom: 40px;
    font-size: 3rem;
}

.rules {
    margin-left: 20px;
    line-height: 2;
}

.redirect-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #9ca3af;
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.15;
    z-index: -1;
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 3rem;
    }
}