/* Chaos Level Assessment CSS */

body {
    font-family: 'Arial', sans-serif;
}

main {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.app-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 3px solid #ff6b6b;
}

.app-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.app-subtitle {
    color: #e74c3c;
}

.app-description {
    color: #282727;
    line-height: 1.8;
}

.app-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group label {
    color: #2c3e50;
}

.form-group textarea {
    background: #f8f9fa;
}

.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.assess-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.assess-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.assess-btn:active {
    transform: translateY(0);
}

/* Results section */
.results-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    display: none;
}

.chaos-level {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.chaos-description {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.survival-tips {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.survival-tips h3 {
    margin-bottom: 1rem;
    color: #ffeaa7;
}

.survival-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.survival-tips li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.survival-tips li:before {
    content: "🎯";
    position: absolute;
    left: 0;
}