/* Gaslighting Reality Checker CSS */

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

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

.app-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    width: 100%;
}

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

.app-subtitle {
    font-weight: normal;
}

.app-description {
    line-height: 1.6;
}

.app-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

label {
    color: #444;
}

textarea {
    min-height: 150px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.text-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.text-input::placeholder {
    color: #999;
    font-style: italic;
}

.analyze-btn {
    background: linear-gradient(135deg, #ea8c66, #b84750);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 12, 50, 4);
}

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

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

.result-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    display: none;
}

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

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

.result-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 1rem;
}

.result-text {
    line-height: 1.6;
    color: #555;
}

.loading {
    text-align: center;
    color: #667eea;
    font-style: italic;
}

.disclaimer {
    background: rgb(53 116 175 / 46%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: rgb(237, 235, 233);
}