/* MGO Paywall Block - Frontend Styles */

.mgo-paywall-marker {
    margin: 24px 0;
    padding: 0;
    position: relative;
    clear: both;
}

.mgo-paywall-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
    position: relative;
    overflow: hidden;
}

.mgo-paywall-notice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffc107;
}

.mgo-paywall-icon {
    font-size: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.mgo-paywall-text {
    color: #856404;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

/* Alternative Styling fÃ¼r Premium-Look */
.mgo-paywall-marker.premium-style .mgo-paywall-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid #5a67d8;
    color: white;
}

.mgo-paywall-marker.premium-style .mgo-paywall-notice::before {
    background: #4c51bf;
}

.mgo-paywall-marker.premium-style .mgo-paywall-text {
    color: white;
}

/* Dark Mode Support */
@media ( prefers-color-scheme: dark ) {
    .mgo-paywall-notice {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .mgo-paywall-text {
        color: #e2e8f0;
    }
    
    .mgo-paywall-notice::before {
        background: #718096;
    }
}

/* Responsive Design */
@media ( max-width: 768px ) {
    .mgo-paywall-marker {
        margin: 16px 0;
    }
    
    .mgo-paywall-notice {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .mgo-paywall-icon {
        font-size: 18px;
    }
    
    .mgo-paywall-text {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .mgo-paywall-marker {
        display: none;
    }
}

/* Accessibility */
.mgo-paywall-notice:focus-within {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

/* Animation fÃ¼r bessere UX */
.mgo-paywall-marker {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}