* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    color: rgb(var(--color-black));
    font-family: var(--font-sans-serif), sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../assets/images/xv.png");
    background-color: rgb(var(--color-green-light) / 0.25);
    filter: brightness(0.85);
}

.entry {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.entry__card {
    max-width: 600px;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.8s ease;
}

.entry__subtitle {
    color: rgb(var(--color-green-dark));
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.entry__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: rgb(var(--color-green-dark));
    margin-bottom: 1.5rem;
}

.entry__title span {
    color: rgb(var(--color-yellow-light));
    margin: 0 1.5rem;
}

.entry__title--names {
    font-family: var(--font-cursive);
}

.entry__title--small {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.entry__description,
.entry__instruction {
    max-width: 450px;
    margin: auto;
    line-height: 1.7;
    color: rgb(var(--color-black));
    font-size: 1.125rem;
}

.entry__instruction {
    margin-top: 1rem;
}

.entry__help {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgb(var(--color-gray-dark));
}

.entry__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.entry__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    background-color: rgb(var(--color-green-dark));
    color: rgb(var(--color-white));
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.entry__button:hover {
    background-color: rgb(var(--color-green-light));
}

.entry__button--outline {
    background: transparent;
    border: 1px solid rgb(var(--color-green-dark));
    color: rgb(var(--color-green-dark));
}

.entry__error {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: rgb(var(--color-yellow-light));
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}