:root {
    --neutral1: #171717; /* neutral-900 */

    --gris-normal: rgb(12 10 9 / .4); /* stone-950/40 */
    --gris-hover: rgb(12 10 9 / 1); /* stone-950 */
    --gris-active: rgb(12 10 9 / .7); /* stone-950/70 */

    --highlight1: rgb(64 64 64 / .6); /* zinc-700/60 */
    --highlight1-brighter: rgb(64 64 64 / 1); /* neutral-700/60 */
    --highlight1-darker: rgb(82 82 82 / 1); /* neutral-600 */

    --pageBg: var(--neutral1);

    --text-color: white;
}

.perks-category {
    display: flex;
    background: var(--highlight1);
    color: var(--text-color);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0 0 0;
    transition: all .5s cubic-bezier(0, 1, .4, 1);
    flex-direction: column;
}

.perks-category:hover {
    background: var(--highlight1-brighter);
    transform: scale(1.02);
}

.perks-category h2 {
    font-weight: 800;
    margin: 0;
}

.perks-category p {
    font-weight: 400;
    margin: 0;
}

.mini-text {
    display: flex;
    background: var(--gris-active);
    color: var(--text-color);
    border-radius: 20px;
    padding: 20px 20px;
    margin: 20px 0 0 0;
    align-items: center;
    justify-content: center;
    transition: all .5s cubic-bezier(0, 1, .4, 1);
    flex-direction: column;
    text-align: center;
}

.mini-text h2 {
    font-weight: 800;
    font-size: 24px;
    margin: 0;
}

.mini-text h3 {
    font-weight: 800;
    font-size: 20px;
    margin: 0;
}

.mini-text h4 {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.colortype2 {
    background: var(--gris-hover);
}

.alerttype {
    background: none;
    outline: 6px solid var(--highlight1-brighter) !important;
    animation: acolortype3 2s infinite;
}

.alerttype:hover {
    outline: 10px solid var(--text-color);
    background: var(--gris-hover);
    transition: all 1s cubic-bezier(0, 1, .4, 1);
}

@keyframes acolortype3 {
    0% {
        outline: 6px solid var(--highlight1-brighter) !important;
    }
    50% {
        outline: 10px solid var(--text-color) !important;
    }
    100% {
        outline: 6px solid var(--highlight1-brighter) !important;
    }
}

.mangotype {
    background: linear-gradient(90deg, #c056c1, #d7aa42);
}

.mangotype:hover {
    padding: 50px 20px;
    cursor: pointer;
}

.mangotype:active {
    transform: scale(.9);
}

.zonecointype {
    background: linear-gradient(90deg, #803b28, #806828);
    flex-direction: row;
    gap: 20px;
    transition: all .5s cubic-bezier(0, 1, .4, 1);
    color: white;
}

.zonecointype div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.zonecoin-in {
    transition: all .5s cubic-bezier(0, 1, .4, 1);
    width: 50px;
}

.zonecoin-in img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all .8s cubic-bezier(0, 1, .4, 1);
    user-select: none;
}

.zonecoin-in img:hover {
    transform: scale(1.4) rotate(180deg);
    box-shadow: 0 0 50px -5px gold;
}

.zonecoin-in img:active {
    transition: all 5s cubic-bezier(0, 1, .4, 1);
    transform: scale(1) rotate(1800deg);
    box-shadow: 0 0 100px 30px gold;
}

.img-in {
    margin: 20px 0 0 0;
    border-radius: 20px;
    min-height: fit-content;
    background: var(--highlight1);
    transition: all .5s cubic-bezier(0, 1, .4, 1);
    box-shadow: 0 0 30px -10px black;
}

.img-in:hover {
    background: var(--highlight1-brighter);
    transform: scale(1.02);
    box-shadow: 0 0 40px -10px black;
}

.img-in img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
