/**
 * Hybrid Paywall Styles
 * Three-tier content access (Public, Members, Paid)
 */

/* Paywall Overlay */
.cc-paywall-overlay {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(246, 248, 250, 0) 0%, rgba(246, 248, 250, 1) 30%);
    border-radius: 8px;
    margin: 2rem 0;
}

.cc-paywall-content {
    max-width: 500px;
    margin: 0 auto;
}

.cc-paywall-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cc-paywall-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cc-paywall-message {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* CTA Button */
.cc-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cc-button-primary {
    background: #0674bb;
    color: white;
}

.cc-button-primary:hover {
    background: #055a94;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 116, 187, 0.25);
}

.cc-button-primary:active {
    transform: translateY(0);
}

/* Premium Badge */
.premium-content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0674bb 0%, #055a94 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.premium-content-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Content Lock Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-paywall-overlay {
    animation: fadeIn 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .cc-paywall-overlay {
        padding: 3rem 1.5rem;
    }

    .cc-paywall-title {
        font-size: 1.5rem;
    }

    .cc-paywall-message {
        font-size: 1rem;
    }

    .cc-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}
