/* Genel Sayfa Ayarları */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Koyu Gri Arka Plan */
    color: #E0E0E0; /* Açık Gri Yazı Rengi */
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Ana İçerik Konteyneri */
.main-container {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Logo Stili */
.logo {
    max-width: 150px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Dinamik Yazı Konteyneri */
.typing-container {
    height: 80px; /* Yazı değişirken zıplamayı önlemek için sabit yükseklik */
    font-size: 2.5rem; /* 40px */
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
}

/* Yazma Efekti İmleci */
.cursor {
    display: inline-block;
    background-color: #03DAC6; /* Turkuaz İmleç */
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { background-color: #03DAC6; }
    50% { background-color: transparent; }
}

/* Slogan Stili */
.slogan {
    font-size: 1.1rem; /* 18px */
    margin-top: 30px;
    color: #BBBBBB; /* Daha soluk gri */
    font-weight: 400;
}

/* Alt Bilgi (Footer) Stili */
.footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem; /* 14px */
    color: #757575;
}

/* Bilgi İkonu ve Paneli Stilleri */
#info-icon {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #757575;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1000;
}

#info-icon:hover {
    color: #03DAC6;
}

#info-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#info-panel.hidden {
    opacity: 0;
    visibility: hidden;
}

#info-content {
    max-width: 700px;
    padding: 40px;
    color: #E0E0E0;
    line-height: 1.7;
    position: relative;
}

#info-content h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    border-bottom: 2px solid #03DAC6;
    padding-bottom: 10px;
}

#info-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

#close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #757575;
    cursor: pointer;
    transition: color 0.3s ease;
}

#close-button:hover {
    color: #FFFFFF;
}

/* Mobil Cihazlar için Ayarlar */
@media (max-width: 768px) {
    .typing-container {
        font-size: 1.5rem;
        height: 60px;
    }
    .slogan {
        font-size: 1rem;
        padding: 0 20px;
    }
    .logo {
        max-width: 120px;
    }
    #info-content {
        padding: 40px 20px;
    }
    #info-content h2 {
        font-size: 1.8rem;
    }
    #info-content p {
        font-size: 1rem;
    }
    #info-icon {
        top: 20px;
        right: 20px;
    }
}