   
        .instructions {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .difficulty-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .difficulty-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .difficulty-btn.active {
            background: rgba(255, 255, 255, 0.4);
            font-weight: bold;
        }
        
        .game-container {
            position: relative;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        canvas {
            background-color: #f8f9fa;
            display: block;
            margin: auto;
        }
        
        .controls {
            text-align: center;
        }

        .controls select{
            height: 1.5rem;
            line-height: 1.5rem;
            background-color: #2196F3;
            color: #fff;
            border: 0;
            width: 5rem;
            border-radius: 4px;
            text-align: center;
            padding: 0 0.2rem;
        }
        
        .controls button {
            border: none;
            color: #fff;
            height: 1.5rem;
            line-height: 1.5rem;
            padding: 0 1rem;
            text-align: center;
            font-size: 0.7rem;
            cursor: pointer;
            border-radius: 4px;
            background: #2ecc71;
        }

        #showAnswer{
            background: #e74c3c;
        }

        
      
        
        .status-container {
            padding: 15px 30px;
            border-radius: 50px;
            margin: 10px 0;
        }
        
        .status {
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
        }
        
       
        
        .win-message {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10;
            border-radius: 10px;
            animation: fadeIn 0.5s ease;
        }
        
        .win-text {
            font-size: 3rem;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }
        
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #f00;
            border-radius: 50%;
            animation: confettiFall 5s linear forwards;
        }