/* Historical Two Truths and a Lie - Game Styles */

#httl-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#httl-game-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

#httl-game-header h2 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 28px;
}

#httl-score {
    font-size: 18px;
    color: #555;
}

#httl-score strong {
    color: #2980b9;
    font-size: 20px;
}

.httl-message {
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    color: #555;
}

#httl-topic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#httl-statements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.httl-statement {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.httl-statement:hover:not(:disabled) {
    border-color: #2980b9;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.httl-statement:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.httl-statement.httl-correct {
    border-color: #27ae60;
    background: #d4edda;
    animation: pulse-correct 0.5s ease;
}

.httl-statement.httl-incorrect {
    border-color: #e74c3c;
    background: #f8d7da;
    animation: shake 0.5s ease;
}

.httl-statement.httl-lie {
    border-color: #f39c12;
    background: #fff3cd;
    position: relative;
}

.httl-statement.httl-lie::after {
    content: "← This was the LIE";
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .httl-statement.httl-lie::after {
        position: static;
        display: block;
        margin-top: 10px;
        transform: none;
    }
}

#httl-feedback {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

#httl-feedback-result {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

#httl-feedback-result.correct {
    color: #27ae60;
}

#httl-feedback-result.incorrect {
    color: #e74c3c;
}

#httl-feedback-explanation {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.httl-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.httl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#httl-game-complete {
    text-align: center;
    padding: 40px 20px;
}

#httl-game-complete h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

#httl-game-complete p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

#httl-game-complete strong {
    color: #2980b9;
}

@keyframes pulse-correct {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #httl-game-container {
        padding: 15px;
    }
    
    #httl-game-header h2 {
        font-size: 24px;
    }
    
    #httl-topic {
        font-size: 18px;
        padding: 12px 20px;
    }
    
    .httl-statement {
        padding: 15px;
        font-size: 15px;
    }
}