/* ===== Noscript Overlay ===== */
.noscript-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.noscript-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffb347;
    text-shadow: 0 0 20px #ff8c42;
}

.noscript-overlay p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.noscript-overlay p.soft {
    opacity: 0.7;
    font-style: italic;
}

.noscript-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 320px;
    max-width: 90%;
}

.noscript-form input,
.noscript-form select {
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,200,120,0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: all 0.3s;
}

.noscript-form input:focus,
.noscript-form select:focus {
    border-color: rgba(255,200,120,0.8);
    box-shadow: 0 0 15px rgba(255,180,100,0.3);
}

.noscript-form button {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ffd27f, #ff8c42);
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.noscript-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255,160,60,0.5);
}