/*body,
html {
    
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #111;

    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}*/

canvas {
    background: #000000;
    border: 4px solid rgb(49, 47, 80);
}

#dialogBox {
    position: absolute;
    bottom: 50%-100;
    left: 50%;
    transform: translateX(-50%);

    width: 700px;
    min-height: 100px;

    padding: 20px;

    font-size: 20px;
    font-family: Arial;

    z-index: 10;
}

/* 1. Tüm sayfayı siyah yap ve içeriği tam merkeze oturt */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 2. ANA KONTROL PANELİ: Tam 800x800 ve Turkuaz Çerçeve */
#game-window {
    width: 800px;
    height: 800px;
    border: 2px solid #00ffcc;
    box-sizing: border-box;
    /* Sınırların içeriye dahil edilmesi kritik */
    position: relative;
    background-color: #000;
    font-family: 'Courier New', Courier, monospace;
    color: #00ffcc;
    overflow: hidden;
}

/* Ekranları hizalamak için ortak stil */
.screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

/* MENÜ EKRANI */
h1 {
    font-size: 3rem;
    letter-spacing: 5px;
    margin: 0 0 10px 0;
    text-shadow: 3px 0 #ff0055, -3px 0 #00ffcc;
}

.sub-title {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.menu-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* GÖRSELDEKİ DOLU TURKUAZ BUTON */
#start-btn {
    background-color: #00ffcc;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
}

#start-btn:hover {
    box-shadow: 0 0 20px #00ffcc;
    transform: scale(1.05);
}

/* JENERİK EKRANI (SOLA DAYALI) */
#jenerik-screen {
    display: none;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    /* Yazının en üstten başlaması için */
    padding: 60px;
}

.type-box {
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    width: 100%;
}

/* İmleç */
.cursor::after {
    content: '█';
    animation: blink 1s step-end infinite;
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}