@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lilita One", sans-serif;
}

body {
    background: rgb(175, 0, 255);
    background: radial-gradient(circle, rgb(175, 0, 255) 0%, rgb(89, 9, 230) 80%);
    min-height: 100vh;
}

.loader-container {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.loader-container img {
    padding: 3rem 0 1rem;
    width: 300px;
    margin: auto;
}

.slot-machine {
    max-width: 400px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.slot-machine>img {
    display: block;
    position: relative;
    right: -20px;
}

.slotwrapper {
    position: absolute;
    overflow: hidden;
    display: flex;
    height: 200px;
    width: 93%;
    bottom: 9px;
    padding: 0 19px;
    margin-left: 22px;
    background: #fff;
    gap: 17px;
}

.slotwrapper ul {
    padding: 10px;
    margin: 0;
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    padding-top: 30px;
}

.slotwrapper ul li img {
    vertical-align: top;
}

.slotwrapper>ul>li {
    background: #fff;
    font-size: 0.5em;
}

.slot-machine-btn {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translate(0, -50%);
    background: transparent;
    border: none;
    width: 80px;
    margin-top: 70px;
    transition: 0.4s all ease-in-out;
}

.slot-machine-btn.clicked {
    transform: translate(0, -50%) rotateX(190deg);
}

button#btn-example1:hover>img {
    filter: drop-shadow(2px 4px 6px yellow);
}

button#btn-example1>img {
    transition: 0.4s all ease-in-out;
    user-select: none;
}

:not(button) img {
    pointer-events: none;
}


#btn-slot:hover {
    filter: drop-shadow(0 0 0.75rem yellow);
}

#btn-slot {
    animation: glow 2s;
    transition: .1s;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 1rem white);
    }

    25% {
        filter: drop-shadow(0 0 1rem yellow);
    }

    50% {
        filter: drop-shadow(0 0 1rem white);
    }

    75% {
        filter: drop-shadow(0 0 1rem yellow);
    }

    100% {
        filter: drop-shadow(0 0 1rem white);
    }
}

.comments {
    background: rgb(150, 3, 248);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 5px solid rgba(255, 255, 255, 0.18);
    padding: 1rem;
    max-width: 400px;
    margin: 3rem auto;
}

.comments * {
    color: white;
    font-weight: bold;
}


.comment {
    padding: 9px 0;
    display: flex;
    opacity: 1;
    transform: translateY(0);
    background: 0 0;
    transition: transform .4s ease, opacity .4s ease, background-color .4s ease;
    transition: transform .4s ease, opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease
}

.comment.animate {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    opacity: 0
}

.comment__photo {
    width: 40px;
    height: 40px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px
}

.comment__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.comment__name,
.comment__text {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px
}

.comment__name {
    font-weight: 700;
    color: #00c3ff;
}

.comment__text {
    color: #fbf5eb
}

.comment__date {
    position: relative;
    font-size: 11px;
    line-height: 15px;
    min-height: 15px
}

.comments__title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 22px
}

.comment img {
    height: auto;
}

.comment.hidden {
    display: none;
}


@media (max-width:590px) {
    .slot-machine {
        transform: scale(.81);
        left: -30px;
    }
}




.container {
    max-width: 500px;
    margin: auto;
    padding: 2rem 1rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo p {
    font-size: 2em;
}

.logo .playandwin_text {
    font-size: 4em;
}

.logo .playandwin_text span {
    color: #ffef8b;
    text-shadow: 2px 2px 0 #6f6526;
}

.logo img {
    width: 200px;
    margin: auto;
}


.steps {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgb(175, 65, 244);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 5px solid rgba(255, 255, 255, 0.18);
    min-height: 50vh;
    justify-content: center;
}

.steps input {
    padding: 15px;
    border-radius: 5px;
    border: 5px solid #fff;
    width: 100%;
    font-size: 1.5rem;
    outline: none;
    transition: .4s all;
}

.steps input:focus {
    border-color: rgb(9, 233, 118);
}


.steps h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-align: center;
    margin-bottom: 5px;
}

@media (max-width:600px) {
    .steps h2 {
        font-size: 1.5rem;
    }
}

.step {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.platform {
    background-color: #f2f6fa;
    padding: 20px;
    border-radius: 5px;
    display: grid;
    justify-items: center;
    cursor: pointer;
    transition: .4s all;
}

.platform:hover {
    background-color: rgb(212, 255, 225)
}

.platform.active {
    background-color: #84e03d;
}

.platform img {
    width: 30px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.card {
    cursor: pointer;
    transition: .4s all;
    padding: 5px;
    border-radius: 20px;
}

.card:hover {
    background-color: #62cc12
}

@keyframes pre-card {

    0%,
    100% {
        background-color: #62cc12
    }

    50% {
        background-color: transparent;
    }
}

.hidden {
    display: none;
}

.step3 input {
    margin-bottom: 1rem;
}

.cta-btn {
    padding: 20px;
    width: 100%;
    background: #00abff;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 5px 0 #18506d;
    border: none;
    transition: .4s all;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
}

.cta-btn:hover {
    box-shadow: none;
}



.msg {
    font-size: 1.7rem;
    text-transform: capitalize;
    color: white;
    text-shadow: 0 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    display: none;
    text-align: center;
}

.success {
    color: rgb(9, 233, 118);
}

.fail {
    color: rgb(255, 105, 105);
}

.verify {
    padding: 20px;
    font-size: 2rem;
    background: rgb(9, 233, 118);
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 0px #2fa758;
    color: #fff;
    transition: .3s all;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
}

.verify:hover {
    box-shadow: none;
}


.failed_validation {
    animation: failed-shaking .3s;
}

.step4 {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

@keyframes failed-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(5px)
    }

    50% {
        transform: translateX(-5px)
    }

    75% {
        transform: translateX(5px)
    }

    100% {
        transform: translateX(0)
    }
}

.win_packs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.win_packs img {
    width: 115px;
}