/* Provider Lock Modal - MELLCN.GAMES STYLE */

.provider-lock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.provider-lock-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.provider-lock-popup {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: #1a1625;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    animation: popupAppear 0.3s ease 0.1s forwards;
}

@keyframes popupAppear {
    to {
        transform: scale(1);
    }
}

/* Кнопка закрытия */
.provider-lock-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.provider-lock-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.provider-lock-close svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.7);
}

.provider-lock-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* Логотип провайдера вверху - КОМПАКТНЫЙ */
.provider-lock-logo {
    width: 100%;
    padding: 24px 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(146, 86, 255, 0.1) 0%, transparent 100%);
}

.provider-lock-logo img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(146, 86, 255, 0.3));
}

/* Push Gaming logo - white filter like in providers button */
.provider-lock-logo img[src*="push-gaming"] {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(146, 86, 255, 0.3));
}

/* Текстовый логотип Jocker Games */
.provider-lock-logo-text {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff8aec 0%, #9256ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 12px rgba(146, 86, 255, 0.4));
}

/* Контент - КОМПАКТНЫЙ */
.provider-lock-info {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Заголовок - КОМПАКТНЫЙ */
.provider-lock-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* Описание - КОМПАКТНЫЙ */
.provider-lock-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.provider-lock-description strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

/* Кнопка */
.provider-lock-button {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #ff8aec 0%, #9256ff 100%);
    color: #0b0216;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(146, 86, 255, 0.4);
}

.provider-lock-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(146, 86, 255, 0.5);
}

.provider-lock-button:active {
    transform: translateY(0);
}

/* Адаптация для мобильных */
@media (max-width: 520px) {
    .provider-lock-overlay {
        padding: 12px;
    }
    
    .provider-lock-popup {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .provider-lock-logo {
        padding: 32px 20px 20px;
    }
    
    .provider-lock-logo img {
        width: 160px;
    }
    
    .provider-lock-info {
        padding: 16px;
        gap: 12px;
    }
    
    .provider-lock-title {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .provider-lock-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .provider-lock-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .provider-lock-close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
    }
    
    .provider-lock-close svg {
        width: 14px;
        height: 14px;
    }
}
