/* Modern Giriş Sayfası Tasarımı - Sadece Giriş Sayfası İçin */
.GirisAnaSablon {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: auto;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Giriş ekranı varken arkadaki panelleri gizle - z-index ile zaten örtülüyor */
/* Not: Sibling selector kaldırıldı çünkü jQuery .show() ile çakışıyordu */

/* Anasayfa yazı/resim alanları - form dışında kalan içerikler */
.GirisAnaSablon > :not(#girisEkrani) {
    position: relative;
    z-index: 5;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    padding: 10px 20px;
}

/* Anasayfa yazısı stili */
.GirisAnaSablon > div:not(#girisEkrani):not(.formalani) {
    font-size: 14px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-top: 10px;
}

/* Anasayfa resmi stili */
.GirisAnaSablon > img {
    max-width: 300px;
    max-height: 150px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Animasyonlu arka plan parçacıkları */
.GirisAnaSablon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

#girisEkrani {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.formalani {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form başlığı */
#formic h1 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

#formic h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.welcome-text {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 400;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input alanları */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.girisInput {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    outline: none;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
}

.girisInput:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.girisInput:focus + .input-icon {
    color: #667eea;
}

.girisInput::placeholder {
    color: #adb5bd;
}

/* Cinsiyet seçimi */
.cinsiyet-alani {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.cinsiyet-alani input[type="radio"] {
    display: none;
}

.cinsiyet-alani label {
    padding: 12px 24px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6c757d;
    background: #f8f9fa;
    min-width: 80px;
}

.cinsiyet-alani input[type="radio"]:checked + label {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Giriş butonu */
.girisButonu {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.girisButonu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.girisButonu:hover::before {
    left: 100%;
}

.girisButonu:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.girisButonu:active {
    transform: translateY(-1px);
}

/* Alt butonlar */
.altbutton {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.altbutton a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.altbutton a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Responsive tasarım */
@media (max-width: 480px) {
    #girisEkrani {
        padding: 10px;
    }
    
    .formalani {
        padding: 30px 20px;
    }
    
    #formic h1 {
        font-size: 24px;
    }
    
    .cinsiyet-alani {
        flex-direction: column;
        align-items: center;
    }
    
    .cinsiyet-alani label {
        width: 100%;
        max-width: 200px;
    }
}

/* Loading animasyonu - sadece giriş sayfasında */
.GirisAnaSablon .yukleniyor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.GirisAnaSablon .yukleniyor::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gizli sınıflar */
.gizle {
    display: none !important;
}

/* giriskontz arka planı .GirisAnaSablon sınıfından gelir */

.dissayfa {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    margin: 20px auto !important;
    max-width: 450px !important;
    padding: 40px !important;
}

.anladim {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.anladim:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
}

/* ==================== PC GİRİŞ EKRANI İYİLEŞTİRMELERİ v1.0 ==================== */
/* NOT: Bu blok silinerek tüm değişiklikler geri alınabilir */
/* MOBİL ETKİLENMEZ: login.css sadece PC index.html'de yüklenir */

/* Box-sizing tutarlılığı - taşma önleme */
.GirisAnaSablon *,
.GirisAnaSablon *::before,
.GirisAnaSablon *::after {
    box-sizing: border-box;
}

/* Form kartı - daha subtle gölge */
.formalani {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Input alanı iyileştirmeleri */
.girisInput {
    font-size: 15px;
    letter-spacing: 0.3px;
}

.girisInput:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15), 0 2px 8px rgba(102, 126, 234, 0.1);
}

.girisInput::placeholder {
    font-size: 14px;
    letter-spacing: 0.2px;
}

/* Focus-visible accessibility desteği */
.girisInput:focus-visible,
.girisButonu:focus-visible,
.cinsiyet-alani label:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Cinsiyet seçimi iyileştirmesi */
.cinsiyet-alani label {
    font-size: 14px;
    letter-spacing: 0.3px;
    user-select: none;
}

.cinsiyet-alani input[type="radio"]:checked + label {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

/* Giriş butonu iyileştirmesi */
.girisButonu {
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.girisButonu:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.45), 0 0 30px rgba(102, 126, 234, 0.2);
}

.girisButonu:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Buton disabled durumu */
.girisButonu:disabled,
.girisButonu.disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
    box-shadow: none !important;
}

/* Buton loading durumu */
.girisButonu.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.girisButonu.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Alt butonlar iyileştirmesi */
.altbutton {
    padding-top: 18px;
    margin-top: 18px;
}

.altbutton a {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
}

/* Şifreli hesap formu stilleri */
.uyeInputlari {
    margin-top: 20px;
}

.uyeInputlari .girisInput,
.uyeInputlari input[type="password"],
.uyeInputlari input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 12px;
}

.uyeInputlari input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.uyeInputlari input::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

/* Hata mesajı stilleri */
.GirisAnaSablon .hata-mesaji,
.GirisAnaSablon .error-message,
.formalani .hata-mesaji,
.formalani .error-message {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 13px;
    color: #b91c1c;
    text-align: center;
    animation: shakeError 0.4s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Başarı mesajı stilleri */
.GirisAnaSablon .basari-mesaji,
.GirisAnaSablon .success-message,
.formalani .basari-mesaji,
.formalani .success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 13px;
    color: #047857;
    text-align: center;
}

/* Uyarı mesajı stilleri */
.GirisAnaSablon .uyari-mesaji,
.GirisAnaSablon .warning-message,
.formalani .uyari-mesaji,
.formalani .warning-message {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 13px;
    color: #92400e;
    text-align: center;
}

/* Input validation durumlari */
.girisInput.invalid,
.girisInput:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background: #fef2f2;
}

.girisInput.valid,
.girisInput:valid:not(:placeholder-shown) {
    border-color: #22c55e;
}

/* Welcome text iyileştirmesi */
.welcome-text {
    font-size: 15px;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* Form başlığı iyileştirmesi */
#formic h1 {
    font-size: 26px;
    margin-bottom: 8px;
}

#formic h1::after {
    bottom: -8px;
    width: 45px;
    height: 3px;
}

/* Ara breakpoint - tablet/küçük PC ekranları */
@media (max-width: 768px) and (min-width: 481px) {
    #girisEkrani {
        padding: 15px;
        max-width: 380px;
    }
    
    .formalani {
        padding: 35px 30px;
    }
    
    #formic h1 {
        font-size: 24px;
    }
    
    .welcome-text {
        font-size: 14px;
    }
    
    .girisInput {
        padding: 13px 18px 13px 45px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 16px;
    }
    
    .cinsiyet-alani label {
        padding: 10px 20px;
    }
    
    .girisButonu {
        padding: 13px;
        font-size: 14px;
    }
}

/* Küçük PC ekranları için scroll düzeltmesi */
@media (max-height: 600px) {
    .GirisAnaSablon {
        justify-content: flex-start;
        padding: 20px 0;
    }
    
    #girisEkrani {
        margin: auto;
    }
    
    .formalani {
        padding: 25px 30px;
    }
    
    .welcome-text {
        margin-bottom: 18px;
    }
    
    .cinsiyet-alani {
        margin-bottom: 18px;
    }
}

/* Yüksek DPI ekranlar için keskinlik */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .formalani {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ==================== PC GİRİŞ EKRANI İYİLEŞTİRMELERİ BİTİŞ ==================== */

/* ==================== MOBİL PARİTY - LOGIN v2.0 ==================== */
/* NOT: Bu blok silinerek tüm parity değişiklikleri geri alınabilir */
/* MOBİL ETKİLENMEZ: login.css sadece PC index.html'de yüklenir */

/* ===== ANA CONTAINER - Gradient Animasyonu ===== */
.GirisAnaSablon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== FORM KARTI - Mobil İle Uyumlu ===== */
.formalani {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 360px;
    width: 100%;
}

/* Form kartı üst gradient çizgi */
.formalani::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 16px 16px 0 0;
}

/* ===== BAŞLIK - Gradient Text ===== */
#formic h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

#formic h1::after {
    display: none;
}

/* ===== WELCOME TEXT ===== */
.welcome-text {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0 0 22px 0;
    font-weight: 400;
    line-height: 1.4;
    opacity: 1;
}

/* ===== INPUT ALANLARI - Mobil Stili ===== */
.input-group {
    position: relative;
    margin-bottom: 16px;
}

.girisInput {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 12px;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-weight: 500;
    color: #2c3e50;
    box-shadow: 
        0 4px 12px rgba(128, 128, 128, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

/* Input icon - sağda göster (PC uyumu) */
.input-icon {
    position: absolute;
    right: 14px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.3s ease;
}

.girisInput:focus {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 255, 1) 100%);
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.15),
        0 6px 16px rgba(102, 126, 234, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.girisInput:focus + .input-icon,
.girisInput:focus ~ .input-icon {
    color: #667eea;
}

.girisInput::placeholder {
    color: rgba(128, 128, 128, 0.6);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2px;
}

/* ===== CİNSİYET SEÇİMİ - Mobil Stili ===== */
.cinsiyet-alani {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
}

.cinsiyet-alani label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    min-width: 95px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cinsiyet-alani label:hover {
    border-color: #667eea;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}

/* Erkek seçildi - Mavi */
.cinsiyet-alani input[type="radio"]#erkek:checked + label {
    border-color: #1877F2;
    background: linear-gradient(135deg, #1877F2, #0d5bbd);
    color: white;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
    transform: translateY(-2px);
}

/* Kadın seçildi - Pembe */
.cinsiyet-alani input[type="radio"]#kadin:checked + label {
    border-color: #e91e8c;
    background: linear-gradient(135deg, #e91e8c, #c2185b);
    color: white;
    box-shadow: 0 4px 14px rgba(233, 30, 140, 0.35);
    transform: translateY(-2px);
}

/* ===== GİRİŞ BUTONU - Facebook Mavisi (Mobil ile Uyumlu) ===== */
.girisButonu {
    width: 100%;
    padding: 14px 24px;
    background: #1877F2 !important;
    border: none;
    border-radius: 10px;
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    box-shadow: 
        0 6px 20px rgba(24, 119, 242, 0.35),
        0 3px 10px rgba(24, 119, 242, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Buton ışık sweep efekti */
.girisButonu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.girisButonu:hover::before {
    left: 100%;
}

.girisButonu:hover {
    background: #1565c0 !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(24, 119, 242, 0.4),
        0 4px 12px rgba(24, 119, 242, 0.25);
}

.girisButonu:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 4px 16px rgba(24, 119, 242, 0.35);
}

/* Hafif pulse animasyonu - subtle */
.girisButonu:not(:disabled) {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35), 0 3px 10px rgba(24, 119, 242, 0.2);
    }
    50% {
        box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4), 0 4px 12px rgba(24, 119, 242, 0.25);
    }
}

/* ===== ALT BUTONLAR - Mobil Stili ===== */
.altbutton {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.altbutton a {
    padding: 8px 14px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.altbutton a:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #5a67d8;
    transform: translateY(-1px);
}

/* ===== HATA/BAŞARI MESAJLARI - Mobil Uyumu ===== */
.GirisAnaSablon .hata-mesaji,
.GirisAnaSablon .error-message,
.formalani .hata-mesaji {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 12px;
    color: #b91c1c;
    text-align: center;
}

.GirisAnaSablon .basari-mesaji,
.formalani .basari-mesaji {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 12px;
    color: #047857;
    text-align: center;
}

/* ===== RESPONSIVE - Küçük Ekranlar ===== */
@media (max-width: 480px) {
    .formalani {
        padding: 28px 22px;
        border-radius: 12px;
        margin: 10px;
    }
    
    #formic h1 {
        font-size: 22px;
    }
    
    .welcome-text {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .girisInput {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .cinsiyet-alani {
        gap: 8px;
    }
    
    .cinsiyet-alani label {
        padding: 10px 18px;
        font-size: 12px;
        min-width: 85px;
    }
    
    .girisButonu {
        padding: 13px 20px;
        font-size: 14px;
    }
    
    .altbutton {
        gap: 6px;
    }
    
    .altbutton a {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ===== LAPTOP KÜÇÜK EKRAN DÜZELTMESİ ===== */
@media (max-height: 700px) {
    .GirisAnaSablon {
        padding: 15px 0;
        justify-content: flex-start;
    }
    
    #girisEkrani {
        margin: auto 0;
        padding: 10px;
    }
    
    .formalani {
        padding: 24px 24px;
    }
    
    .welcome-text {
        margin-bottom: 16px;
    }
    
    .cinsiyet-alani {
        margin: 14px 0;
    }
    
    .altbutton {
        margin-top: 16px;
        padding-top: 14px;
    }
}

/* ===== ANASAYFA YAZI/RESİM ALANLARI ===== */
.GirisAnaSablon > :not(#girisEkrani):not(form):not(#radyoalani):not(a) {
    position: relative;
    z-index: 5;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    padding: 12px 20px;
    margin: 10px auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.GirisAnaSablon > img {
    max-width: 280px;
    max-height: 140px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==================== MOBİL PARİTY - LOGIN BİTİŞ v2.0 ==================== */

/* ==================== GİRİŞ EKRANI DETAY v3.0 ==================== */
/* NOT: Bu blok silinerek değişiklikler geri alınabilir */

/* ===== CİNSİYET İKONLARI - Mobil Uyumlu ===== */
.cinsiyet-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    object-fit: contain;
    margin-right: 4px;
}

/* ===== BENİ HATIRLA ALANI ===== */
.remember-me-alani {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
    font-size: 13px;
    color: #666;
}

.remember-me-alani input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1877F2;
    cursor: pointer;
}

.remember-me-alani label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.remember-me-alani label:hover {
    color: #1877F2;
}

/* ===== GİRİŞ LİSTESİ CONTAINER - Görevli/Kullanıcı Listesi ===== */
.giris-liste-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
    padding: 10px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Kategori Kartı */
.giris-liste-kategori {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    animation: kategoriGiris 0.5s ease-out forwards;
}

@keyframes kategoriGiris {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kategori Başlık */
.giris-liste-baslik {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Kullanıcılar Listesi */
.giris-liste-kullanicilar {
    position: relative;
    min-height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Ticker Track */
.giris-ticker-track {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.ticker-aktif .giris-ticker-track {
    justify-content: flex-start;
    width: max-content;
    animation: tickerScroll var(--ticker-duration, 15s) linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-aktif:hover .giris-ticker-track {
    animation-play-state: paused;
}

/* Kullanıcı Kartı */
.giris-liste-kullanici {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: background 0.2s ease;
    flex-shrink: 0;
    min-width: 65px;
    cursor: pointer;
}

.giris-liste-kullanici:hover {
    background: rgba(255,255,255,0.18);
}

/* Avatar */
.giris-liste-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--anim-renk, #667eea);
    box-shadow: 0 0 8px var(--anim-renk, #667eea);
    transition: all 0.25s ease;
}

.giris-liste-kullanici:hover .giris-liste-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--anim-renk, #667eea);
}

/* Kullanıcı İsmi */
.giris-liste-isim {
    font-size: 10px;
    color: #fff;
    text-align: center;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* ===== MODAL/PANEL OVERLAY KAPATMA ===== */
/* Overlay'e tıklayınca panel kapansın */
#alertAlani.ui.dimmer {
    cursor: pointer;
}

#alertAlani .dissayfa {
    cursor: default;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

/* Kapat butonu daha belirgin */
#alertAlani .dissayfa .anladim,
#alertAlani .dissayfa .sa-button-container button {
    margin-top: 15px;
}

/* Panel scroll düzeltmesi */
#alertAlani .dissayfa .ortaalann {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 5px;
}

#alertAlani .dissayfa .ortaalann::-webkit-scrollbar {
    width: 4px;
}

#alertAlani .dissayfa .ortaalann::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.4);
    border-radius: 4px;
}

/* ===== RESPONSIVE - KÜÇÜK EKRANLAR ===== */
@media (max-width: 480px) {
    .giris-liste-container {
        padding: 8px 10px;
        max-width: 100%;
    }
    
    .giris-liste-kategori {
        padding: 10px;
        border-radius: 12px;
    }
    
    .giris-liste-avatar {
        width: 36px;
        height: 36px;
    }
    
    .giris-liste-isim {
        font-size: 9px;
        max-width: 45px;
    }
    
    .remember-me-alani {
        font-size: 12px;
    }
}

/* ==================== GİRİŞ EKRANI DETAY BİTİŞ v3.0 ==================== */

/* ==================== ŞİFRELİ GİRİŞ FORMU DÜZELTMESİ v14 ==================== */
/* NOT: Bu blok silinerek tüm değişiklikler geri alınabilir */
/* MOBİL ETKİLENMEZ: login.css sadece PC index.html'de yüklenir */

/* Şifreli hesap formu container */
#baglanFormUye {
    width: 100%;
}

/* Şifreli giriş başlık */
#baglanFormUye h1 {
    margin-bottom: 20px;
    color: #333;
}

#baglanFormUye h1 span {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #667eea;
}

/* Input alanları container */
.uyeInputlari {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.uyeInputlari > div {
    width: 100%;
}

.uyeInputlari label {
    display: block;
    width: 100%;
}

.uyeInputlari .girisInput {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.uyeInputlari .girisInput:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.uyeInputlari .girisInput::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

/* Bağlan/Vazgeç buton alanı - Float yerine Flexbox */
#baglanFormUye .ortala {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center !important;
    margin-top: 20px;
}

/* Bağlan butonu */
#baglanFormUye #bglnUye {
    float: none !important;
    width: auto !important;
    flex: 1 !important;
    max-width: 140px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#baglanFormUye #bglnUye:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Vazgeç butonu */
#baglanFormUye #cikgit {
    float: none !important;
    width: auto !important;
    flex: 1 !important;
    max-width: 140px;
    padding: 12px 20px;
    background: #f0f2f5;
    color: #666;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#baglanFormUye #cikgit:hover {
    background: #e8eaed;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

/* Şifreli giriş altbutton düzeni */
#baglanFormUye + .altbutton {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

/* Responsive - Dar ekranlar */
@media (max-width: 400px) {
    #baglanFormUye .ortala {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    #baglanFormUye #bglnUye,
    #baglanFormUye #cikgit {
        max-width: 100%;
        width: 100% !important;
    }
}

/* ==================== ŞİFRELİ GİRİŞ FORMU DÜZELTMESİ BİTİŞ v14 ==================== */

/* ==================== GİRİŞ LİSTESİ BOŞ DURUM DÜZELTMESİ v15 ==================== */
/* NOT: Bu blok silinerek tüm değişiklikler geri alınabilir */
/* MOBİL ETKİLENMEZ: login.css sadece PC index.html'de yüklenir */

/* Boş giriş listesi container - Zarif placeholder */
.giris-liste-container:empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px dashed rgba(255,255,255,0.2);
    margin-top: 20px;
}

.giris-liste-container:empty::after {
    content: "👋 Hoş geldiniz!";
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    letter-spacing: 0.3px;
}

/* Dolu giriş listesi - normal görünüm */
.giris-liste-container:not(:empty) {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==================== GİRİŞ LİSTESİ BOŞ DURUM DÜZELTMESİ BİTİŞ v15 ==================== */