
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
       
   
        
        .content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .game-info {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .info-section {
            margin-bottom: 25px;
        }
        
        h2 {
            color: #2575fc;
            border-bottom: 2px solid #6a11cb;
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        h3 {
            color: #6a11cb;
            margin: 15px 0 10px;
            font-size: 1.3rem;
        }
        
        ul {
            list-style-type: none;
            padding-right: 20px;
        }
        
        li {
            margin-bottom: 8px;
            position: relative;
            padding-right: 25px;
        }
        
        li:before {
  
            color: #2575fc;
            font-weight: bold;
            position: absolute;
            right: 0;
            font-size: 1.2rem;
        }
        
        .game-container {
            flex: 1;
            min-width: 300px;
        }
        
        .locker-game {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }
        
        .lock-pic {
            display: block;
            margin: 0 auto 15px;
            width: 70px;
            height: 70px;
        }
        
        .game-desc {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1rem;
            color: #444;
            line-height: 1.5;
        }
        
        .controls {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        label {
            display: flex;
            flex-direction: column;
            font-weight: bold;
            color: #2575fc;
        }
        
        select, input {
            padding: 8px;
            border: 2px solid #6a11cb;
            border-radius: 6px;
            margin-top: 5px;
            text-align: center;
        }
        
       
        
        #revealBtn, #tryAgainBtn {
            background: linear-gradient(to right, #ff416c, #ff4b2b);
        }
        
     
        
        .timer-container {
            text-align: center;
            margin: 15px 0;
            font-size: 1.2rem;
            font-weight: bold;
            color: #2575fc;
        }
        
        #timer {
            font-size: 1.5rem;
            color: #ff416c;
        }
        
        .clues-container {
            margin: 20px 0;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #e9ecef;
            max-height: 300px;
            overflow-y: auto;
            order: 1;
        }
        
        .clue-item {
            margin: 10px 0;
            padding: 10px;
            border-bottom: 1px solid #e9ecef;
            background: white;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .clue-item:last-child {
            border-bottom: none;
        }
        
        .user-guess {
            background-color: #e9f7ff;
        }
        
        .secret-box {
            margin-top: 20px;
            font-weight: bold;
            text-align: center;
            padding: 15px;
            background: #e9f7ff;
            border-radius: 8px;
            border: 2px dashed #2575fc;
            font-size: 1.2rem;
            color: #2575fc;
            order: 3;
        }
        
        .input-section {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            order: 2;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .benefit-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #6a11cb;
            margin-bottom: 15px;
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: white;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            
            .controls {
                flex-direction: column;
                align-items: center;
            }
            
            label {
                width: 100%;
                max-width: 200px;
            }
            
            .input-section {
                flex-direction: column;
                align-items: center;
            }
        }
