.puzzle-section {
    background: #ffffff;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.puzzle-container-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Left side thora bara */
    gap: 80px;
    align-items: center;
}

/* --- Left Side Styling --- */
.info-side {
    text-align: left;
}

.sale-badge {
    background: #000;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transform: rotate(-10deg);
    font-family: 'Space Grotesk', sans-serif;
}

.glaze-text { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.instruction-desc { font-size: 1.2rem; color: #555; margin-bottom: 30px; line-height: 1.6; }

.steps-list { list-style: none; padding: 0; }
.steps-list li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
    font-weight: 600; 
    color: #333;
}
.steps-list i { color: #0070f3; width: 20px; }

/* --- Right Side (Game) Styling --- */
.board-wrapper {
    position: relative;
    width: 350px; /* Fixed width for board */
    height: 350px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.puzzle-board {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    grid-template-rows: repeat(3, 110px);
    gap: 4px;
}

.tile {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

/* --- Overlays --- */
.game-overlay, .countdown-overlay, .win-display {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.start-game-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .puzzle-container-wrapper {
        grid-template-columns: 1fr; /* Stack one below another */
        text-align: center;
        gap: 50px;
    }
    
    .info-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .glaze-text { font-size: 2.5rem; }
}