/* Lise Games Shared Styles */

.lise-game-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lise-game-container:hover {
    transform: translateY(-5px);
}

.lise-game-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(79, 70, 229, 0.1);
    padding-bottom: 1.5rem;
}

.lise-game-header h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.lise-game-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.lise-progress {
    margin-bottom: 2rem;
}

.lise-progress-bar {
    height: 8px;
    background: #eef2ff;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.lise-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.4s ease;
}

.lise-game-area {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lise-option-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-main);
    text-align: left;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.lise-option-btn:hover {
    border-color: var(--primary);
    background: #f5f3ff;
    transform: translateX(5px);
}

.lise-option-btn.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.lise-results {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.lise-score-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-colored);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}