.crypto-click {
    font-size: 175px;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    background-color: gold;
    color: darkgoldenrod;
    
    position: relative;
    isolation: isolate;
    font-weight: bold;
    border: 16px solid darkgoldenrod;
    box-shadow: inset 0 0 20px 15px goldenrod;
    text-shadow: 0 0 20px goldenrod;
    animation: slow-spin 60s linear infinite, pulse 3s ease-in-out infinite;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    &:hover {
        scale: 1.05 !important;
    }
    &:active {
        scale: 1 !important;
        opacity: 0.8;
    }
    &.auto-mine {
        pointer-events: none;
        opacity: 0.95;
        animation: click 1s ease-in-out infinite;
    }
}
.crypto-thing {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        pointer-events: none;
        z-index: -10 !important;
        translate: -50% -50%;
        background: repeating-conic-gradient(
            from 0deg,
            rgba(255, 215, 0, 0.95) 0deg 10deg,
            rgba(255, 215, 0, 0) 10deg 24deg
        );
        mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0) 100%);
        animation: slow-spin 60s linear infinite reverse;
    }
}

.crypto-per-click {
    margin: 20px 0;
    font-size: 16px;
    color: gold;
    text-shadow: 0 0 10px goldenrod;
}

@keyframes pulse {
    0% {scale: 0.95;}
    50% {scale: 1.05;}
    100% {scale: 0.95; }
}
@keyframes slow-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
@keyframes click {
    0% {scale: 1;}
    65% {scale: 1;}
    80% {scale: 1.05; opacity: 0.95;}
    90% {opacity: 0.8;}
    95% {scale: 1;}
    100% {opacity: 0.95;}
}

.big-itm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    top: 20px;

    & .boost {
        border: 2px solid teal;
        border-radius: 8px;
        padding: 20px;
        width: 200px;
        height: 200px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;

        & p {
            font-size: 16px;
            line-break: normal;
            text-align: center;
        }
    }
}
.wallet-itm {
    border: 2px solid teal;
    border-radius: 8px;
    padding: 20px;
    height: 400px;
    width: 200px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    & img {
        height: 125px;
        width: 125px;
        object-fit: cover;
        border-radius: 50%;
    }
    & p {
        font-size: 16px;
    }
}

h4:has(.next-refresh), .money-owned-temp {
    font-size: 18px;
    color: gold;
    text-shadow: 0 0 10px goldenrod;
    margin-top: -20px;
}
.nfts-owned, .unlocked-crypto-trophies {
    &.hidden {display: none;}
    & > .flexbox {
        justify-content: center;
        gap: 40px;
        padding: 0 30px;

        & > h1 {font-size: 54px;}
    }
}
.nft-itm {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid teal;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
    width: 175px;
    
    &.flash {filter: brightness(10);}
    & > * {margin: 0;}
    & > h1 {font-size: 42px;}
    &.small {
        & > .bonus {font-size: 14px;}
        & > h3 {font-size: 20px;}
    }
    & .bonus {
        font-size: 16px;
        color: gold;
        text-shadow: 0 0 10px goldenrod;
    }
    & p {text-align: center; font-size: 10px;}
    & button {font-size: 16px;}
}
