body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Başlık */
h1 {
    margin-top: 20px;
    font-size: 24px;
}

/* Resim Yükleme Sayfası */
#imageUploadContainer {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    display: inline-block;
    margin-top: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Oyun Alanı */
#gameContainer {
    margin-top: 30px;
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/* Canvas (Oyun ekranı) */
canvas {
    border: 1px solid #000;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 750px;
    height: auto;
}

/* Genel Buton Stilleri */
button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #45a049;
}

/* Yeniden Başlat Butonu */
#restartButton {
    background-color: #f44336;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
}

#restartButton:hover {
    background-color: #e53935;
}

/* Skor ve Maksimum Skor */
#scoreDisplay,
#maxScoreDisplay {
    position: absolute;
    font-size: 16px;
    color: black;
    font-family: 'Courier', sans-serif;
}

#scoreDisplay {
    top: 10px;
    left: 10px;
}

#maxScoreDisplay {
    top: 10px;
    right: 10px;
}

/* Ölüm Anında Görüntülenen Fotoğraf */
#gameContainer img {
    display: none; /* Ölüm anında sadece 2.png gösterilecek */
}

#gameOverImage {
    display: block;
    margin: 0 auto;
}

/* Mobil Uyarlamalar */
@media (max-width: 768px) {
    h1 {
        font-size: 20px;
    }

    #scoreDisplay,
    #maxScoreDisplay {
        font-size: 14px;
    }

    canvas {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    button {
        width: 90%;
        max-width: 300px;
        font-size: 14px;
    }

    #restartButton {
        width: 90%;
        max-width: 300px;
    }
}

/* Daha Küçük Ekranlar için Stil (telefonlar) */
@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    #scoreDisplay,
    #maxScoreDisplay {
        font-size: 12px;
    }

    canvas {
        width: 100%;
        height: 200px;
    }

    button {
        width: 90%;
    }

    #restartButton {
        width: 90%;
        max-width: 250px;
    }
}
