/* Survey Styles */

.question-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.question-text {
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.answer-option {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-option:hover {
    background-color: #e3f2fd;
    border-color: #3498db;
}

.answer-option.selected {
    background-color: #d4edda;
    border-color: #28a745;
}

.answer-option input {
    margin-right: 10px;
}

.weights-display {
    margin-top: 10px;
    padding: 10px;
    background-color: #e8f4f8;
    border-radius: 4px;
    font-size: 14px;
}

.weight-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.weight-label {
    font-weight: bold;
    color: #2c3e50;
}

.weight-value {
    color: #3498db;
}

#results-container {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.result-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.result-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.result-item p {
    color: #555;
    line-height: 1.5;
}

#restart-btn {
    background-color: #27ae60;
    margin-top: 20px;
}

#restart-btn:hover {
    background-color: #219653;
}

/* Konami Code Message */
.konami-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-weight: bold;
    text-align: center;
    animation: fadeInOut 3s ease-in-out;
}

.konami-message.hidden {
    display: none;
}

@keyframes fadeInOut {
    0% { opacity: 0; top: 0; }
    20% { opacity: 1; top: 20px; }
    80% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 0; }
}