body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-size: 3rem;
    letter-spacing: 10px;
}

.scoreboard {
    display: flex;
    justify-content: center;
    gap: 100px;
    font-size: 4rem;
    margin-bottom: 20px;
}

canvas {
    background-color: #000;
    border: 2px solid white;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 50px;
}

/* YENİ: Butonları yan yana koymak için */
.button-container {
    display: flex;
    gap: 20px; /* Butonlar arası boşluk */
    margin-top: 15px;
}

button {
    background-color: #1a1a1a;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
}

button:hover {
    background-color: white;
    color: black;
}
/* sty.css dosyanızın en altına bunu ekleyin */

.back-button {
    /* Konumlandırma */
    position: absolute; /* Sayfaya göre sabitler */
    top: 20px;          /* Yukarıdan 20px boşluk */
    left: 20px;         /* Soldan 20px boşluk */
    
    /* Diğer butonlarla aynı stil */
    background-color: #1a1a1a;
    color: white;
    border: 2px solid white;
    padding: 10px 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none; /* Linkin alt çizgisini kaldırır */
    letter-spacing: 1px;
}

.back-button:hover {
    background-color: white;
    color: black;
}