.tutorial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
    transition: 0.4s;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tutorial.hidden {
    opacity: 0;
    pointer-events: none;
}

.tip {
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.5s ease-out forwards;
}

.tip:nth-child(1) {
    animation-delay: 0s;
}

.tip:nth-child(2) {
    animation-delay: 1s;
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip h2 {
    color: #777;
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
}

.tip img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    filter: invert(1) brightness(0.7);
    width: 300px;
}

@media screen and (min-width: 900px) {
    .tutorial {
        display: none;
    }
}
