* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* Mobilde adres çubuğu değişirken zıplamayı önler */
    height: 100dvh;
    min-height: 100dvh;
    /* Sayfanın yukarı/aşağı kaymasını engeller */
    overflow: hidden;
    /* iOS lastik bant efektini kapatır */
    overscroll-behavior: none;
    position: fixed; /* iOS Safari fix */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.app-container {
    width: 100%;
    height: 100dvh; /* Ekranın o anki görünür alanı kadar yer kapla */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Main content area - harita ve sidebar yan yana */
.main-content {
    display: none;
    flex: 1;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    background-color: #0a0a0a;
}

.main-content.visible {
    display: flex;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* ÖNEMLİ: Arka plan rengini buraya ver ki çentik dahil her yer boyansın */
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Çentik (Safe Area) kadar üstten iç boşluk bırak */
    padding-top: env(safe-area-inset-top, 0);
}

/* Harita sayfasında header daha kompakt */
.app-container.map-view .header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-container.map-view .header .navbar {
    height: 40px; /* 48px'den 40px'e küçültüldü */
    padding: 0 14px; /* 16px'den 14px'e küçültüldü */
}

/* Map-view'da butonlar header altında */
.app-container.map-view .zoom-controls {
    top: calc(env(safe-area-inset-top, 0px) + 40px + 16px);
    bottom: auto;
}

.app-container.map-view .filter-toggle-icon {
    top: calc(env(safe-area-inset-top, 0px) + 40px + 16px);
    bottom: auto;
}

.app-container.map-view .add-profile-btn {
    top: calc(env(safe-area-inset-top, 0px) + 40px + 16px);
    bottom: auto;
}

/* Harita sayfasında navbar'ı sadeleştir */
.app-container.map-view .navbar-brand,
.app-container.map-view .navbar-nav {
    display: none !important;
}

/* Harita sayfasında navbar actions'ı sağa hizala */
.app-container.map-view .navbar {
    justify-content: flex-end;
    height: 40px; /* Harita sayfasında daha küçük navbar (48px'den 40px'e) */
    padding: 0 14px; /* Daha kompakt padding (16px'den 14px'e) */
    gap: 10px; /* Daha kompakt gap (12px'den 10px'e) */
    /* ÖNEMLİ: Şeffaf olmalı, rengi üstten (.header) alacak */
    background: transparent !important;
    border-bottom: none; /* Border header'da var, burada gerek yok */
}

/* Harita sayfasında navbar içindeki elemanları küçült */
.app-container.map-view .navbar .navbar-actions {
    gap: 8px;
}

.app-container.map-view .user-avatar {
    width: 32px;
    height: 32px;
}

.app-container.map-view .nav-link {
    padding: 6px 12px;
    font-size: 13px;
}

.app-container.map-view .btn-primary {
    padding: 6px 14px;
    font-size: 12px;
}

.navbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: 52px; /* 64px'den 52px'e küçültüldü */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px; /* 32px'den 24px'e küçültüldü */
    
    /* ÖNEMLİ: Burası şeffaf olmalı, rengi üstten (.header) alacak */
    background: transparent !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(62, 207, 142, 0.5));
    transition: all 0.3s ease;
}

/* Hover olunca parlama artsın */
.navbar-brand:hover .logo-icon {
    filter: drop-shadow(0 0 8px rgba(62, 207, 142, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-text {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.highlight-link {
    color: #3ECF8E;
    font-weight: 500;
}

.nav-link.highlight-link:hover {
    color: #2ebd7a;
    background: rgba(62, 207, 142, 0.1);
}

.nav-link.login-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.nav-link.login-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.dropdown-icon {
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    max-width: min(220px, calc(100vw - 32px));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

.dropdown-section-title {
    padding: 8px 12px 4px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
}

.dropdown-item {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* Daha kompakt gap */
}

/* Harita sayfasında navbar actions daha kompakt */
.app-container.map-view .navbar-actions {
    gap: 8px;
}


.btn-dashboard {
    background: rgba(62, 207, 142, 0.1);
    color: #3ECF8E;
    border: 1px solid rgba(62, 207, 142, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-dashboard:hover {
    background: rgba(62, 207, 142, 0.15);
    border-color: #3ECF8E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 207, 142, 0.2);
}

.btn-dashboard:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #3ECF8E 0%, #2ebd7a 100%);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2ebd7a 0%, #3ECF8E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 207, 142, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.map-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    cursor: grab;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    /* Perspective efekti kaldırıldı - kaliteyi korumak için */
    perspective: none;
    transform-style: flat;
}

.map-container.dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth momentum scrolling on iOS */
.map-container {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

#svg-turkey {
    width: 100%;
    height: 100%;
    display: block;
    /* Harita efektleri azaltıldı - kaliteyi korumak için */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    /* Perspective efekti kaldırıldı - kaliteyi korumak için */
    transform: none;
    transform-style: flat;
}

.province {
    stroke: #FFD700;
    stroke-width: 1.8;
    cursor: pointer;
    /* transition sadece stroke-width için - filter kaldırıldı kaliteyi korumak için */
    transition: stroke-width 0.2s ease;
    vector-effect: non-scaling-stroke;
    /* Filter efektleri azaltıldı - kaliteyi korumak için */
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
    /* transform-style: preserve-3d kaldırıldı - profillerin yer değiştirmesini engellemek için */
}

.province:hover {
    stroke: #FFD700;
    stroke-width: 2.5;
    /* Filter efektleri azaltıldı - kaliteyi korumak için */
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    /* transform: translateZ kaldırıldı - profillerin yer değiştirmesini engellemek için */
}

.province.selected {
    stroke: #FFD700;
    stroke-width: 3;
    /* Filter efektleri azaltıldı - kaliteyi korumak için */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    /* transform: translateZ kaldırıldı - profillerin yer değiştirmesini engellemek için */
}

.province.selected:hover {
    stroke: #FFD700;
    /* Filter efektleri azaltıldı - kaliteyi korumak için */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    /* transform: translateZ kaldırıldı - profillerin yer değiştirmesini engellemek için */
}

/* Zoom Controls */
.zoom-controls {
    position: fixed;
    right: 20px;
    /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
    top: calc(env(safe-area-inset-top, 0px) + 52px + 16px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #3ECF8E;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(62, 207, 142, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid rgba(62, 207, 142, 0.3);
}

.zoom-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.zoom-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.zoom-btn:hover {
    background: rgba(26, 26, 26, 0.95);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(62, 207, 142, 0.3);
    color: #ffffff;
    border-color: rgba(62, 207, 142, 0.5);
}

.zoom-btn:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

@media (hover: none) {
    .zoom-btn:hover {
        transform: scale(1);
    }
}

#reset-zoom {
    font-size: 14px;
}

/* Loading */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 48px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #3ECF8E;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(62, 207, 142, 0.2);
    z-index: 1000;
    letter-spacing: 1px;
    border: 1px solid rgba(62, 207, 142, 0.2);
}

.loading.hidden {
    display: none;
}


/* Responsive - Tablet */
@media (max-width: 1024px) {
    .zoom-controls {
        /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 52px + 16px);
        right: 15px;
        bottom: auto;
        gap: 8px;
    }

    .zoom-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .city-info-panel {
        max-width: 320px;
        padding: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        
        /* Çentikli telefonlar için güvenli alan - arka plan rengi burada */
        padding-top: env(safe-area-inset-top, 0);
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: auto;
        min-height: auto;
    }
    
    .navbar {
        /* Navbar şeffaf olmalı, rengi header'dan alır */
        background: transparent !important;
    }

    /* Harita container'ı navbar'ın altında kalsın */
    .hero-section, .map-container {
        padding-top: 48px; /* Header yüksekliği kadar boşluk (44px navbar + 4px) */
        height: 100dvh; /* Dinamik viewport yüksekliği (adres çubuğu sorununu çözer) */
    }
    
    /* Harita sayfasında padding daha küçük */
    .app-container.map-view .map-container {
        padding-top: 36px; /* 32px navbar + 4px boşluk */
    }

    /* Harita sayfasında navbar daha küçük */
    .app-container.map-view .header .navbar {
        height: 32px; /* 40px'den 32px'e küçültüldü */
        padding: 0 12px;
        gap: 8px;
    }

    .navbar {
        padding: 0 10px;
        height: 40px; /* 44px'den 40px'e küçültüldü */
        gap: 8px; /* 10px'den 8px'e küçültüldü */
    }
    
    .navbar-brand {
        gap: 5px;
    }
    
    /* Harita sayfasında navbar içindeki elemanları küçült */
    .app-container.map-view .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .app-container.map-view .nav-link {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .app-container.map-view .btn-primary {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .logo-icon {
        width: 14px;
        height: 14px;
    }
    
    .logo-text {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: -0.01em;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-actions {
        gap: 8px;
        position: relative;
    }
    
    .dropdown-menu {
        right: 0;
        left: auto;
        min-width: 180px;
        max-width: min(200px, calc(100vw - 20px));
        padding: 6px;
        margin-top: 6px;
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .dropdown-section-title {
        padding: 6px 10px 3px;
        font-size: 10px;
    }
    
    .dropdown-divider {
        margin: 4px 0;
    }
    
    .nav-link.login-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .btn-dashboard {
        padding: 5px 10px;
        font-size: 10px;
        font-weight: 400;
        border-radius: 5px;
        letter-spacing: -0.01em;
    }

    .zoom-controls {
        /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 40px + 12px);
        right: 10px;
        bottom: auto;
        gap: 6px;
    }
    
    /* Harita sayfasında butonlar header altında L şeklinde */
    .app-container.map-view .filter-toggle-icon {
        /* Header'ın altında başla (safe-area + 32px navbar + 12px boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 32px + 12px);
        right: 58px; /* Zoom controls'un solunda (40px buton + 6px gap + 6px gap + 6px ekstra) */
        bottom: auto;
    }
    
    .app-container.map-view .add-profile-btn {
        /* Header'ın altında başla (safe-area + 32px navbar + 12px boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 32px + 12px);
        right: 102px; /* Filter toggle'un solunda (40px zoom + 6px + 40px filter + 6px + 40px profil + 6px + 4px ekstra) */
        bottom: auto;
    }
    
    /* Normal sayfada header daha yüksek */
    .filter-toggle-icon:not(.app-container.map-view .filter-toggle-icon) {
        top: calc(env(safe-area-inset-top, 0px) + 40px + 12px);
        bottom: auto;
    }
    
    .add-profile-btn:not(.app-container.map-view .add-profile-btn) {
        top: calc(env(safe-area-inset-top, 0px) + 40px + 12px);
        bottom: auto;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
        /* Daha büyük touch target */
    }

    .zoom-btn:active {
        transform: scale(0.85);
        background: rgba(255, 255, 255, 1);
    }


    .selected-city {
        top: 70px;
        left: 10px;
        right: 80px;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .loading {
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Harita sayfasında navbar daha küçük */
    .app-container.map-view .header .navbar {
        height: 30px; /* 36px'den 30px'e küçültüldü */
        padding: 0 10px;
        gap: 6px;
    }

    .navbar {
        padding: 0 8px;
        height: 36px; /* 40px'den 36px'e küçültüldü */
        gap: 6px; /* 8px'den 6px'e küçültüldü */
    }
    
    /* Harita sayfasında navbar içindeki elemanları küçült */
    .app-container.map-view .user-avatar {
        width: 26px;
        height: 26px;
    }
    
    .app-container.map-view .nav-link {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .app-container.map-view .btn-primary {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .app-container.map-view .zoom-controls {
        /* Header'ın altında başla (safe-area + 30px navbar + 10px boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 30px + 10px);
        right: 10px;
        bottom: auto;
    }
    
    /* Harita sayfasında butonlar header altında L şeklinde */
    .app-container.map-view .filter-toggle-icon {
        /* Header'ın altında başla (safe-area + 30px navbar + 10px boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 30px + 10px);
        right: 54px; /* Zoom controls'un solunda (32px buton + 6px gap + 6px gap + 10px ekstra) */
        bottom: auto;
        width: 32px;
        height: 32px;
    }
    
    .app-container.map-view .add-profile-btn {
        /* Header'ın altında başla (safe-area + 30px navbar + 10px boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 30px + 10px);
        right: 94px; /* Filter toggle'un solunda (32px zoom + 6px + 32px filter + 6px + 32px profil + 6px + 10px ekstra) */
        bottom: auto;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    /* Normal sayfada header daha yüksek (36px) */
    .filter-toggle-icon:not(.app-container.map-view .filter-toggle-icon) {
        top: calc(env(safe-area-inset-top, 0px) + 36px + 10px);
        bottom: auto;
    }
    
    .add-profile-btn:not(.app-container.map-view .add-profile-btn) {
        top: calc(env(safe-area-inset-top, 0px) + 36px + 10px);
        bottom: auto;
    }
    
    .zoom-controls:not(.app-container.map-view .zoom-controls) {
        top: calc(env(safe-area-inset-top, 0px) + 36px + 10px);
        bottom: auto;
    }
    
    /* Küçük mobilde zoom butonları da küçült */
    .app-container.map-view .zoom-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .app-container.map-view .zoom-controls {
        gap: 6px;
    }
    
    .logo-icon {
        width: 12px;
        height: 12px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .navbar-actions {
        gap: 4px;
    }
    
    .dropdown-menu {
        right: 0;
        left: auto;
        min-width: 160px;
        max-width: min(180px, calc(100vw - 16px));
        padding: 5px;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 7px 8px;
        font-size: 11px;
    }
    
    .dropdown-section-title {
        padding: 5px 8px 2px;
        font-size: 9px;
    }
    
    .dropdown-divider {
        margin: 3px 0;
    }
    
    .nav-link.login-link {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .btn-primary {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .btn-dashboard {
        padding: 4px 8px;
        font-size: 9px;
    }

    .controls-info {
        font-size: 10px;
    }

    .zoom-controls {
        top: 8px;
        right: 8px;
        gap: 5px;
    }

    .zoom-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .city-info-panel {
        padding: 16px;
        max-height: 65vh;
    }

    .city-info-panel h2 {
        font-size: 18px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .header {
        padding: 8px 15px;
    }

    .header h1 {
        font-size: 16px;
    }

    .controls-info {
        font-size: 10px;
    }

    .city-info-panel {
        max-height: 80vh;
    }

    .selected-city {
        top: 10px;
    }
}

/* Profiles Group - Harita efektlerinden bağımsız, en üstte */
#profiles-group {
    position: relative;
    z-index: 1000;
    /* Harita efektlerinden bağımsız */
    transform-style: flat;
    isolation: isolate;
    /* Perspective efektlerinden etkilenmemesi için */
    transform: translateZ(0);
}

/* Snapchat-style Profile Markers - Şık Görünüm */
.snap-profile {
    cursor: pointer;
    /* transition kaldırıldı - profillerin yer değiştirmesini engellemek için */
    /* filter kaldırıldı - profillerin net görünmesi için */
    pointer-events: auto;
    /* Profillerin perspective efektlerinden etkilenmemesi için */
    transform: translateZ(0);
    will-change: auto;
    position: relative;
    z-index: 1001;
    /* Harita efektlerinden bağımsız */
    transform-style: flat;
    isolation: isolate;
}

.profile-click-area {
    cursor: pointer;
    pointer-events: auto;
    /* Sadece click area tıklanabilir, şehir tıklamalarını engelle */
}

.snap-profile:hover {
    /* transform: scale kaldırıldı - profillerin yer değiştirmesini engellemek için */
    /* filter kaldırıldı - profillerin net görünmesi için */
    z-index: 1002;
}

.profile-image {
    pointer-events: auto; /* Profil image tıklanabilir olmalı */
    cursor: pointer;
    /* Yüksek kalite için optimize edilmiş image-rendering */
    /* Önce tarayıcıya özel, sonra standart değerler */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: auto;
    /* Font smoothing - görsel kalitesi için */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Object fit - görseli yuvarlak içine tam oturt */
    object-fit: cover;
    border-radius: 50%;
    /* Daha canlı ve net görünüm için filter efektleri */
    filter: contrast(1.2) saturate(1.25) brightness(1.08);
    -webkit-filter: contrast(1.2) saturate(1.25) brightness(1.08);
    /* GPU hızlandırma ve kalite için */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    /* Yüksek kalite rendering için - GPU hızlandırma */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Smooth scaling ve anti-aliasing için */
    -webkit-perspective: 1000;
    perspective: 1000;
}

.profile-border {
    pointer-events: auto; /* Profil border tıklanabilir olmalı */
    cursor: pointer;
    /* filter kaldırıldı - profillerin net görünmesi için */
}

/* --- Mesaj Grubu Optimizasyonu --- */
.profile-message-group {
    /* Performans için GPU katmanı oluştur */
    will-change: transform, opacity;
    /* Tıklamaları arkaya geçir */
    pointer-events: none; 
    /* Geçişleri yumuşat */
    transition: opacity 0.2s ease-out;
}

/* --- Kutu Tasarımı (Glassmorphism + Netlik) --- */
.profile-message-box {
    /* Yarı saydam koyu arka plan (Modern) */
    fill: rgba(20, 20, 20, 0.90);
    /* Çok ince beyaz kenarlık (Netlik katar) */
    stroke: rgba(255, 255, 255, 0.2);
    /* Mobilde derinlik hissi için gölge */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    
    /* Vektör kenarlarını pürüzsüzleştir */
    shape-rendering: geometricPrecision;
}

/* --- Yeni SVG Mesaj Metni Stilleri (iOS Safari için Native SVG Text) --- */
.profile-message-text {
    /* SVG Text Özellikleri */
    fill: #ffffff; /* Yazı rengi beyaz */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 600; /* Kalın yazı mobilde daha net okunur */
    pointer-events: none; /* Tıklamayı arkaya geçir */
    
    /* Metin Render Kalitesi - Çok Önemli */
    text-rendering: geometricPrecision; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Gölge vererek okunabilirliği artır */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    
    /* iOS Safari'de titremeyi önler */
    transform: translateZ(0);
    user-select: none;
    -webkit-user-select: none;
}

/* Açık Tema Desteği */
@media (prefers-color-scheme: light) {
    .profile-message-box {
        fill: rgba(255, 255, 255, 0.95);
        stroke: rgba(0, 0, 0, 0.05);
    }
    .profile-message-text {
        fill: #ffffff; /* Koyu kutu üstünde yine beyaz kalsın */
    }
}

/* Yüksek Çözünürlüklü (Retina) Ekranlar İçin Keskinlik */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-message-box {
        shape-rendering: geometricPrecision; /* Kenarları pürüzsüzleştir */
    }
    .profile-message-text {
        text-rendering: geometricPrecision;
    }
}

/* Küçük Mobil Ekranlar İçin Mesaj Kutusu Optimizasyonları */
@media (max-width: 480px) {
    .profile-message-box {
        /* Mobilde gölgeyi biraz artırıp kutuyu öne çıkaralım */
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    }
    
    .profile-message-text {
        /* Mobilde daha kalın font kullanarak okunabilirliği artır */
        font-weight: 600;
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .province {
        stroke-width: 2;
    }

    .province:hover {
        /* Mobilde hover efekti yok - boş bırakıldı */
        stroke-width: 1;
    }

    .map-container {
        cursor: default;
    }

    .map-container.dragging {
        cursor: default;
    }
}

/* Add Profile Button */
.filter-toggle-icon {
    position: fixed;
    /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
    top: calc(env(safe-area-inset-top, 0px) + 52px + 16px);
    right: 68px; /* Zoom controls'un solunda (36px buton + 8px gap + 8px gap + 16px ekstra) */
    width: 36px;
    height: 36px;
    background: rgba(62, 207, 142, 0.15);
    border: 2px solid #3ECF8E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #3ECF8E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(62, 207, 142, 0.2);
}

.filter-toggle-icon svg {
    width: 16px;
    height: 16px;
}

.filter-toggle-icon:hover {
    transform: scale(1.1);
    background: rgba(62, 207, 142, 0.25);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(62, 207, 142, 0.3);
}

.filter-toggle-icon:active {
    transform: scale(0.95);
}

.filter-toggle-icon.active {
    background: #3ECF8E;
    color: #0a0a0a;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(62, 207, 142, 0.5);
}

.add-profile-btn {
    position: fixed;
    /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
    top: calc(env(safe-area-inset-top, 0px) + 52px + 16px);
    right: 112px; /* Filter toggle'un solunda (36px filter + 8px gap + 36px profil + 8px gap + 24px ekstra) */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid #3ECF8E;
    color: #3ECF8E;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(62, 207, 142, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
}

.add-profile-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(62, 207, 142, 0.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(62, 207, 142, 0.4);
}

.add-profile-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.plus-icon {
    line-height: 1;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Navbar (z-index: 9999) üstünde olmalı */
    z-index: 10000 !important;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.hidden {
    display: none;
}

/* Modal Content */
.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 20px;
    max-width: 420px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(62, 207, 142, 0.1);
    border: 1px solid rgba(62, 207, 142, 0.2);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Geri Butonu */
.back-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    /* Modal overlay (z-index: 10000) içinde olduğu için navbar'ın üstünde */
    z-index: 10001;
    padding: 0;
    font-size: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateX(-2px);
}

.back-btn:active {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.1);
}

.back-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Filtre Sidebar Geri Butonu */
.filter-back-btn {
    position: relative;
    top: auto;
    left: auto;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    flex-shrink: 0;
}

.filter-back-btn svg {
    width: 14px;
    height: 14px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    /* Modal overlay (z-index: 10000) içinde olduğu için navbar'ın üstünde */
    z-index: 10001;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.modal-close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #3ECF8E;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 0.3px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3ECF8E;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Photo Upload */
.photo-upload-area {
    position: relative;
    width: 100%;
    min-height: 140px;
    border: 2px dashed rgba(62, 207, 142, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

/* Profil Ayarları Modalı için daha küçük resim yükleme alanı */
#edit-profile-modal .photo-upload-area {
    min-height: 100px;
    max-height: 120px;
    padding: 12px;
}

#edit-profile-modal .upload-preview {
    gap: 6px;
}

#edit-profile-modal .upload-icon {
    font-size: 28px;
}

#edit-profile-modal .upload-text {
    font-size: 13px;
}

#edit-profile-modal #edit-current-photo {
    max-width: 80px;
    max-height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(62, 207, 142, 0.3);
}

.photo-upload-area:hover {
    border-color: #3ECF8E;
    background: rgba(255, 255, 255, 0.05);
}

.upload-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.upload-icon {
    font-size: 36px;
}

.upload-text {
    font-size: 14px;
    font-weight: 500;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hidden-input {
    display: none;
}

.crop-canvas {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    margin: 10px 0;
}

.crop-controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.crop-btn {
    flex: 1;
    padding: 10px 20px;
    background: rgba(62, 207, 142, 0.1);
    border: 1px solid #3ECF8E;
    border-radius: 8px;
    color: #3ECF8E;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.crop-btn:hover {
    background: rgba(62, 207, 142, 0.2);
    transform: translateY(-1px);
}

.crop-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.crop-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Gender Toggle (Modal içinde) */
.gender-toggle {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
}

.gender-toggle .gender-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    min-height: 80px;
}

.gender-toggle .gender-btn:hover {
    background: rgba(62, 207, 142, 0.1);
    border-color: rgba(62, 207, 142, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.gender-toggle .gender-btn.active {
    background: linear-gradient(135deg, rgba(62, 207, 142, 0.2) 0%, rgba(62, 207, 142, 0.1) 100%);
    border-color: #3ECF8E;
    color: #3ECF8E;
    box-shadow: 0 4px 15px rgba(62, 207, 142, 0.2);
}

.gender-toggle .gender-btn.active .gender-icon {
    stroke: #3ECF8E;
    transform: scale(1.1);
}

.gender-icon {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.gender-toggle .gender-btn:hover .gender-icon {
    transform: scale(1.05);
}

/* City Suggestions */
.city-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: 10px;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(62, 207, 142, 0.1);
}

.city-suggestion {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.city-suggestion:hover {
    background: rgba(62, 207, 142, 0.15);
    color: #3ECF8E;
    padding-left: 20px;
}

.city-suggestion:last-child {
    border-bottom: none;
}

.city-name {
    display: block;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #3ECF8E 0%, #2ebd7a 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(62, 207, 142, 0.2);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 207, 142, 0.3);
    background: linear-gradient(135deg, #3ECF8E 0%, #2db875 100%);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(62, 207, 142, 0.2);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

/* Profile Detail Modal */
.profile-detail {
    max-width: 400px;
}

.profile-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
}

.profile-detail-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3ECF8E;
    box-shadow: 0 0 20px rgba(62, 207, 142, 0.3);
}

.profile-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-detail-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-detail-name {
    font-size: 24px;
    font-weight: 700;
    color: #3ECF8E;
    margin: 0;
}


.profile-detail-city {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 8px;
}

.profile-detail-snapchat {
    font-size: 15px;
    color: rgba(62, 207, 142, 0.9);
    font-weight: 500;
    margin-top: 6px;
}

.profile-detail-district {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 6px;
}

.profile-detail-age {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 6px;
}

.profile-detail-body {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-detail-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.btn-homepage {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(62, 207, 142, 0.15) 0%, rgba(62, 207, 142, 0.1) 100%);
    border: 2px solid #3ECF8E;
    border-radius: 12px;
    color: #3ECF8E;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(62, 207, 142, 0.2);
    width: 100%;
    justify-content: center;
}

.btn-homepage:hover {
    background: linear-gradient(135deg, #3ECF8E 0%, #2ebd7a 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 207, 142, 0.4);
    border-color: #3ECF8E;
}

.btn-homepage:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(62, 207, 142, 0.3);
}

.btn-homepage svg {
    flex-shrink: 0;
}

.profile-detail-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Mesaj Bölümü Header */
.message-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Düzenle Butonu */
.btn-edit-message {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-edit-message:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.btn-edit-message svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

/* Günlük Mesaj Stilleri */
.daily-message-display {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.daily-message-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daily-message-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    resize: vertical;
    min-height: 50px;
    line-height: 1.5;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.daily-message-input:focus {
    outline: none;
    border-color: rgba(62, 207, 142, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
}

.daily-message-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Mesaj Aksiyon Butonları */
.message-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-save-message,
.btn-cancel-message {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
}

.btn-save-message {
    background: #3ECF8E;
    color: #000;
}

.btn-save-message:hover {
    background: #2ebd7a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(62, 207, 142, 0.3);
}

.btn-save-message:active {
    transform: translateY(0);
}

.btn-cancel-message {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cancel-message:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 14px;
    }
    
    .btn-edit-message {
        padding: 5px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .btn-edit-message svg {
        width: 12px;
        height: 12px;
    }
    
    .daily-message-display {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 36px;
    }
    
    .daily-message-input {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 45px;
    }
    
    .btn-save-message,
    .btn-cancel-message {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .message-actions {
        gap: 6px;
    }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.2s;
}

.social-link-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-link-item .social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
}

.social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.no-social {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 10px 0;
}

/* Profil Paylaş Butonu */
.share-btn {
    position: absolute;
    top: 12px;
    right: 48px; /* Kapat butonunun solunda */
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    /* Modal overlay (z-index: 10000) içinde olduğu için navbar'ın üstünde */
    z-index: 10001;
    padding: 0;
}

.share-btn svg {
    width: 14px;
    height: 14px;
}

.share-btn:hover {
    background: rgba(62, 207, 142, 0.2);
    color: #3ECF8E;
    border-color: rgba(62, 207, 142, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(62, 207, 142, 0.2);
}

.share-btn:active {
    transform: translateY(0);
}

/* Profil Şikayet Butonu */
.report-btn {
    position: absolute;
    top: 12px;
    left: 48px; /* Geri butonunun sağında */
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    color: rgba(255, 68, 68, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    /* Modal overlay (z-index: 10000) içinde olduğu için navbar'ın üstünde */
    z-index: 10001;
    padding: 0;
}

.report-btn svg {
    width: 14px;
    height: 14px;
}

.report-btn:hover {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.report-btn:active {
    transform: translateY(0);
}

/* Kopyalandı Bildirimi (Toast) */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #3ECF8E;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Custom Alert/Confirm Modal */
.custom-alert-modal {
    max-width: 400px;
    text-align: center;
    padding: 32px 24px;
}

.custom-alert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(62, 207, 142, 0.1);
    color: #3ECF8E;
}

.custom-alert-icon.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.custom-alert-icon.success {
    background: rgba(62, 207, 142, 0.1);
    color: #3ECF8E;
}

.custom-alert-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.custom-alert-icon svg {
    width: 32px;
    height: 32px;
}

.custom-alert-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.custom-alert-message {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.custom-alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.custom-alert-buttons button {
    min-width: 100px;
    padding: 12px 24px;
}

/* Mobile */
@media (max-width: 768px) {
    .custom-alert-modal {
        max-width: 90%;
        padding: 24px 20px;
    }
    
    .custom-alert-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .custom-alert-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .custom-alert-title {
        font-size: 18px;
    }
    
    .custom-alert-message {
        font-size: 14px;
    }
    
    .custom-alert-buttons {
        flex-direction: column;
    }
    
    .custom-alert-buttons button {
        width: 100%;
    }
}

/* Şikayet Modalı */
.text-red { 
    color: #ff4444; 
}

.report-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.report-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.radio-option input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-option span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    flex: 1;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.btn-danger {
    width: 100%;
    padding: 8px 14px;
    background: rgba(220, 53, 69, 0.15);
    color: rgba(255, 68, 68, 0.95);
    border: 1px solid rgba(255, 68, 68, 0.25);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(255, 68, 68, 0.4);
    color: #ff4444;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 68, 68, 0.15);
}

.btn-danger:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid #333;
    font-size: 11px;
    color: #666;
    text-align: center;
    background: #121212;
    flex-shrink: 0;
}

.sidebar-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-footer a:hover {
    color: #3ECF8E;
}

.copyright {
    margin-top: 8px;
    opacity: 0.5;
    font-size: 10px;
}

/* Legal Modal */
.legal-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.legal-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #3ECF8E;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(62, 207, 142, 0.2);
}

.legal-modal-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.legal-modal-body h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-modal-body p {
    margin-bottom: 16px;
}

.legal-modal-body ul,
.legal-modal-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-modal-body li {
    margin-bottom: 8px;
}

.legal-modal-body strong {
    color: #3ECF8E;
    font-weight: 600;
}


/* Social Input Styles */
.social-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .social-inputs {
        grid-template-columns: 1fr;
    }
}

.social-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.social-input-group:hover .social-icon {
    transform: scale(1.1);
}

/* Marka Renkleri */
.snapchat-icon {
    color: #FFFC00;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

.instagram-icon {
    color: #E1306C;
}

.x-icon {
    color: #000000;
}

.facebook-icon {
    color: #1877F2;
}

.pinterest-icon {
    color: #E60023;
}

.social-input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.social-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.social-input-group input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3ECF8E;
    box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
    outline: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-width: 100%;
        margin: 10px;
    }
    
    .add-profile-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
        /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 40px + 12px);
        right: 106px; /* Filter toggle'un solunda */
        bottom: auto;
    }
    
    .filter-toggle-icon {
        /* Header'ın altında başla (safe-area + navbar yüksekliği + boşluk) */
        top: calc(env(safe-area-inset-top, 0px) + 40px + 12px);
        right: 64px; /* Zoom controls'un solunda */
        bottom: auto;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .form-input {
        padding: 10px 14px;
        font-size: 14px;
    }
}

.hidden {
    display: none !important;
}

/* --- Filter Sidebar --- */
.filter-sidebar {
    width: 380px;
    min-width: 250px;
    max-width: 600px;
    background: #121212;
    border-left: 1px solid #333;
    display: flex;
    flex-direction: column;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    position: relative;
}

.filter-sidebar.collapsed {
    width: 0;
    min-width: 0;
    border-left: none;
    overflow: hidden;
}

.filter-resize-handle {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    cursor: ew-resize;
    background: transparent;
    z-index: 101;
    transition: background 0.2s;
}

.filter-resize-handle:hover {
    background: #3ECF8E;
}

.filter-resize-handle:active {
    background: #2db875;
}

/* Mobilde Alttan Açılan Panel (Bottom Sheet) */
@media (max-width: 768px) {
    .app-container > div:last-child {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        height: 45vh;
        min-height: 300px;
        max-height: 90vh;
        border-left: none;
        border-top: 1px solid #333;
        position: fixed;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        min-width: 100%;
        max-width: 100%;
        transition: height 0.2s ease;
    }
    
    .filter-sidebar.collapsed,
    .filter-sidebar:not(.expanded) {
        height: 0;
        min-height: 0;
        width: 100%;
        transform: translateY(100%);
        overflow: hidden;
    }
    
    .filter-sidebar.expanded {
        transform: translateY(0);
    }
    
    .filter-resize-handle {
        display: none;
    }
    
    .filter-resize-handle-vertical {
        display: block;
        top: 0;
        left: 0;
        right: 0;
        height: 30px;
        cursor: ns-resize;
        z-index: 103;
    }
    
    .filter-header {
        padding-top: 40px;
    }
    
    .map-container {
        height: 55vh;
    }
}

/* --- Filtre İçeriği --- */
.filter-sidebar .filter-header {
    padding: 6px 12px;
    padding-top: 40px; /* Vertical resize handle için alan */
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background: #1a1a1a;
    flex-shrink: 0;
    position: relative;
}

.filter-sidebar .filter-header h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.toggle-btn {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.2s;
}

.toggle-btn:hover {
    background: #2a2a2a;
    color: white;
}

.filter-content {
    padding: 8px 12px;
    background: #1a1a1a;
    overflow-y: auto;
    flex-shrink: 0;
    max-height: 35%;
}

.filter-row {
    margin-bottom: 6px;
}

.filter-row label {
    display: block;
    color: #888;
    font-size: 10px;
    margin-bottom: 3px;
}

/* Cinsiyet Butonları */
.gender-toggle-group {
    display: flex;
    background: #2a2a2a;
    border-radius: 6px;
    padding: 2px;
}

.gender-toggle-group .gender-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #aaa;
    padding: 4px 6px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 10px;
}

.gender-toggle-group .gender-btn.active {
    background: #3ECF8E;
    color: white;
    font-weight: 600;
}

.gender-toggle-group .gender-btn:hover {
    background: #333;
    color: white;
}

/* Inputlar */
.filter-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.input-group {
    position: relative;
}

.input-group input, .age-grid input {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #333;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    outline: none;
    font-size: 11px;
}

.input-group input:focus {
    border-color: #3ECF8E;
}

.age-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}

.separator {
    color: #666;
    font-weight: 500;
    font-size: 10px;
}

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.suggestions-dropdown .city-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #333;
    color: white;
    font-size: 13px;
}

.suggestions-dropdown .city-suggestion:last-child {
    border-bottom: none;
}

.suggestions-dropdown .city-suggestion:hover {
    background: rgba(62, 207, 142, 0.1);
}

/* Butonlar */
.filter-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.btn-primary {
    flex: 1;
    background: #3ECF8E;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #2db875;
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-text {
    background: transparent;
    color: #888;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: 10px;
    padding: 6px 10px;
}

.btn-text:hover {
    color: #aaa;
}

/* --- Sonuç Listesi (Grid) --- */
.filter-results-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 15px;
    background: #121212;
    min-height: 0;
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #3ECF8E #1a1a1a;
}

.filter-results-area::-webkit-scrollbar {
    width: 8px;
}

.filter-results-area::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.filter-results-area::-webkit-scrollbar-thumb {
    background: #3ECF8E;
    border-radius: 4px;
}

.filter-results-area::-webkit-scrollbar-thumb:hover {
    background: #2db875;
}

.results-header {
    color: #666;
    font-size: 11px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.count-badge {
    color: #3ECF8E;
    font-weight: bold;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding-bottom: 20px;
    min-height: min-content;
}

/* Sonuç Kartı (Yuvarlak Profil) */
.result-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #333;
}

.result-card:hover {
    transform: translateY(-2px);
    background: #252525;
    border-color: #3ECF8E;
}

.result-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 2px solid #3ECF8E;
    display: block;
}

.result-name {
    color: white;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.result-city {
    color: #888;
    font-size: 11px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.filter-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
}

/* Search Filter Button */
.search-filter-btn {
    width: 100%;
    padding: 10px 16px;
    background: #3ECF8E;
    border: none;
    border-radius: 8px;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
}

.search-filter-btn:hover {
    background: #2db875;
    transform: scale(1.02);
}

.search-filter-btn:active {
    transform: scale(0.98);
}

.search-filter-btn svg {
    stroke: #0F172A;
}


.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.filter-clear-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-clear-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
}


/* Vertical Resize Handle (Mobil için yukarı-aşağı sürükleme) */
.filter-resize-handle-vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    cursor: ns-resize;
    background: transparent;
    z-index: 102;
    transition: background 0.2s;
    display: none; /* Desktop'ta gizli */
}

.filter-resize-handle-vertical::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: background 0.2s;
}

.filter-resize-handle-vertical:hover::before,
.filter-resize-handle-vertical:active::before {
    background: #3ECF8E;
}

/* Responsive Filter */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .filter-sidebar {
        width: 100%;
        height: 45vh;
        min-height: 300px;
        max-height: 90vh;
        border-left: none;
        border-top: 1px solid #333;
        position: fixed;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        transition: height 0.2s ease;
    }
    
    .filter-resize-handle-vertical {
        display: block; /* Mobilde göster */
    }
    
    .filter-resize-handle {
        display: none; /* Mobilde yatay resize gizli */
    }
    
    .filter-toggle-icon {
        /* Alttan güvenli alan kadar + 80px yukarıda olsun (adres çubuğu payı) */
        bottom: calc(env(safe-area-inset-bottom, 0px) + 80px);
        right: 64px; /* Zoom controls'un solunda (38px buton + 8px gap + 8px gap + 10px ekstra) */
        top: auto;
        width: 34px;
        height: 34px;
    }
    
    .filter-toggle-icon svg {
        width: 15px;
        height: 15px;
    }
    
    .add-profile-btn {
        /* Alttan güvenli alan kadar + 80px yukarıda olsun (adres çubuğu payı) */
        bottom: calc(env(safe-area-inset-bottom, 0px) + 80px);
        right: 106px; /* Filter toggle'un solunda (34px filter + 8px gap + 38px profil + 8px gap + 18px ekstra) */
        top: auto;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    
    .map-container {
        height: 55vh;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

/* ==================== AUTH MODAL ==================== */
.auth-modal-content {
    max-width: 400px;
    text-align: center;
}

.auth-subtitle {
    color: #999;
    font-size: 14px;
    margin-bottom: 24px;
}

.auth-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-google:active {
    transform: scale(0.98);
}

.btn-google svg {
    width: 18px;
    height: 18px;
}

/* User Profile Dropdown */
.user-profile-link {
    padding: 4px !important;
    border-radius: 50%;
    border: 2px solid rgba(62, 207, 142, 0.3);
    transition: all 0.2s ease;
}

.user-profile-link:hover {
    border-color: #3ECF8E;
    background: rgba(62, 207, 142, 0.1);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* User Dropdown Menu */
.user-dropdown-menu {
    right: 0;
    left: auto;
    min-width: 200px;
    margin-top: 12px;
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

.user-dropdown-menu .dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.user-dropdown-menu .dropdown-item:hover svg {
    opacity: 1;
}

/* Edit Profile Modal */
.btn-danger {
    background: rgba(220, 53, 69, 0.15);
    color: rgba(255, 68, 68, 0.95);
    border: 1px solid rgba(255, 68, 68, 0.25);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(255, 68, 68, 0.4);
    color: #ff4444;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 68, 68, 0.15);
}

.modal-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .back-btn {
        top: 10px;
        left: 10px;
        width: 26px;
        height: 26px;
    }
    
    .back-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .filter-back-btn {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }
    
    .filter-back-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .auth-modal-content {
        max-width: 90%;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
    }
    
    .user-profile-link {
        padding: 3px !important;
    }
    
    .btn-dashboard {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary,
    .btn-danger {
        width: 100%;
    }
    
    /* Profil Ayarları Modal - Mobil Optimizasyonu */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        padding: 16px;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .modal-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .back-btn {
        top: 10px;
        left: 10px;
        width: 26px;
        height: 26px;
    }
    
    .back-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
    
    /* Share Button - Mobile */
    .share-btn {
        top: 10px;
        right: 44px;
        width: 26px;
        height: 26px;
    }
    
    .share-btn svg {
        width: 13px;
        height: 13px;
    }
    
    /* Report Button - Mobile */
    .report-btn {
        top: 10px;
        left: 44px;
        width: 26px;
        height: 26px;
    }
    
    .report-btn svg {
        width: 13px;
        height: 13px;
    }
    
    /* Homepage Button - Mobile */
    .btn-homepage {
        padding: 12px 24px;
        font-size: 14px;
        border-width: 2px;
    }
    
    .btn-homepage svg {
        width: 16px;
        height: 16px;
    }
    
    .modal-title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-right: 40px;
        letter-spacing: 0.2px;
    }
    
    .modal-body {
        gap: 10px;
    }
    
    .form-section {
        gap: 5px;
    }
    
    .form-label {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.1px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 13px;
        font-weight: 400;
        border-radius: 8px;
        min-height: 42px; /* Touch target */
    }
    
    /* Fotoğraf Yükleme Alanı */
    .photo-upload-area {
        min-height: 100px;
        padding: 10px;
    }
    
    /* Profil Ayarları Modalı - Mobil */
    #edit-profile-modal .photo-upload-area {
        min-height: 90px;
        max-height: 100px;
        padding: 10px;
    }
    
    #edit-profile-modal .upload-icon {
        font-size: 24px;
    }
    
    #edit-profile-modal .upload-text {
        font-size: 12px;
    }
    
    #edit-profile-modal #edit-current-photo {
        max-width: 70px;
        max-height: 70px;
    }
    
    .upload-icon {
        font-size: 28px;
    }
    
    .upload-text {
        font-size: 12px;
        font-weight: 400;
    }
    
    /* Cinsiyet Butonları */
    .gender-toggle-group {
        gap: 6px;
    }
    
    .gender-toggle {
        gap: 6px;
        padding: 2px;
    }
    
    .gender-toggle .gender-btn {
        padding: 10px 12px;
        font-size: 12px;
        font-weight: 400;
        min-height: 65px;
        gap: 5px;
    }
    
    .gender-icon {
        width: 24px;
        height: 24px;
    }
    
    .gender-btn {
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 400;
        min-height: 42px;
        border-radius: 8px;
    }
    
    /* Sosyal Medya Input'ları - Mobilde Tek Kolon */
    .social-inputs {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .social-input-group {
        margin-bottom: 0;
    }
    
    .social-label {
        font-size: 11px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Modal Actions */
    .modal-actions {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        min-height: 36px;
        border-radius: 6px;
    }
    
    .btn-danger {
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        min-height: 36px;
        margin-top: 8px;
        border-radius: 6px;
    }
    
    /* Crop Butonları */
    .crop-btn {
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 400;
        min-height: 40px;
    }
    
    /* Modal Close */
    .modal-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    /* Crop Controls */
    .crop-controls {
        gap: 8px;
        padding: 10px;
    }
    
    .crop-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-height: 95vh;
        padding: 10px;
        border-radius: 16px 16px 0 0;
    }
    
    .modal-title {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 8px;
        padding-right: 35px;
    }
    
    .modal-body {
        gap: 8px;
    }
    
    .form-section {
        gap: 4px;
    }
    
    .form-label {
        font-size: 10px;
        font-weight: 400;
    }
    
    .form-input {
        padding: 9px 11px;
        font-size: 12px;
        font-weight: 400;
        min-height: 40px;
    }
    
    .photo-upload-area {
        min-height: 90px;
        padding: 8px;
    }
    
    /* Profil Ayarları Modalı - Küçük Mobil */
    #edit-profile-modal .photo-upload-area {
        min-height: 80px;
        max-height: 90px;
        padding: 8px;
    }
    
    #edit-profile-modal .upload-icon {
        font-size: 22px;
    }
    
    #edit-profile-modal .upload-text {
        font-size: 11px;
    }
    
    #edit-profile-modal #edit-current-photo {
        max-width: 60px;
        max-height: 60px;
    }
    
    .upload-icon {
        font-size: 24px;
    }
    
    .upload-text {
        font-size: 11px;
        font-weight: 400;
    }
    
    .gender-toggle {
        gap: 5px;
        padding: 2px;
    }
    
    .gender-toggle .gender-btn {
        padding: 8px 10px;
        font-size: 11px;
        font-weight: 400;
        min-height: 60px;
        gap: 4px;
    }
    
    .gender-icon {
        width: 20px;
        height: 20px;
    }
    
    .gender-btn {
        padding: 7px 10px;
        font-size: 11px;
        font-weight: 400;
        min-height: 38px;
    }
    
    .social-label {
        font-size: 10px;
        font-weight: 400;
    }
    
    .social-icon {
        width: 14px;
        height: 14px;
    }
    
    .modal-actions {
        gap: 6px;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .btn-secondary,
    .btn-primary,
    .btn-danger {
        padding: 8px 12px;
        font-size: 11px;
        font-weight: 500;
        min-height: 34px;
        border-radius: 6px;
    }
    
    .crop-btn {
        padding: 7px 12px;
        font-size: 11px;
        font-weight: 400;
        min-height: 38px;
    }
    
    .modal-close {
        width: 44px;
        height: 44px;
        font-size: 28px;
        top: 10px;
        right: 10px;
        border-width: 2px;
    }
    
    /* Share Button - Small Mobile */
    .share-btn {
        top: 10px;
        right: 45px;
        width: 28px;
        height: 28px;
    }
    
    .share-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Homepage Button - Small Mobile */
    .btn-homepage {
        padding: 12px 20px;
        font-size: 13px;
        border-width: 2px;
    }
    
    .btn-homepage svg {
        width: 15px;
        height: 15px;
    }
    
    /* Toast Notification - Mobile */
    .toast-notification {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .social-label {
        font-size: 11px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
}



/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 20px 0;
    padding-bottom: 0;
    background-color: #0a0a0a;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
}

.hero-section.hidden {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(62, 207, 142, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    padding-bottom: 100px;
    text-align: center;
    animation: heroFadeIn 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(62, 207, 142, 0.1);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: 50px;
    color: #3ECF8E;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: heroSlideDown 0.6s ease-out 0.2s both;
}

@keyframes heroSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    animation: heroSlideUp 0.8s ease-out 0.3s both;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-line {
    display: block;
}

.hero-title-line.highlight {
    background: linear-gradient(to right, #3ECF8E, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.7s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.hero-feature svg {
    color: #3ECF8E;
    flex-shrink: 0;
}

/* Hero Roadmap - Nasıl Kullanılır */
.hero-roadmap {
    display: inline-block;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    padding: 24px 32px;
    border-radius: 16px;
    border-left: 4px solid #3ECF8E;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: heroFadeIn 1s ease-out 0.7s both;
    max-width: 500px;
    width: 100%;
}

.hero-roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-roadmap-item:last-child {
    margin-bottom: 0;
}

.hero-roadmap-number {
    color: #3ECF8E;
    font-weight: 700;
    font-size: 16px;
    margin-right: 12px;
    min-width: 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-roadmap-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Badge Updated */
.hero-badge-updated span {
    background: rgba(62, 207, 142, 0.15);
    color: #3ECF8E;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(62, 207, 142, 0.3);
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.9s both;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.9s both;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3ECF8E 0%, #2ebd7a 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(62, 207, 142, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(62, 207, 142, 0.4);
}

.cta-button.primary:active {
    transform: translateY(0);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-button.secondary:active {
    transform: translateY(0);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #3ECF8E 0%, #2ebd7a 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(62, 207, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(62, 207, 142, 0.4);
}

.hero-btn-primary:active {
    transform: translateY(0);
}

.hero-btn-primary.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(62, 207, 142, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(62, 207, 142, 0.6), 0 0 0 10px rgba(62, 207, 142, 0.1);
    }
}

.hero-btn-secondary {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-btn-secondary:active {
    transform: translateY(0);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 0;
    flex-wrap: wrap;
    opacity: 0.8;
    animation: heroFadeIn 1s ease-out 1.1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(62, 207, 142, 0.08);
    border: 1px solid rgba(62, 207, 142, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge svg {
    color: #3ECF8E;
    flex-shrink: 0;
}

.trust-badge:hover {
    background: rgba(62, 207, 142, 0.15);
    border-color: rgba(62, 207, 142, 0.4);
    transform: translateY(-2px);
}

/* Hero Section - Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px; /* Header için boşluk */
        padding-bottom: 40px;
        min-height: 100dvh; /* Dinamik viewport yüksekliği */
        height: 100dvh;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-badge-updated span {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .hero-roadmap {
        padding: 20px 24px;
        margin-bottom: 32px;
        max-width: 100%;
        border-left-width: 3px;
    }
    
    .hero-roadmap-item {
        margin-bottom: 10px;
    }
    
    .hero-roadmap-number {
        font-size: 14px;
        margin-right: 10px;
        min-width: 28px;
    }
    
    .hero-roadmap-text {
        font-size: 14px;
    }
    
    .hero-features {
        gap: 20px;
        margin-bottom: 36px;
    }
    
    .hero-feature {
        font-size: 12px;
    }
    
    .hero-feature svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-trust-badges {
        gap: 16px;
        margin-top: 20px;
    }
    
    .trust-item {
        font-size: 11px;
        gap: 5px;
    }
    
    .trust-item svg {
        width: 12px;
        height: 12px;
    }
    
    .trust-badge {
        padding: 8px 12px;
        font-size: 11px;
        gap: 6px;
    }
    
    .trust-badge svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-roadmap {
        padding: 16px 20px;
        margin-bottom: 28px;
        border-left-width: 3px;
        border-radius: 12px;
    }
    
    .hero-roadmap-item {
        margin-bottom: 8px;
    }
    
    .hero-roadmap-number {
        font-size: 13px;
        margin-right: 8px;
        min-width: 24px;
    }
    
    .hero-roadmap-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 13px;
        padding: 11px 20px;
    }
    
    .hero-trust-badges {
        gap: 12px;
        margin-top: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        font-size: 10px;
        gap: 4px;
    }
    
    .trust-item svg {
        width: 11px;
        height: 11px;
    }
    
    .trust-badge {
        padding: 6px 10px;
        font-size: 10px;
        gap: 5px;
    }
    
    .trust-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* ==================== PROFİL İSTATİSTİKLERİ ==================== */
.profile-stats {
    padding: 10px 12px;
    margin-bottom: 12px;
    background: rgba(62, 207, 142, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(62, 207, 142, 0.15);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.stat-icon {
    width: 16px;
    height: 16px;
    color: #3ECF8E;
    flex-shrink: 0;
}

.stat-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #3ECF8E;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Mobil için istatistik stilleri */
@media (max-width: 768px) {
    .profile-stats {
        padding: 8px 10px;
        margin-bottom: 10px;
    }
    
    .stats-container {
        gap: 6px;
    }
    
    .stat-icon {
        width: 14px;
        height: 14px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-value {
        font-size: 14px;
    }
}

/* ==================== ABONELİK PAKETLERİ ==================== */
.pricing-section {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pricing-title {
    font-size: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin: 0 0 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.3px;
}

.pricing-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0 0 36px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-card.featured {
    border: 1px solid rgba(62, 207, 142, 0.25);
    background: rgba(62, 207, 142, 0.03);
}

.pricing-card.featured:hover {
    border-color: rgba(62, 207, 142, 0.4);
    box-shadow: 0 4px 20px rgba(62, 207, 142, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pricing-badge.free {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.pricing-badge.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #b0b0b0;
}

.pricing-badge.gold {
    background: rgba(255, 215, 0, 0.15);
    color: #e6c200;
}

.pricing-name {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.2px;
}

.pricing-price {
    font-size: 28px;
    font-weight: 500;
    color: #3ECF8E;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.5px;
}

.pricing-price span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.feature-item.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon.check {
    color: #3ECF8E;
    stroke-width: 2;
}

.feature-item.disabled .feature-icon {
    color: rgba(255, 255, 255, 0.15);
}

.feature-item strong {
    color: #3ECF8E;
    font-weight: 500;
}

.feature-item.disabled strong {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pricing-btn.free-btn {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
}

.pricing-btn.silver-btn {
    background: rgba(192, 192, 192, 0.12);
    color: #b0b0b0;
    border: 1px solid rgba(192, 192, 192, 0.25);
}

.pricing-btn.silver-btn:hover {
    background: rgba(192, 192, 192, 0.18);
    border-color: rgba(192, 192, 192, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.15);
}

.pricing-btn.gold-btn {
    background: rgba(62, 207, 142, 0.15);
    color: #3ECF8E;
    border: 1px solid rgba(62, 207, 142, 0.3);
}

.pricing-btn.gold-btn:hover {
    background: rgba(62, 207, 142, 0.25);
    border-color: rgba(62, 207, 142, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(62, 207, 142, 0.2);
}

.pricing-btn:active {
    transform: translateY(0);
}

/* Mobil Responsive - Paketler yan yana kalacak */
@media (max-width: 968px) {
    .pricing-grid {
        gap: 12px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-2px);
    }
    
    .pricing-title {
        font-size: 22px;
    }
    
    .pricing-subtitle {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        margin-top: 40px;
        padding: 0 12px;
    }
    
    .pricing-grid {
        gap: 10px;
    }
    
    .pricing-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .pricing-subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .pricing-card {
        padding: 14px;
    }
    
    .pricing-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    
    .pricing-badge {
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 8px;
    }
    
    .pricing-name {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .pricing-price {
        font-size: 20px;
    }
    
    .pricing-price span {
        font-size: 11px;
    }
    
    .pricing-features {
        margin-bottom: 14px;
    }
    
    .feature-item {
        font-size: 11px;
        padding: 5px 0;
        gap: 7px;
    }
    
    .feature-icon {
        width: 13px;
        height: 13px;
        margin-top: 1px;
    }
    
    .pricing-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        margin-top: 32px;
        padding: 0 8px;
    }
    
    .pricing-grid {
        gap: 8px;
    }
    
    .pricing-title {
        font-size: 18px;
    }
    
    .pricing-subtitle {
        font-size: 11px;
        margin-bottom: 18px;
    }
    
    .pricing-card {
        padding: 12px;
    }
    
    .pricing-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .pricing-badge {
        font-size: 8px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }
    
    .pricing-name {
        font-size: 14px;
    }
    
    .pricing-price {
        font-size: 18px;
    }
    
    .pricing-price span {
        font-size: 10px;
    }
    
    .pricing-features {
        margin-bottom: 12px;
    }
    
    /* Eğer ekran çok küçükse butonları header altında tut (zaten header altında) */
    @media (max-height: 600px) {
        .zoom-controls,
        .filter-toggle-icon,
        .add-profile-btn {
            /* Header altında kalacak şekilde, sadece boşluğu azalt */
            top: calc(env(safe-area-inset-top, 0px) + 36px + 8px) !important;
            bottom: auto !important;
        }
    }
    
    .feature-item {
        font-size: 10px;
        padding: 4px 0;
        gap: 6px;
        line-height: 1.4;
    }
    
    .feature-icon {
        width: 12px;
        height: 12px;
    }
    
    .pricing-btn {
        padding: 7px 10px;
        font-size: 10px;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUpCookie 0.3s ease-out;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.cookie-consent-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* Cookie Settings Modal */
.cookie-settings-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-setting-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cookie-setting-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(62, 207, 142, 0.3);
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #3ECF8E;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-setting-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-toggle {
        align-self: flex-end;
    }
}
