/* Premium Content Lock & Restricted Gate Styles */

.pro-gate-wrapper {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.pro-gate-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.14) 0%, rgba(220, 53, 69, 0.04) 50%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.pro-gate-card {
    position: relative;
    z-index: 1;
    max-width: 680px;
    width: 100%;
    background: var(--bg-card, #1c1c1c);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color, #353535);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(220, 53, 69, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-gate-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem auto;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(220, 53, 69, 0.25);
    animation: pulse-glow-red 3s infinite ease-in-out;
}

.pro-gate-icon-box svg {
    width: 40px;
    height: 40px;
    color: var(--accent, #dc3545);
}

@keyframes pulse-glow-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(220, 53, 69, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(220, 53, 69, 0.45);
    }
}

.pro-gate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 50px;
    color: var(--accent, #dc3545);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pro-gate-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary, #ffffff);
}

.pro-gate-subtitle {
    color: var(--text-secondary, #a0a0a0);
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

@media (max-width: 580px) {
    .pro-features-grid {
        grid-template-columns: 1fr;
    }
    .pro-gate-card {
        padding: 2.5rem 1.5rem;
    }
    .pro-gate-title {
        font-size: 1.75rem;
    }
}

.pro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated, #212121);
    border: 1px solid var(--border-color, #353535);
    border-radius: 12px;
}

.pro-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(220, 53, 69, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent, #dc3545);
}

.pro-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    line-height: 1.4;
}

.pro-feature-desc {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary, #a0a0a0);
    margin-top: 0.15rem;
}

/* Actions */
.pro-actions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-upgrade-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 380px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--button-bg, #dc3545);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-upgrade-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 53, 69, 0.45);
    background: var(--accent-hover, #b22222);
    color: #ffffff;
}

.btn-upgrade-pro svg {
    transition: transform 0.2s ease;
}

.btn-upgrade-pro:hover svg {
    transform: translateX(4px);
}

.pro-secondary-link {
    color: var(--text-secondary, #a0a0a0);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.pro-secondary-link:hover {
    color: var(--accent, #dc3545);
}

/* Trust Footer */
.pro-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-faint, #272727);
    color: var(--text-muted, #768390);
    font-size: 0.825rem;
    font-weight: 500;
}

.pro-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
