body {
    margin: 0;
    background-color: #000;
    color: #0f0; /* Retro yeşil metin */
    font-family: 'Consolas', 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#game-container {
    position: relative;
    border: 2px solid #0f0; /* Yeşil retro kenarlık */
    box-shadow: 0 0 20px #0f0;
}

#gameCanvas {
    display: block;
    background-color: #080818; /* Koyu uzay mavisi */
}

#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* UI'ın canvas etkileşimlerini engellememesi için */
    color: #0f0;
    z-index: 10;
}

#stats-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 20, 0, 0.7);
    padding: 10px;
    border-bottom: 1px solid #0f0;
    font-size: 1em;
}

#stats-bar span {
    margin-right: 20px;
}

#message-log {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px); /* Kenarlardan boşluk bırak */
    max-height: 100px; /* Maksimum yükseklik */
    overflow-y: auto; /* Gerekirse kaydırma çubuğu */
    background-color: rgba(0, 10, 0, 0.6);
    padding: 8px;
    border: 1px solid #0a0;
    font-size: 0.9em;
    box-sizing: border-box;
}

#message-log p {
    margin: 0 0 5px 0;
    color: #0f0;
    word-break: break-word;
}

/* Parçacıklar için genel bir stil (JavaScript ile yönetilecek) */
.particle {
    position: absolute; /* Eğer DOM tabanlı parçacıklar kullanılacaksa */
    border-radius: 50%;
    background-color: #0f0; /* Varsayılan parçacık rengi */
}