/* Global Styles */
body {
    background: url('/imgs/maze-bg.jpg') no-repeat center center / cover;
    min-height: 100vh;
    font-family: 'Georgia', serif;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Common Container Styles */
.container-base {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

/* Button Styles */
.btn-gradient-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.6);
    color: white;
}

.btn-gradient-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gradient-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
}

/* Progress Bar */
.progress {
    height: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.progress-bar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Feedback Boxes */
.feedback-box {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    animation: slideIn 0.3s ease-out;
}

.feedback-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.feedback-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
}

/* Clue Box */
.clue-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border: 3px solid #ffc107;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.clue-title {
    color: #856404;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.clue-text {
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hint Box */
.hint-box {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 3px solid #17a2b8;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hint-title {
    color: #0c5460;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hint-text {
    color: #0c5460;
    font-size: 1rem;
    line-height: 1.6;
}
