@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    background: #191b1d;
    color: #fff;
    margin: 0;
}

h1 {
    font-size: 2.25rem;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page__content {
    position: relative;
    width: 100%;
    max-width: 60rem;
    background: #0f0f0f;
    text-align: center;
}
.page__content--landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.75rem;
    padding: 5rem 1rem 0.75rem;
}
.page__content--rewards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.75rem;
    padding: 5rem 1rem;
}

.page__header-img {
    position: absolute;
    top: 0;
    transform: translateY(calc(-100% + 32px));
}

.page__title--rewards {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: left;
}

.button {
    position: relative;
    display: inline-flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 2px solid #888;
    color: #fff;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.button:hover {
    background-color: #888;
    color: #000;
}

.button--locked {
    background: #ff0;
    border-color: #ff0;
    color: #000;
    justify-content: center;
}

.button--lg {
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    background: #ff0;
    border: 3px solid #ff0;
    color: #000;
    text-transform: uppercase;
    border-radius: 1rem;
    font-weight: 700;
    min-width: min(100vw, 20rem);
}

.button--lg:hover, .button--locked:hover {
    background-color: transparent;
    color: #ff0;
}

.button__label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button__overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    background: #eee;
    color: #000;
}

.card--locked {
    opacity: 0.5;
}

.card--error {
    background-color: transparent;
    color: #fff;
}

.card--special {
    background-color: #a9f;
}

.card__label {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.card__sublabel {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

.card__note {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    opacity: 0.5;
}

.modal {
    padding: 2.125rem 1.625rem;
    text-align: left;
    background: #0f0f0f;
    color: #fff;
    border: none;
}

.modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.modal__half-w {
    max-width: 40rem;
}

.modal__title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.modal p {
    margin-bottom: 1rem;
}

.modal__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table {
    width: 100%;
}

.table td {
    padding: 0.5rem;
}

.table tbody:nth-child(even) td {
    background: #000;
}

input, textarea {
    width: 100%;
    height: 100%;
    resize: vertical;
}

.footer-link {
    font-size: 0.75rem;
    opacity: 0.5;
    text-decoration: none;
    background: transparent;
    border: none;
    color: #fff;
    transition: opacity 0.25s ease;
}

.footer-link:hover {
    opacity: 1;
}

.l-reward-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}