/* Satana Button 666 — Public Styles */

.sb666-button {
    font-family: inherit;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

/* Animations */
@keyframes sb666-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.05); opacity: .9; }
}
@keyframes sb666-shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-4px); }
    40%       { transform: translateX(4px); }
    60%       { transform: translateX(-3px); }
    80%       { transform: translateX(3px); }
}
@keyframes sb666-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ==========================================
   ВСТРОЕННЫЙ POPUP — Satana Button 666
   ========================================== */

.sb666-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.sb666-popup-overlay.sb666-popup-visible {
    opacity: 1;
}

.sb666-popup-box {
    position: relative;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 36px 28px;
    box-sizing: border-box;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}
.sb666-popup-overlay.sb666-popup-visible .sb666-popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Кнопка закрытия */
.sb666-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
}
.sb666-popup-close:hover {
    transform: scale(1.2) rotate(90deg);
}

/* Заголовок и подзаголовок */
.sb666-popup-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding-right: 32px;
    line-height: 1.3;
}
.sb666-popup-sub {
    margin: 0 0 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Контент CPA */
.sb666-popup-content {
    font-size: 14px;
    line-height: 1.6;
}
.sb666-popup-content iframe {
    max-width: 100%;
    border: none;
}
.sb666-popup-content img {
    max-width: 100%;
    height: auto;
}

/* Адаптив */
@media (max-width: 600px) {
    .sb666-popup-box {
        padding: 24px 20px 20px;
    }
    .sb666-popup-title { font-size: 17px; }
}
