/* =========================================================================
   LEVENY — HOMEPAGE TUTORIAL (single file, homepage only)
   Shows 4 slides: Genres dropdown, Request tab, a preview of the Request
   form, and a preview of the Suggestion link — so a first-time visitor
   learns about the Request page without ever leaving the homepage.
   ========================================================================= */

#tut-scrim {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#tut-scrim.open {
    opacity: 1;
    pointer-events: all;
}

.tut-card {
    width: 400px;
    max-width: 90vw;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 168, 255, 0.25), 0 30px 70px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: scale(0.96) translateY(8px);
    transition: transform 0.25s ease;
    color: white;
}

#tut-scrim.open .tut-card {
    transform: scale(1) translateY(0);
}

.tut-art {
    position: relative;
    height: 220px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tut-art svg {
    width: 100%;
    height: 100%;
}

.tut-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.tut-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tut-body {
    padding: 24px 26px 22px;
}

.tut-step-label {
    font-size: 11px;
    font-weight: 700;
    color: #00A8FF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.tut-title {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
}

.tut-text {
    font-size: 14.5px;
    color: #B8B8B8;
    line-height: 1.55;
    margin: 0 0 20px;
    font-family: Rockwell, 'sans-serif';
}

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

.tut-dots {
    display: flex;
    gap: 6px;
}

.tut-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}

.tut-dot.active {
    background: #00A8FF;
    width: 18px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 168, 255, 0.7);
}

.tut-btns {
    display: flex;
    gap: 10px;
}

.tut-btn {
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    /* font-family: Rockwell, 'sans-serif'; */
    transition: all 0.2s;
}

.tut-btn.primary {
    background: #00A8FF;
    color: #0D0D0D;
    box-shadow: 0 0 12px 2px rgba(0, 168, 255, 0.4);
}

.tut-btn.primary:hover {
    box-shadow: 0 0 18px 4px rgba(0, 168, 255, 0.6);
}

.tut-btn.ghost {
    background: transparent;
    color: #888;
}

.tut-btn.ghost:hover {
    color: #fff;
}

.tut-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

/* Floating "?" button so anyone can replay the tour any time */
#tut-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #141414;
    border: 1px solid rgba(0, 168, 255, 0.4);
    color: #00A8FF;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(0, 168, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    transform: scale(1.08);   
}

#tut-help-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 22px rgba(0, 168, 255, 0.55);
}

@media screen and (max-width: 768px) {
    #tut-help-btn {
        bottom: 90px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .tut-card {
        width: 92vw;
    }
    .tut-title {
        font-size: 22px;
    }
}
