#memory-game-container{height:80vh;margin:0;display:flex;justify-content:center;align-items:center;font-family:sans-serif;}#memory-game{text-align:center;font-size:1.5em;}#memory-game h1{margin-left:20%;font-size:1.5em;font-family:cursive;}#game-stats{margin:32px;float:left;}.stats{font-weight:bold;}#moves{margin-top:10px;}#restart-btn{padding:10px 20px;border-radius:5px;border:0;background-color:black;color:#ffff;cursor:pointer;font-size:1.1em;font-weight:bold;}#game-board{justify-content:center;display:grid;grid-template-columns:repeat(4,100px);grid-gap:10px;}.card{height:100px;width:100px;border-radius:10px;justify-content:center;align-items:center;border:2px solid #1e1e1e;background:linear-gradient(#b86cff 30%,#dc9af3);display:flex;cursor:pointer;font-size:2em;transition:transform 0.2s;}.hidden{display:none;}.matched,.flipped{cursor:default;transform:rotateY(180deg);}.matched::after .fliped::after{transform:rotateY(0deg);}#win-board{height:350px;width:530px;top:50%;left:50%;padding:20px;border-radius:10px;font-size:2em;text-align:center;position:fixed;background-color:#ba63fd;transform:translate(-50%,-50%);box-shadow:0 4px 6px rgba(0,0,0,0.1);}#play-again-btn{background-color:black;color:#ffff;padding:10px 20px;border-radius:5px;border:0;cursor:pointer;font-size:1.1em;font-weight:bold;}#snake-game-container{font-family:sans-serif;color:white;text-align:center;}#snake-game-container h1{font-size:2.4em;font-family:cursive;}#game-container{margin-top:20px;justify-content:center;display:flex;}#game-canvas{border:2px solid rgb(164,12,252);background-color:#000000;}#game-stats{margin-left:20px;text-align:center;}.stats-section{margin-bottom:30px;margin-left:30px;}#modal,#game-overlay{display:none;}#game-overlay{height:100%;width:100%;top:0;left:0;background-color:rgba(0,0,0,0.5);position:fixed;z-index:100;}#modal{padding:20px;top:50%;left:50%;text-align:center;position:fixed;background-color:rgb(10,10,10);border:2px solid rgb(64,64,64);transform:translate(-50%,-50%);z-index:101;}#modal-btn{height:30px;width:128px;margin-top:10px;border-radius:5px;border-color:#8311ce;background:linear-gradient(#7303c0,#ae73e9);color:white;}#modal-btn:hover{background:linear-gradient(#9f2cec,#c58bff);}