/* Victim Complex Calculator CSS */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, #ff6b6b 0%, #fcb69f 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
}

.app-content {
    padding: 2px 0;
}

.app-header {
    padding: 10px;
}

.app-title {
    color: #2c3e50;
    font-weight: 700;
}

.app-subtitle {
    color: #c11705;
    font-style: italic;
    font-weight: 500;
}

.app-description {
    color: #34495e;
    line-height: 1.7;
}

.input-label {
    color: #2c3e50;
}

textarea {
    border: 3px solid #e67e22;
    background: rgba(255, 255, 255, 0.9);
}

.complaint-input:focus {
    outline: none;
    border-color: #d35400;
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.complaint-input::placeholder {
    color: #7f8c8d;
    font-style: italic;
}

.analyze-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.analyze-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.analyze-btn:active {
    transform: translateY(-1px);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Results section */
.results-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid #e67e22;
    display: none;
}

.results-section.show {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.result-content {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

/* Mobile styles (480px and below) */
@media screen and (max-width: 480px) {
    .analyze-btn {
        font-size: 15px;
    }
}
@media screen and (max-width: 360px) {
    .analyze-btn {
        font-size: 14px;
    }
}