/* ============================================================
   BLOCK DROP
============================================================ */

.block-drop-wrapper {
    width: 100%;
    max-width: 620px;

    padding: 20px;
}

.block-drop-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
}

.block-drop-main {
    flex-shrink: 0;
}

#block-drop-canvas {
    display: block;

    width: 300px;
    max-width: 100%;
    height: auto;

    border: 1px solid #4a7889;
    border-radius: 5px;

    background: #0e2027;

    box-shadow:
        0 0 0 1px rgba(87,210,255,.05),
        0 12px 28px rgba(0,0,0,.24),
        0 0 22px rgba(68,184,220,.07);

    image-rendering: pixelated;
}

.block-drop-sidebar {
    width: 150px;
}

.block-drop-stat {
    margin-bottom: 8px;
    padding: 9px 11px;

    border: 1px solid #3e5964;
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            #17333e,
            #10242c
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
}

.block-drop-stat span,
.block-drop-next > span {
    display: block;

    margin-bottom: 3px;

    color: #9fb5be;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.block-drop-stat strong {
    color: #ffffff;

    font-size: 18px;
}

.block-drop-next {
    margin: 12px 0;
}

#block-drop-next {
    display: block;

    width: 120px;
    height: 120px;

    margin-top: 6px;

    border: 1px solid #3e5964;
    border-radius: 4px;

    background: #132a33;
}

.block-drop-start {
    width: 100%;

    margin-top: 4px;
}

.block-drop-status {
    min-height: 34px;

    margin-top: 10px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;

    text-align: center;
}

.block-drop-controls {
    margin-top: 15px;

    color: #aec1c8;

    font-size: 10px;

    text-align: center;
}

.block-drop-mobile-controls {
    display: none;

    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 15px;
}

.block-drop-mobile-controls button {
    width: 48px;
    height: 42px;

    border: 1px solid #52717c;
    border-radius: 4px;

    background: #17343f;
    color: #ffffff;

    cursor: pointer;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 700px) {

    .block-drop-layout {
        align-items: center;
        flex-direction: column;
    }

    .block-drop-sidebar {
        width: 100%;
        max-width: 300px;
    }

    .block-drop-mobile-controls {
        display: flex;
    }

}

/* ============================================================
   MUSIC
============================================================ */

.block-drop-music-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 36px;

    margin: 0 0 12px auto;
    padding: 7px 11px;

    border: 1px solid #466a78;
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            #173843,
            #10262f
        );

    color: #dff8ff;

    font: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.block-drop-music-toggle:hover {
    background:
        linear-gradient(
            180deg,
            #1c4552,
            #14303a
        );
}

.block-drop-music-toggle:focus-visible {
    outline: 2px solid #72d7f3;
    outline-offset: 2px;
}
