.fculite-paywall-container {
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: #fff;
    border: 1px solid #eaeaea;
    min-height: 180px;
}

.fculite-blurred-bg {
    padding: 2rem;
    filter: blur(8px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.fculite-overlay-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}

.fculite-icon-wrapper {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.fculite-icon {
    font-size: 28px;
}

.fculite-overlay-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.fculite-overlay-box p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
}

.fculite-paypal-btn {
    display: inline-block;
    background: #ffc439;
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    margin-bottom: 12px;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #e1a317;
}

.fculite-paypal-btn:hover {
    background: #f4b616;
    transform: translateY(-2px);
    color: #000 !important;
}

.fculite-paid-btn {
    display: inline-block;
    background: #2d3748;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.fculite-paid-btn:hover {
    background: #1a202c;
}

.fculite-unlocked-content {
    padding: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
