/* =============================================
   SOCIAL LOCKER — slide-up bottom sheet
   ============================================= */

#rs-locker-backdrop {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(7, 9, 15, 0.80);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#rs-locker-backdrop.rs-visible {
    opacity: 1;
    pointer-events: all;
}

#rs-locker-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8001;
    background: #0e1118;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px 24px 0 0;
    padding: 36px 28px 48px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

#rs-locker-sheet.rs-visible {
    transform: translateY(0);
}

#rs-locker-sheet::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    margin: 0 auto 28px;
}

#rs-locker-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

#rs-locker-sheet .rs-locker-icon {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 40px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e63946;
    margin-bottom: 18px;
}

#rs-locker-sheet .rs-locker-icon::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e63946;
    animation: rs-pulse 1.4s ease infinite;
}

@keyframes rs-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

#rs-locker-inner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #f0f2f7;
    margin-bottom: 10px;
    line-height: 1.1;
}

#rs-locker-inner p {
    font-size: 0.825rem;
    color: #d2d6e1;
    line-height: 1.6;
    margin-bottom: 28px;
}

#rs-locker-tweet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}

#rs-locker-tweet-btn:hover {
    background: #111;
    transform: translateY(-2px);
}

#rs-locker-tweet-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

#rs-locker-inner .rs-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #8992ab;
    font-size: 0.85rem;
}

#rs-locker-inner .rs-divider::before,
#rs-locker-inner .rs-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

#rs-locker-feedback {
    font-size: 0.82rem;
    color: #2cb67d;
    min-height: 20px;
    margin-bottom: 12px;
}

#rs-locker-confirm-btn {
    display: none;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

#rs-locker-confirm-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#rs-locker-inner .rs-fine-print {
    font-size: 0.90rem;
    color: #cbcdd6;
    margin-top: 16px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #rs-locker-sheet {
        left: 50%;
        right: auto;
        width: 560px;
        transform: translateX(-50%) translateY(100%);
        border-radius: 24px 24px 0 0;
    }

    #rs-locker-sheet.rs-visible {
        transform: translateX(-50%) translateY(0);
    }
}