Error { that doesnt have matching }

I’ve looked through my script multiple times and can’t figure it out! Any help would be greatly appreciated!

choice (Eps4Outfit)
“Outfit 1.”{
@MIA previews outfit casual1
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA is admire
@pause for a beat
@MIA starts idle

    MIA (idle_arms_crossed)
(I love this look! I'll catch the eye of someone cute!)

choice
“Wear this!” {
@MIA changes into casual1
####REPLACE THIS WITH ONE OF YOUR OUTFITS####

gain casual1
#This will let you check if they made this choice later.
goto afterdg1

} “I’ll try something else.” {
@MIA unpreviews outfit casual1
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
goto dressinggame_1

}“Outfit 2.”{
@MIA previews outfit casual2
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA is admire
@pause for a beat

    MIA (idle_arms_crossed)
(This look let's me really feel like me!)

choice
“Wear this!” {
@MIA changes into casual2
####REPLACE THIS WITH ONE OF YOUR OUTFITS####

gain casual2
#This will let you check if they made this choice later.
goto afterdg1

}“I’ll try something else”{
@MIA unpreviews outfit casual2
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA starts idle_arms_crossed
goto dressinggame_1

}“Outfit 3.”{
@MIA previews outfit cat shorts
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA is admire
@pause for a beat

    MIA (idle_arms_crossed)
(This look let's me really feel like me!)

choice
“Wear this!” {
@MIA changes into cat shorts
####REPLACE THIS WITH ONE OF YOUR OUTFITS####

gain cat_shorts
#This will let you check if they made this choice later.
goto afterdg1

}“I’ll try something else”{
@MIA unpreviews outfit cat shorts
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA starts idle_arms_crossed
goto dressinggame_1

}“Outfit 4.”{
@MIA previews outfit red rocker
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA is admire
@pause for a beat

    MIA (idle_arms_crossed)
(This look let's me really feel like me!)

choice
“Wear this!” {
@MIA changes into red rocker
####REPLACE THIS WITH ONE OF YOUR OUTFITS####

gain red_rocker
#This will let you check if they made this choice later.
goto afterdg1

}“I’ll try something else”{
@MIA unpreviews outfit red rocker
####REPLACE THIS WITH ONE OF YOUR OUTFITS####
@MIA starts idle_arms_crossed
goto dressinggame_1

}
}“What I have on.” {

    MIA (primp_condescend)
(I already look great!)

goto afterdg1
}

label afterdg1

Add another }
At the end of the code:

}
}“What I have on.” {

MIA (primp_condescend)

(I already look great!)
goto afterdg1
}
}

label afterdg1

i got it! thank you!