/* attention-seeking behavior audit css */

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

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

.app-container {
    backdrop-filter: blur(10px);
    padding: 0;
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b, #f3bc43);
}
/*
.app-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: stripe-move 20s linear infinite;
}

@keyframes stripe-move {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}
*/
.app-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.app-content {
    /*background: #f8f9fa;
    //background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    //background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);*/
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(15px);
}

label {
    color: #2c3e50;
}

textarea {
    border: 3px solid #e9ecef;
}

.text-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

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

button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.audit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.audit-button:active {
    transform: translateY(0);
}

.results-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.results-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

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

.score-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.score-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.score-label {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.verdict {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

.analysis {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}