/* headline end */
.game6content{
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 35rem;
    aspect-ratio: 35 / 16.9; /* Maintain the 35:16.9 ratio */
    overflow: hidden;
    background-color: white;
}
.pipe-dv {
    position: absolute;
    top: -5%;
    width: 100%;
    padding: 0 1%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pipe-dv img {
    transform: rotateZ(180deg);
    width: 8%;
    height: auto;
    z-index: 100;
}
.pipe-dv img:first-of-type {
    transform: rotateX(180deg);
    width: 8%;
    height: auto;
    z-index: 100;
}
.drop-item-dv {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 4%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.drop-item {
    height: 5%;
    aspect-ratio: 1;
    background-color: rgb(0, 0, 0);
}
.btn-dv {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    z-index: 102;
}
.pipe-btn {
    border-radius: 10%;
    height: 90%;
    aspect-ratio: 1;
    color: rgb(0, 0, 0);
    aspect-ratio: 1;
    padding: 0 2%;
    background-color: rgb(255, 186, 186);
}
.pipe-btn:hover {
    opacity: 0.7;
}
.pipe-btn:active {
    transform: scale(1.05);
}
.obstacle-dv {
    position: absolute;
    width: 100%;
    height: 30%;
    top: 35.5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.obstacle-left-dv,
.obstacle-right-dv {
    z-index: 100;
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    gap: 25%;
}
.obstacle-left-dv {
    height: 100%;
    transform: rotate(16.5deg);
}
.obstacle-right-dv { 
    height: 100%;
    transform: rotate(-16.5deg);
}
.obstacle-left,
.obstacle-right {
    height: 40%;
    width: 2%;
    background-color: red;
    position: relative;  
}
/*  */
.mountain-dv {
    position: absolute;
    bottom: 20%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 29%;
}
.mountain {
    position: relative;
    bottom: 0;
    width: 47.5%; 
    height: 100%;
    background-color: #8f8f8f;
}
#mountain1 {
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

#mountain2 {
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
/*  */
.flat-mountain-dv {
    position: absolute;
    width: 100%;
    bottom:0;
    height: 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
} 
.flat-mountain {
    background-color: #454545;
    width: 47.5%; 
    height: 100%;
    z-index: 99;
    border-top: 1px solid black;
} 
.gap-mountain {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.mountain-dv {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.droping-item {
    position: absolute;
    height: 5%;
    aspect-ratio: 1;
    background: black;
}
.bus-stop {
    z-index: 1;
    position: absolute;
    width: 11%;
    right: 0;
    bottom: 20%;
    aspect-ratio: 1;
}
.counter {
    position: absolute;
    top: 5%;
    background-color: #000000;
    padding: 1%;
    display: flex;
    color: white;
    border-radius: 50%;
}
.arrow2-dv {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 15%; 
    height: 15%;
    border: 0.07% solid black;
    background-color: #ffffff;
    cursor: pointer;
    position: absolute;
    bottom: 2.3%;
    left: 0.5%;
    padding: 0.5%;
    z-index: 100;
}
.arrow2 {
    z-index: 2;
    width: 45%;
    height: auto;
    border-radius: 3%;
    pointer-events: none;
}
.arrow2-dv:active {
    cursor: grab;
}
#arrow2-dv, #arrow2 {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.loading-indicator {
    z-index: 1;
    height: 100%;
    width: 0%;
    background-color: #00ff00;
    position: absolute;
    left: 0;
    top: 0;
}
#bus-container {
    position: absolute;
    height: 10%;
    width: 100%;
    bottom: 20%;
}
.buss {
    filter: opacity(0.8);
    width: 30%;
    height: auto;
    z-index: 99; 
}
