﻿/* Noscript Fallback Styles */
.noscript-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
}

.noscript-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.noscript-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.noscript-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.noscript-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.noscript-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.noscript-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.noscript-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.1rem;
    color: #4a5568;
}

.noscript-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.noscript-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

    .noscript-link:hover {
        text-decoration: underline;
    }

.noscript-steps {
    text-align: left;
    margin: 30px auto;
    max-width: 400px;
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
}

    .noscript-steps ol {
        margin: 0;
        padding-left: 20px;
    }

    .noscript-steps li {
        margin-bottom: 10px;
        color: #2d3748;
        line-height: 1.6;
    }
