/* Sayfayı ortalama ve arka plan rengi */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

/* Oyun Ekranı (Kutu) */
#game-container {
    position: relative;
    width: 400px;
    height: 500px;
    background-color: #70c5ce; /* Gök mavisi */
    overflow: hidden; /* Dışarı taşan nesneleri gizle */
    border: 4px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Kuş */
#bird {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #f1c40f; /* Kuş sarısı */
    border-radius: 50%;
    top: 250px;
    left: 50px;
    box-shadow: inset -3px -3px 0 rgba(0,0,0,0.2);
}

/* Borular (Engeller) */
.pipe {
    position: absolute;
    width: 60px;
    background-color: #2ecc71; /* Boru yeşili */
    right: -60px; /* Başlangıçta ekran dışından gelsin */
    border: 2px solid #27ae60;
}

#pipe-top {
    top: 0;
}

#pipe-bottom {
    bottom: 0;
}

/* Skor Yazısı */
#score {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0 #000;
    z-index: 10;
}

/* Oyun Bitti Yazısı */
#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0 #000;
    text-align: center;
    display: none; /* Başlangıçta gizli */
    cursor: pointer;
    z-index: 20;
    width: 100%;
}