﻿:root {
    --primary-yellow: #FFD200; /* Ilkadimlarim sarısı */
    --soft-blue: #E3F2FD;
    --soft-pink: #FCE4EC;
    --text-dark: #4A4A4A;
    --border-radius: 2rem;
    --input-bg: #F0F3F7;
    --text-main: #2C3E50;
    --primary: #8E44AD;
    --blue: #66a6ff;
    --pink: #ff65ce;
    --text-sub: #7F8C8D;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bg-light: #F9FAFB;
    --brand-dark: #1a1a1a;
    --brand-accent: #005a87;
    --soft-bg: #fdfdfd;
    --border-color: #eee;
    --hover-bg: #f8f9fa;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
}
.display-none{
    display:none!important;
}
/* --- Navigasyon --- */
.navbar {
    padding: 1rem 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-yellow) !important;
}

    .navbar-brand img {
        position: absolute;
        height: 60px;
        margin-top: -30px;
    }
.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 10px;
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 0;
    background-color: #FAF9F6;
    border-radius: 0 0 50px 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.search-box-modern {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

    .search-box-modern input {
        border: none;
        padding-left: 20px;
        font-size: 1.1rem;
    }

        .search-box-modern input:focus {
            outline: none;
            box-shadow: none;
        }

.btn-search {
    background: var(--primary-yellow);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
}

/* --- Popüler Listeler (Modern Pill Style) --- */
.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 4px;
        background: var(--primary-yellow);
        border-radius: 2px;
    }

.name-card-mini {
    background: #fff;
    border: 2px solid #F5F5F5;
    border-radius: 1.5rem;
    padding: 15px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

    .name-card-mini:hover {
        border-color: var(--primary-yellow);
        transform: scale(1.02);
    }

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* --- Oyun Kartları (Image + Content) --- */
.game-card-premium {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
}

    .game-card-premium:hover {
        transform: translateY(-10px);
    }

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.game-content {
    padding: 30px;
}

.btn-game {
    border: 2px solid var(--primary-yellow);
    background: transparent;
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.3s;
}

.game-card-premium:hover .btn-game {
    background: var(--primary-yellow);
    color: #fff;
}

/* --- Footer --- */
footer {
    background: #F8F9FA;
    padding: 80px 0 30px;
    margin-top: 100px;
}


/* --- Tab System --- */
.nav-nomi {
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    display: inline-flex;
    width: 100%;
    max-width: 600px;
}

    .nav-nomi .nav-link {
        border-radius: 50px;
        padding: 12px 25px;
        font-weight: 700;
        color: #888;
        border: none;
        flex: 1;
        transition: 0.3s;
    }

        .nav-nomi .nav-link.active {
            background-color: var(--primary-yellow) !important;
            color: var(--dark) !important;
            box-shadow: 0 4px 12px rgba(255, 210, 0, 0.3);
        }

/* --- Cards & Inputs --- */
.tab-content-card {
    background: #fff;
    border-radius: 2.5rem;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    margin-top: 30px;
}

.search-lg {
    height: 70px;
    border-radius: 50px;
    padding: 0 30px;
    font-size: 1.2rem;
    border: 2px solid #f0f0f0;
    background: #fafafa;
}

    .search-lg:focus {
        border-color: var(--primary-yellow);
        box-shadow: none;
        background: #fff;
    }

.search-lg2 {
    height: 50px;
}

/* --- List Item Style --- */
.list-card-v3 {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 1.25rem;
    padding: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    height: 100%;
}

    .list-card-v3:hover {
        border-color: var(--primary-yellow);
        transform: scale(1.02);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.list-img-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--soft-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.list-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 2px;
}

.list-meta {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
}

.btn-action {
    height: 70px;
    border-radius: 50px;
    padding: 0 40px;
    font-weight: 700;
    background: var(--primary-yellow);
    border: none;
    transition: 0.3s;
}

    .btn-action:hover {
        /*transform: translateY(-3px);*/
        background: var(--primary-yellow) !important;
        box-shadow: 0 10px 20px rgba(255, 210, 0, 0.2);
        border-color: var(--bs-btn-border-color);
    }

/* --- Trending List --- */
.trend-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    transition: 0.2s;
    border-bottom: 1px solid #f8f8f8;
}

    .trend-item:hover {
        background: var(--soft-bg);
    }

.trend-rank {
    font-weight: 800;
    font-size: 1.2rem;
    color: #ddd;
    width: 40px;
}
/* Özel Liste Kartları */
.special-list-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    height: 150px;
    transition: filter 0.8s ease-in-out;
    display:block;
}

    .special-list-card:hover {
        filter: brightness(68%);
    }

    .special-list-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

.special-list-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    color: white;
    font-weight: bold;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
 /* CHECKBOX (TAG STYLE) - Detaylı Arama İçin */
        .checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
        .checkbox-group input[type="checkbox"] { display: none; }
        .checkbox-group label {
            cursor: pointer;
            padding: 8px 16px;
            background: var(--input-bg);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-sub);
            transition: 0.3s;
            border: 1px solid transparent;
        }
        .checkbox-group input[type="checkbox"]:checked + label {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 10px rgba(78, 205, 196, 0.4);
        }
.form-select {
    border: 2px solid #f0f0f0;
    background-color: #fafafa;
    border-radius: 50px;
    height: 50px;
}
/* Checkbox Tasarımı */
.origin-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.btn-check:checked + .btn-outline-secondary {
    background-color: #66a6ff;
    border-color: #66a6ff;
    color: white;
}

.btn-outline-secondary {
    border-radius: 20px;
    border-color: #ddd;
    color: #666;
}
/* Haftanın Popülerleri */
.trend-card {
    background: white;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    /* transition: all 0.3s; */
    margin-bottom: 20px;
    overflow: hidden;
}
        
.trend-header-boy {background: var(--blue);color: white;padding: 15px;}
.trend-header-girl { background: var(--pink); color: white; padding: 15px; }
.trend-header { padding: 15px; }

.name-item {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration:none!important;
}
    .name-item h5, .name-item .name-rank {
        color: var(--brand-accent);
    }
    .name-item .interaction-container {
        margin-left: 1.2rem !important;
    }    
.name-item:last-child { border-bottom: none; }
.name-rank { font-weight: 800; opacity: 0.5; margin-right: 15px; font-size: 1.2rem;min-width:10px; }
.name-stats span { font-size: 0.8rem; color: #aaa; margin-left: 10px; }
/* Stats & Interaction */
.interaction-btn {
    background: transparent;
    border: none;
    color: var(--text-sub);
    font-size: 0.85rem;
    margin-right: 15px;
    transition: 0.2s;
}
.interaction-btn:hover { transform: scale(1.1); }
.interaction-btn.like:hover { color: #2ecc71; }
.interaction-btn.dislike:hover { color: #e74c3c; }
.interaction-btn.fav:hover { color: #f1c40f; }
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.az-nav-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 0;
    -ms-overflow-style: none; /* IE ve Edge için scrollbar gizleme */
    scrollbar-width: none; /* Firefox için scrollbar gizleme */
    text-align: center;
    cursor: grab;
}
    .az-nav-container:active {
        cursor: grabbing; /* Tıklayıp tutunca kapalı el (tutma) simgesi çıkar */
    }
    /* Chrome, Safari ve Opera için scrollbar'ı tamamen gizleme */
    .az-nav-container::-webkit-scrollbar {
        display: none;
    }
 .az-nav-container::-webkit-scrollbar { display: none; }
.letter-btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--text-dark);
    margin-right: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.letter-btn:hover, .letter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #fff;
}
/* --- Filters Sidebar --- */
.filter-card {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    padding: 25px;
}

.form-check-input:checked {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}
/* --- Name Card --- */
.name-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
    position: relative;
}
.name-card:hover {
   /* transform: translateY(-5px);*/
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gender-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.dot-pink { background-color: #FF4081; box-shadow: 0 0 5px rgba(255, 64, 129, 0.4); }
.dot-blue { background-color: #448AFF; box-shadow: 0 0 5px rgba(68, 138, 255, 0.4); }
.dot-unisex { background: linear-gradient(90deg, #FF4081 50%, #448AFF 50%); }

.btn-fav {
    position: absolute;
    top: 15px; right: 15px;
    color: #ddd;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    transition: 0.2s;
}
.btn-fav:hover, .btn-fav.active { color: #ff5252; }
.footer-logo img {
    width: 130px;
    margin-bottom: 10px;
}
/* --- Hero Search Area --- */
.dictionary-hero {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.search-wrapper {
    position: relative;
}
.search-input {
    height: 60px;
    border-radius: 50px;
    padding-left: 50px;
    border: 2px solid #eee;
    background: #fdfdfd;
    font-size: 1.1rem;
    transition: 0.3s;
}
.search-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 5px rgba(255, 210, 0, 0.1);
    outline: none;
}
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}
/* --- Hero Search Area --- */
.dictionary-hero {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.search-wrapper {
    position: relative;
}
.search-input {
    height: 60px;
    border-radius: 50px;
    padding-left: 50px;
    border: 2px solid #eee;
    background: #fdfdfd;
    font-size: 1.1rem;
    transition: 0.3s;
}
.search-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 5px rgba(255, 210, 0, 0.1);
    outline: none;
}
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}
.name-list{

}
.name-list .interaction-container{
    /*position: absolute;*/
    z-index: 1;
}
.page-item .page-link {
    width: 36px;
    text-align: center;
}
/* Detay Sayfası Özel CSS */
.name-hero-badge {
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.badge-girl {
    background: var(--soft-pink);
    color: #d63384;
}

.badge-boy {
    background: var(--soft-blue);
    color: #0d6efd;
}

.big-name-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
/* Interaction Buttons */
.vote-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Sığmayan butonları alt satıra atar */
    gap: 15px;
    margin-top: 25px;
}

    .vote-container .btn-action {
        height: 40px;
    }

.btn-interaction {
    border: 1px solid var(--border-color);
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-interaction:hover { background: var(--hover-bg); border-color: #ccc; }
.btn-interaction i { font-size: 1.2rem; }
.count { font-weight: 700; color: var(--brand-dark); }
.section-label {
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}
/* Table Styles */
.name-table { width: 100%; border-collapse: collapse; margin-top: 20px; border: 1px solid var(--border-color);background:#fff; }
.name-table th { background: #fcfcfc; padding: 15px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #777; border-bottom: 2px solid var(--border-color); }
.name-table td { padding: 15px; border-bottom: 1px solid var(--border-color); vertical-align: middle; }
.name-table tr:hover { background-color: var(--hover-bg); }
.table-name-link { color: var(--brand-accent); font-weight: 600; text-decoration: none; }
/* Ünlü Kişiler Kart Tasarımı */
.famous-card {
    background: #fff;
    border: 1px solid #f8f9fa; /* Çok hafif sınır */
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .famous-card:hover {
        transform: translateY(-5px); /* Yukarı kalkma efekti */
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: var(--soft-blue); /* Hover'da hafif mavi sınır */
    }

.famous-img-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    position: relative;
}

.famous-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi bozulmadan kırpar */
    border-radius: 50%; /* Tam yuvarlak */
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Dekoratif rozet (isteğe bağlı ikon) */
.famous-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-yellow);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid #fff;
}

.famous-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.famous-job {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}
/* --- Yorum Alanı Özel Tasarım --- */

/* Form Inputları için Yumuşak Stil */
.form-control-soft {
    background-color: var(--input-bg); /* Mevcut gri fon */
    border: 2px solid transparent;
    border-radius: 50px; /* Hap şekli */
    padding: 15px 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control-soft:focus {
    background-color: #fff;
    border-color: var(--primary-yellow); /* Odaklanınca sarı çerçeve */
    box-shadow: 0 5px 15px rgba(255, 210, 0, 0.1);
}

/* Textarea için özel ayar (daha az yuvarlak köşe ama yumuşak) */
textarea.form-control-soft {
    border-radius: 25px;
    resize: none; /* Boyutlandırmayı kapat */
}

/* Yorum Listesi Elemanları */
.comment-item {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.avatar-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Rastgele renkler için sınıflar */
.avatar-purple { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.avatar-blue { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.avatar-orange { background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%); }

.comment-header {
    margin-bottom: 8px;
}

.comment-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.comment-date {
    font-size: 0.8rem;
    color: #aaa;
    margin-left: 10px;
    font-weight: 500;
}

.comment-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-reply {
    font-size: 0.8rem;
    color: var(--text-sub);
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
    transition: 0.2s;
}

.btn-reply:hover {
    color: var(--primary-yellow);
}

/* Admin Yanıtı (İçeri girintili) */
.admin-reply {
    margin-left: 70px;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-yellow);
    margin-top: 15px;
}
.comment-item .interaction-btn {
    padding-left: 0px;
    font-weight: 600;
}
.comment-item .interaction-btn span {
    padding-left: 0px;
    font-weight: normal;
}
/* --- Yorum Aksiyon Butonları --- */

.comment-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* Butonlar arası boşluk */
    margin-top: 10px;
}

/* Oylama Butonları Genel Stil */
.btn-vote {
    background: transparent;
    border: 1px solid #eee;
    border-radius: 20px; /* Hap şekli */
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px; /* İkon ve sayı arası boşluk */
    font-weight: 600;
}

/* Beğen Butonu Efektleri */
.btn-vote.like:hover, 
.btn-vote.like.active {
    color: #2ecc71; /* Yeşil */
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.08);
}

/* Beğenme Butonu Efektleri */
.btn-vote.dislike:hover, 
.btn-vote.dislike.active {
    color: #ff6b6b; /* Kırmızı */
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.08);
}

/* Ayırıcı Çizgi (Yanıtla ile oylar arasında) */
.action-divider {
    color: #eee;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Yanıtla butonunu biraz revize edelim (uyum için) */
.btn-reply {
    font-size: 0.85rem;
    color: var(--text-sub);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    padding: 4px 0; /* Hizalama için */
}

/* Autocomplete Styles */
.autocomplete-container {
    position: relative;
}

.autocomplete-results {
    /*position: absolute;*/
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

    .autocomplete-item:last-child {
        border-bottom: none;
    }

    .autocomplete-item:hover {
        background-color: #f8f9fa;
        color: #764ba2;
    }
.loading-spinner {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #764ba2;
}
.cursor-pointer{
    cursor:pointer!important;
}
.disabled-div {
    pointer-events: none;
    user-select: none;
    cursor: not-allowed;
}