/* ========================================== */
/* NISHACHARS SIMPLE INTERFACE */
/* Dark Noir - Minimal Effects - Clean Design */
/* ========================================== */

/* Main Interface Container */
#nishachars-interface {
    opacity: 0;
    transition: opacity 0.5s;
    background: #0a0a0a;
    min-height: 100vh;
    color: #e0e0e0;
}

body.nishachars-mode {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Courier Prime', monospace;
}

/* Simple Header */
.simple-header {
    text-align: center;
    padding: 40px 20px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.logo-simple {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ff3333;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.tagline-simple {
    color: #909090;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Main Content */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Welcome Section - Centered */
.welcome-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid #2a2a2a;
}

.welcome-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #e0e0e0;
    letter-spacing: 0.15em;
    margin: 0;
}

#welcome-user-name {
    color: #ff3333;
}

/* Form Section */
.form-section {
    background: #121212;
    border: 1px solid #2a2a2a;
    padding: 40px;
    margin-bottom: 50px;
}

.form-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ff3333;
    letter-spacing: 0.15em;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

/* Simple Form */
.simple-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field.half {
    flex: 1;
}

.form-field label {
    color: #909090;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
    padding: 12px 15px;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff3333;
}

.form-field textarea {
    resize: vertical;
}

/* Checkbox Field */
.checkbox-field {
    flex: 1;
}

.checkbox-field label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #909090;
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Price Box */
.price-box {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#estimated-time,
#price-estimate {
    color: #909090;
    font-size: 0.95rem;
}

.time-value,
.price-value {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Submit Button */
.submit-button {
    background: #ff3333;
    color: #0a0a0a;
    border: none;
    padding: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #e62929;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #505050;
    cursor: not-allowed;
}

/* Protocol Section */
.protocol-section {
    background: #121212;
    border: 1px solid #2a2a2a;
    padding: 40px;
    margin-bottom: 50px;
}

.protocol-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffaa00;
    letter-spacing: 0.15em;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.protocol-item {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
}

.protocol-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.protocol-text {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Emergency Contact */
.emergency-contact {
    background: #1a0000;
    border: 1px solid #ff3333;
    padding: 25px;
    text-align: center;
}

.emergency-label {
    color: #ff3333;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.emergency-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ff3333;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.emergency-note {
    color: #909090;
    font-size: 0.85rem;
}

/* Simple Footer */
.simple-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #2a2a2a;
    color: #505050;
    font-size: 0.85rem;
}

.simple-footer p {
    margin: 8px 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #121212;
    border: 2px solid #ff3333;
    padding: 40px;
    max-width: 500px;
    width: 90%;
}

.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #00ff88;
    margin: 0 0 25px 0;
    letter-spacing: 0.15em;
}

.modal-info {
    margin-bottom: 25px;
}

.modal-info p {
    margin: 12px 0;
    color: #e0e0e0;
}

.modal-info strong {
    color: #909090;
}

.modal-info span {
    color: #00ff88;
}

.modal-warning {
    background: #1a0000;
    border: 1px solid #ff3333;
    padding: 15px;
    margin-bottom: 25px;
    color: #ff3333;
    font-size: 0.9rem;
}

.modal-button {
    width: 100%;
    background: #ff3333;
    color: #0a0a0a;
    border: none;
    padding: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-button:hover {
    background: #e62929;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .price-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .protocol-grid {
        grid-template-columns: 1fr;
    }
}
