/* Genel stil,font */
body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Ortadaki container */
.container {
    display: flex;
    width: 1100px;
    height: 850px;   /* sabit yükseklik */
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    overflow-y: auto;  /* içerik taşarsa kaydırma çıksın */
    background: #fff;
    margin: auto;
}

/* Sol panel (gradient mavi) */
.left-panel {
    flex: 0 0 280px; /* Değişiklik: Genişliği sabitlendi */
    background: linear-gradient(135deg, #25aae1, #0077b6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    color: #fff;
    text-align: center;
    position: relative; /* footer'ı aşağı sabitlemek için */
}
.left-panel img {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    
    /* YENİ EKLENEN SATIR */
    animation: logoFadeIn 0.5s ease-out 0.1s both;
}
/* Sol panel başlık */
.left-panel h1 {
    font-size: 24px;
    font-weight: 600;
    animation: logoFadeIn 0.5s ease-out 0.1s both;
}
.left-panel h1 a {
  text-decoration: none;
  color: inherit;
}

/* Footer */
.footer-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
    white-space: nowrap;
}
/* Sağ panel (menü) */
.right-panel {
    flex: 1; /* Değişiklik: Kalan alanı doldurması sağlandı */
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Menü listesi */
.menu-options {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Menü kutuları */
.menu-option {
    display: flex;
    height: 80px;
    width: 520px;
    align-items: center;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 22px 28px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.menu-option:hover {
    background: linear-gradient(135deg, #25aae1, #0077b6);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Menü ikonları */
.option-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.option-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}
.menu-option:hover .option-icon img {
    filter: brightness(200%) invert(1);
}

/* Menü yazıları */
.option-content h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #0a1f44;
}
.option-content p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #666;
}
.menu-option:hover .option-content h3,
.menu-option:hover .option-content p {
    color: #fff;
}

/* Ok ikonu */
.option-arrow {
    margin-left: auto;
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}
.menu-option:hover .option-arrow {
    transform: translateX(6px);
    color: #fff;
}
/* =================================== */
/* == YENİ EKLENEN YARDIM İKONU CSS == */
/* =================================== */

.help-container {
    position: fixed; /* Sayfanın sağ altına sabitler */
    bottom: -395px;  /* 25px'ten 20px'e düşürüldü (daha aşağıda) */
    right: 110px;   /* 25px'ten 30px'e yükseltildi (daha solda) */
    z-index: 1000; /* Diğer elementlerin üstünde kalır */
    
    /* Tooltip'in kendini buna göre konumlandırması için GEREKLİ */
    position: relative;
}

.help-icon {
    width: 45px;
    height: 45px;
    background-color: #0077b6; /* Sayfanızdaki mavi tonuyla uyumlu */
    color: #ffffff;
    border-radius: 50%; /* Daire yapar */
    
    /* Soru işaretini ortalar */
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

/* Mouse ile ikonun üzerine gelince rengi değişsin */
.help-icon:hover {
    background-color: #25aae1; /* Sayfanızdaki açık mavi */
}

/* Üzerine gelince çıkan İletişim Baloncuğu (Tooltip) */
.help-container .tooltip-text {
    /* Başlangıçta görünmez yap */
    visibility: hidden;
    opacity: 0;

    width: 220px; /* İletişim yazısının genişliği */
    background-color: #333; /* Koyu arkaplan */
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    
    /* Mutlak konumlandırma (ana .help-container'a göre) */
    position: absolute;
    z-index: 1;
    
    /* İkonun tam üstünde görünmesini sağlar */
    bottom: 120%; /* İkonun yüksekliğinden biraz daha yukarıda */
    left: 50%;
    
    /* Genişliğin yarısı kadar sola kaydırarak tam ortala */
    transform: translateX(-50%); 

    /* Geçiş efekti */
    transition: opacity 0.3s ease;
}

/* Mouse ile .help-container üzerine gelince... */
/* ...içindeki .tooltip-text'i görünür yap. */
.help-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px); /* 10px aşağıdan başla */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Normal pozisyonuna gel */
    }
}

@media(max-width: 900px){
    .container {
        flex-direction: column;
        height: auto;
        width: 90%; 
        min-width: 300px; 
        margin: 20px auto; 
    }
    
    .left-panel, .right-panel { 
        flex: none;
        width: 100%;
        box-sizing: border-box; 
    }
    
    
    .right-panel { 
        padding: 30px 20px; 
    }
    
    .menu-option {
        width: 100%; 
        height: auto; 
        padding: 18px 20px; 
    }
    
    .menu-options {
        gap: 20px;
    }

    .footer-text {
        position: static; 
        transform: none;
        margin-top: 20px; 
    }
    .help-container { 
        visibility: hidden;
    }    
    
    .left-panel { padding: 40px 20px; }
}