body {
    font-family: Arial, sans-serif;
    background-color: #cecece;
}

.jogo {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 400px;
    width: 720px;
    background-color: #808080;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.torre {
    position: relative;
    cursor: pointer;
    background-color: #808080; 
}

.torre:hover {
    background-color: #a0a0a0; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); 
}


.torre.selecionada {
    background-color: #acacac;
}
.torre::after {
    content: " ";
    display: block;
    position: absolute;
    width: 15px;
    height: 200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgb(0, 0, 0),rgb(26, 26, 26));
    border-radius: 5px 5px 0 0;
}
.disco {
    position: absolute;
    background: linear-gradient(0deg, rgb(0, 43, 14),rgb(0, 207, 28));
    width: 176px;
    height: 35px;
    border-radius: 15px;
    transition: left .1s, bottom .1s .1s;
    pointer-events: none;
}
.t1 {
    left: 30px;
}
.t2 {
    left: 270px;
}
.t3 {
    left: 510px;    
}

.d1{width: 70px; margin-left:  55px;}
.d2{width: 100px; margin-left: 40px;}
.d3{width: 120px; margin-left: 30px;}
.d4{width: 137px; margin-left: 23px;}
.d5{width: 163px; margin-left: 10px;}

.p1{ bottom: 0px;}
.p2{ bottom: 35px}
.p3{ bottom: 70px}
.p4{ bottom: 105px}
.p5{ bottom: 140px}
.p0{ bottom: 330px}

button{
    width: 100px;
    height: 90px;
    cursor: pointer;
}