/**
 * Link Checkout Page Styles
 * Extracted from inline <style> tags for better performance and maintainability
 * NO BUILD REQUIRED - Loads directly in browser
 */

/* Body gradient background */
body.link-checkout-page {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Preview container - NO CSS blur for security (blur is pre-generated in thumbnails) */
.preview-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.preview-media {
    /* No transform - show full thumbnail */
}

/* Floating lock icon animation */
.lock-icon-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Price display with glow effect */
.price-glow {
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Payment form slide animation */
.payment-form {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-form.active {
    max-height: 600px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* Modern input effects */
.input-modern {
    transition: all 0.3s;
}

.input-modern:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(139, 92, 246, 0.3);
}

/* Stripe card element styling */
#cardElement {
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

#cardElement.StripeElement--focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Responsive adjustments */
@media (min-width: 640px) {
    #cardElement {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .price-glow {
        font-size: 2.5rem;
    }
}
