/**
 * NoScript Banner Styles - Website Dark Mode Design
 * CSP Strict Compliant - No inline styles
 */

.noscript-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.noscript-card {
    text-align: center;
    padding: 48px;
    max-width: 650px;
    background: rgba(17, 24, 39, 0.95);
    border-radius: 1rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.noscript-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

.noscript-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.noscript-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(0 0 24px rgba(239, 68, 68, 0.6));
    fill: #ef4444;
}

.noscript-title {
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #4c63d2 0%, #5a4fcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.noscript-message {
    margin: 0 0 32px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
    font-weight: 400;
}

.noscript-instructions {
    text-align: left;
    margin: 0;
    padding: 24px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.noscript-instructions h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #f3f4f6;
    background: linear-gradient(135deg, #4c63d2 0%, #5a4fcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noscript-instructions ol {
    margin: 0;
    padding-left: 24px;
    color: #9ca3af;
}

.noscript-instructions li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

.noscript-instructions li:last-child {
    margin-bottom: 0;
}

.noscript-instructions strong {
    color: #e5e7eb;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(76, 99, 210, 0.2) 0%, rgba(90, 79, 207, 0.2) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}
