/* ---------- Check This sheet ---------- */

#checkThisSheet {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
}

#checkThisSheet.is-open {
    display: flex;
}

#checkThisSheet .sheet {
    width: min(560px, 100%);
    border-radius: 28px;
    background: rgba(8, 10, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#checkThisSheet .sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 14px;
}

#checkThisSheet .sheet-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

#checkThisSheet .sheet-close {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

#checkThisSheet .sheet-list {
    padding: 0 20px 20px;
    display: grid;
    gap: 12px;
}

#checkThisSheet .platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

#checkThisSheet .platform-name {
    color: #fff;
    font-weight: 700;
}

#checkThisSheet .platform-cta {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}