:root {
    /* Ana renkler güncelleniyor */
    --primary-color: #6B4EE6;         /* Ana mor renk */
    --primary-dark: #5740B8;          /* Koyu mor */
    --primary-light: #8A71F0;         /* Açık mor */
    --primary-gradient: linear-gradient(135deg, #6B4EE6, #8A71F0); /* Gradient efekt */
    
    /* Arka plan renkleri */
    --bg-dark: #1A1B1E;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    
    /* Metin renkleri */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dark: #2C2D2F;
    --text-light: #666666;
    
    /* Diğer renkler */
    --border-color: #e0e0e0;
    --hover-color: rgba(112, 70, 232, 0.1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Ölçüler */
    --nav-height: 65px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    padding-top: 0;
}

/* Navbar Styles güncelleniyor */
.navbar {
    height: var(--nav-height);
    background: var(--primary-gradient);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    height: 100%;
}

.navbar-collapse {
    height: 100%;
}

.navbar-brand {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--text-primary);
}

.navbar-brand i {
    color: var(--text-primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Arama kutusu stilleri */
.search-box {
    position: relative;
    width: 500px;
}

.search-box .search-form {
    width: 100%;
    margin: 0;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.search-box .search-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-box .search-button:hover {
    color: var(--text-primary);
}

/* Scroll butonları */
.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100; /* Z-index arttırıldı */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.category-scroll-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-scroll-btn.prev {
    left: 0.5rem;
}

.category-scroll-btn.next {
    right: 0.5rem;
}

.category-scroll-btn i {
    font-size: 1rem;
}

/* Categories düzeltiliyor */
.categories-wrapper {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10; /* Categories wrapper için z-index */
}

.categories {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0.5rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    position: relative;
    align-items: center;
}

.categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için */
}

.categories-wrapper .container {
    display: flex;
    justify-content: center;
    position: relative; /* Container için position relative */
}

/* Kategori öğeleri */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    white-space: nowrap;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    margin-right: 1rem; /* Öğeler arasında sabit boşluk */
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.category-item span {
    font-size: 0.9rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-dark);
}

.category-item:hover .category-icon {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-item:hover .category-icon i {
    color: white;
}

/* Question Card Styles */
.question-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* User info alanı */
.question-card .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.question-card .user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
}

.question-card .user-avatar i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.question-card .user-details {
    flex: 1;
}

.question-card .user-details h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question-card .user-details small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Soru içeriği */
.question-card .question-content {
    margin-bottom: 1rem;
}

.question-card .question-content h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.question-card .question-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.question-card .question-content h2 a:hover {
    color: var(--primary-color);
}

.question-card .question-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Soru alt bilgileri */
.question-card .question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-card .question-stats {
    display: flex;
    gap: 1rem;
}

.question-card .question-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Profil sekmelerindeki soru listesi */
.question-list {
    margin-top: 1rem;
}

/* Empty State Stilleri */
.empty-state {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed #e2e8f0;
    margin: 2rem 0;
}

.empty-state i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state .btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border: none;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.empty-state .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

.empty-state .btn i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    background: none;
    -webkit-text-fill-color: white;
    display: inline;
}

/* User info alanı güncelleniyor */
.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
}

.user-avatar i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.user-details {
    flex: 1;
}

.user-details h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.post-time {
    color: var(--text-light);
}

.post-time small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Hover efektleri */
.question-card:hover .user-avatar {
    transform: scale(1.05);
    background: var(--hover-color);
}

.question-card:hover .user-avatar i {
    opacity: 1;
}

/* Badge sınıfını tamamen siliyoruz */
.badge {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Onay bekleyen badge */
.badge.bg-warning {
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: #997404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Tab içindeki onay bekleyen sayısı badge'i */
.nav-link .badge.bg-warning {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    margin-left: 0.5rem;
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: #997404;
    border: 1px solid rgba(255, 193, 7, 0.3);
    vertical-align: middle;
}

/* Soru kartındaki onay bekliyor badge'i */
.question-card .badge.bg-warning {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 500;
}

/* Badge hover efekti */
.badge.bg-warning:hover {
    background-color: rgba(255, 193, 7, 0.25) !important;
}

/* Pending soru kartı stili */
.question-card.pending {
    background-color: rgba(255, 193, 7, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.question-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.question-actions .btn-light {
    background-color: var(--bg-light);
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question-actions .btn-light:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
}

.question-actions .stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Bottom Navigation güncelleniyor */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-lg);
    padding: 0.1rem 0;
    z-index: 1000;
    height: 65px;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    position: relative;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
    background: none;
    border: none;
}

/* Yeni soru butonu güncelleniyor */
.bottom-nav-item.new-question {
    margin-top: 0;
}

.bottom-nav-item.new-question i {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(107, 78, 230, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.bottom-nav-item.new-question i::before {
    position: relative;
    z-index: 2;
}

.bottom-nav-item.new-question i::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border-radius: 50%;
    z-index: 1;
}

.bottom-nav-item.new-question:hover i {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(107, 78, 230, 0.4);
}

.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.bottom-nav-item.active {
    color: var(--text-primary);
}

.bottom-nav-item:not(.new-question):hover {
    color: var(--text-primary);
}

/* Önceki visibility: hidden kaldırıldı */
.bottom-nav-items > :nth-child(3) {
    visibility: visible;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 90px;
}

/* Soru Sor Kartı */
.ask-question-card {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.ask-question-card h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
}

.ask-question-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.ask-question-card .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ask-question-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Popüler Kullanıcılar */
.popular-users-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.popular-users-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.user-grid-item {
    text-align: center;
}

.user-grid-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.user-grid-avatar i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.user-grid-item:hover .user-grid-avatar {
    transform: translateY(-3px);
}

.expert-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-grid-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-grid-name:hover {
    color: var(--primary-color);
}

.user-grid-stat {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sidebar {
        margin-top: 2rem;
        position: static;
    }
}

/* Mobile Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 1rem 0;
    z-index: 1100;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-overlay .search-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-overlay .close-search {
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.search-overlay input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    outline: none;
}

.search-overlay input::placeholder {
    color: var(--text-light);
}

/* User avatar güncelleniyor */
.user-avatar i {
    font-size: 2.5rem;
    color: var(--light-text);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .navbar {
        background: var(--primary-gradient);
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand i {
        font-size: 1.5rem;
    }

    .mobile-icons {
        gap: 0.6rem;
    }

    .search-box {
        width: 100%;
        margin: 1rem 0;
    }

    .categories {
        gap: 1rem;
        padding: 0.5rem 0.2rem;
    }

    .category-icon {
        width: 48px;
        height: 48px;
    }

    .category-item span {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .questions-wrapper {
        margin-bottom: 70px;
    }

    .search-box input {
        background-color: var(--bg-light);
        color: var(--text-dark);
    }

    .mobile-icons .btn {
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
    }
    
    .mobile-icons .btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .navbar-toggler {
        color: var(--text-primary);
        border-color: rgba(255, 255, 255, 0.2);
        padding: 0.4rem 0.6rem;
    }

    .navbar-toggler i {
        font-size: 1.3rem;
    }

    .footer {
        margin-bottom: 65px; /* Bottom nav için margin sadece mobilde */
    }
}

/* Navbar scroll animasyonu */
.navbar.scroll-down,
.navbar.scroll-up {
    transform: none;
}

.nav-right .btn-light {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;

}

.nav-right .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-right .btn-primary {
    background-color: var(--text-primary);
    color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-right .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.mobile-icons .btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-icons .btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.mobile-icons i {
    font-size: 1.2rem;
}

/* Tab tasarımını güncelliyoruz */
.nav-tabs-wrapper {
    border-bottom: 1px solid var(--border-color);
    background: white;
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
}

.nav-tabs {
    border: none;
    gap: 0.5rem;
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tabs .nav-link i {
    font-size: 1.2rem;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: var(--hover-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: var(--hover-color);
    position: relative;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.nav-tabs .nav-link .tab-count {
    font-size: 0.8rem;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
}

/* Tab içerik alanı */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0 0.5rem;
    margin-top: 25px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-tagline {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top:10px
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-nav .separator {
    color: var(--border-color);
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 5rem; /* Bottom nav için extra padding */
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-nav {
        padding: 0 1rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
    
    .footer-social {
        margin: 0.25rem 0;
    }
    
    .footer-social i {
        font-size: 1.1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Soru kartlarındaki link stilleri */
.question-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.question-content h2 a:hover {
    color: var(--primary-color);
}

.user-details h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.user-details h6 a:hover {
    color: var(--primary-color);
}

.user-avatar a {
    text-decoration: none;
    color: inherit;
}

.user-avatar a:hover {
    color: var(--primary-color);
}

/* Soru Detay Sayfası Stilleri */
.question-detail {
    border: none;
    box-shadow: var(--shadow-sm);
}

.question-detail .question-content h1 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.question-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.question-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    background: var(--hover-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

.question-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.answer-form textarea {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    resize: vertical;
    transition: all 0.3s ease;
}

.answer-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--hover-color);
}

.verified-badge {
    color: var(--primary-color);
    font-size: 1rem;
    margin-left: 0.3rem;
}

.answer-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-content {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .question-detail {
        padding: 1rem;
    }
    
    .question-stats {
        flex-wrap: wrap;
    }
}

/* Auth Pages */
.auth-container {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--bg-light); /* Gradient yerine düz renk */
}

.auth-box {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-sm); /* Gölgeyi hafifletelim */
    border: 1px solid var(--border-color); /* İnce bir çerçeve ekleyelim */
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.auth-form .input-group-text {
    background: none;
    color: var(--text-light);
}

.auth-form .form-control {
    padding: 0.75rem 1rem;
    border-color: var(--border-color);
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--hover-color);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-login {
    margin-bottom: 1.5rem;
}

.social-login .btn {
    padding: 0.75rem 1rem;
}

.auth-footer {
    text-align: center;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.password-strength {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-box {
        padding: 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .social-login .btn {
        font-size: 0.9rem;
    }
}

/* Profile Page */
.profile-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

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

.default-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hover-color);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--primary-color);
}

.profile-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profile-bio {
    color: var(--text-light);
    margin-bottom: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.info-item i {
    color: var(--primary-color);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Answer Card */
.answer-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.answer-header {
    margin-bottom: 1rem;
}

.question-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.question-link:hover {
    color: var(--primary-color);
}

.answer-date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.answer-content {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.answer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.answer-stats {
    display: flex;
    gap: 1rem;
}

.answer-stats i {
    margin-right: 0.25rem;
}

/* 404 Page */
.error-page {
    padding: 3rem 0;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.error-page h2 {
    color: var(--text-dark);
}

.error-page p {
    max-width: 400px;
    margin: 0 auto;
}

.error-page .btn {
    padding: 0.75rem 2rem;
}

.error-page .btn i {
    margin-right: 0.5rem;
}

/* Kategori Sayfası Stilleri */
.category-header {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    opacity: 0.2;
}

.category-header h1 {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    letter-spacing: -0.5px;
}

.category-header p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .category-header {
        padding: 2rem 1.5rem;
    }
    
    .category-header h1 {
        font-size: 1.75rem;
    }
    
    .category-header p {
        font-size: 1rem;
    }
}

/* Statik Sayfa Stilleri */
.static-page {
    padding: 2rem 0;
}

.static-page h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
}

.static-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 2px;
}

.static-page h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
}

.static-page p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.static-page ul {
    margin: 1.5rem 0 2rem;
    padding-left: 1.25rem;
}

.static-page ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.static-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.static-page .meta-info {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.static-page .section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.static-page .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .static-page {
        padding: 1rem 0;
    }
    
    .static-page h1 {
        font-size: 2rem;
    }
    
    .static-page h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .static-page p, 
    .static-page ul li {
        font-size: 1rem;
    }

    .static-page .section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "") !important;
}

.breadcrumb-item+.breadcrumb-item {padding-left: 0 !important;}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-item i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.breadcrumb-item:first-child a {
    font-size: 1rem;
}

.breadcrumb-item:first-child span {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumb-item {
        max-width: 200px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    background: var(--bg-card);
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.03;
    transform: scale(2);
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #6366f1;
    border-radius: 50%;
    opacity: 0.03;
    transform: scale(2);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 2px;
}

.contact-hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 2rem auto 0;
}

.contact-section {
    padding: 0 0 5rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    margin: 0;
    color: var(--text-light);
}

.info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-floating > .form-control {
    border-color: var(--border-color);
}

.form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.alert {
    border: none;
    border-radius: var(--border-radius-lg);
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
}

.alert i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 0 0 3rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Popüler Kullanıcılar */
.popular-users-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.user-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bs-gray-200);
}

.user-item:last-child {
    border-bottom: none;
}

.user-avatar {
    margin-right: 12px;
}

.user-info h6 {
    margin: 0;
    font-size: 14px;
}

.user-stats {
    font-size: 12px;
    color: var(--bs-gray-600);
    margin-top: 4px;
}

.user-stats span:not(:last-child):after {
    content: "•";
    margin: 0 4px;
}

/* Sidebar Başlık Stili */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.sidebar-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sidebar-header a {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.sidebar-header a:hover {
    opacity: 0.8;
    transform: translateX(2px);
}

/* Popüler Sorular Kartı */
.popular-questions-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.popular-question-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-question-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-question-item:first-child {
    padding-top: 0;
}

.popular-question-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.popular-question-link:hover {
    color: var(--primary-color);
}

.popular-question-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.popular-question-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popular-question-stats i {
    font-size: 0.8rem;
}

/* Navbar Dropdown Styles */
.navbar .dropdown-menu {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: white;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    right: 0;
    left: auto !important;
}

.navbar .dropdown-item {
    padding: 0.7rem 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar .dropdown-item i {
    font-size: 1.1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: var(--hover-color);
    color: var(--primary-color);
}

.navbar .dropdown-item:hover i {
    color: var(--primary-color);
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

/* Profil dropdown özel stil */
.navbar .profile-dropdown {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.navbar .profile-dropdown .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .profile-dropdown .avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar .profile-dropdown .info {
    flex: 1;
}

.navbar .profile-dropdown .name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.navbar .profile-dropdown .email {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Account Page Styles */
.account-wrapper {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.account-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.account-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.account-card .form-label {
    font-weight: 500;
    color: var(--text-dark);
}

.account-card .form-control {
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
}

.account-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.account-card .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.account-card .btn i {
    font-size: 1.1rem;
}

/* Popüler Sorular Sayfası Stilleri */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-header .lead {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.filter-options {
    margin-bottom: 1.5rem;
}

.filter-options .btn-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-options .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
}

.filter-options .btn i {
    font-size: 1rem;
}

.filter-options .btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .filter-options .btn-group {
        flex-direction: column;
    }
    
    .filter-options .btn {
        width: 100%;
        border-radius: 15px !important; /* Mobil cihazlarda daha yuvarlak köşeler */
    }
}


/* Sayfalama Stilleri */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e5e5e5;
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
    border-color: #ddd;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    pointer-events: none;
    background-color: #f5f5f5;
}

/* Popüler Kullanıcılar Sayfası Stilleri */
.user-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--primary-color);
}

.user-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.user-card .user-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--hover-color);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 30px;
    margin-top: 0.25rem;
}

.user-card .user-info {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.user-card .user-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    width: 100%;
}

.user-card .user-name a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.user-card .user-name a:hover {
    color: var(--primary-color);
}

.user-card .verified-badge {
    color: var(--primary-color);
    font-size: 0.9rem;
    order: 1;
}

.user-card .user-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    justify-content: flex-start;
    width: 100%;
}

.user-card .user-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: var(--hover-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.user-card .user-stats span i {
    color: var(--primary-color);
}

.user-card .user-bio {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    text-align: left;
}

@media (max-width: 992px) {
    .user-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .user-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        align-items: center;
    }
    
    .user-card .user-avatar {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .user-card .user-info {
        align-items: center;
        text-align: center;
    }
    
    .user-card .user-name a {
        justify-content: center;
    }
    
    .user-card .user-stats {
        justify-content: center;
    }
    
    .user-card .user-bio {
        text-align: center;
    }
}

/* Dropdown menüsünün sola açılması için */
.dropdown-menu {
    right: 0;
    left: auto !important;
}

/* Mobil görünümde normal davranması için */
@media (max-width: 768px) {
    .dropdown-menu {
        right: auto;
        left: 0 !important;
    }
}

/* Sadece kullanıcı dropdown menüsünün sola açılması için */
.user-dropdown .dropdown-menu {
    right: 0;
    left: auto !important;
}

/* Modal Stilleri */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, rgba(107, 78, 230, 0.05) 0%, rgba(107, 78, 230, 0.1) 100%);
    border-bottom: 1px solid rgba(107, 78, 230, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.25rem 2rem;
    background: rgba(107, 78, 230, 0.03);
    border-top: 1px solid rgba(107, 78, 230, 0.1);
}

/* Form Stilleri */
.modal .form-label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.modal .form-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.modal .form-control, 
.modal .form-select {
    border: 2px solid rgba(107, 78, 230, 0.2);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal .form-control:focus, 
.modal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107, 78, 230, 0.1);
}

.modal .form-text {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.modal .form-text ul {
    padding-left: 1.25rem;
}

.modal .form-text ul li {
    margin-bottom: 0.25rem;
}

/* Modal Buton Stilleri */
.modal .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal .btn i {
    font-size: 1.1rem;
}

.modal .btn-primary {
    background: var(--primary-gradient);
    border: none;
}

.modal .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(107, 78, 230, 0.2);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
    }
}

/* Modal backdrop sorunu çözümü */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
}

.modal-backdrop.show {
    opacity: 1;
}

/* Modal kapatıldığında backdrop'u gizle */
.modal-backdrop.fade:not(.show) {
    opacity: 0;
    pointer-events: none;
} 

/* Cevap Formu Stilleri */
.answer-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.answer-form h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.answer-form h3::before {
    content: '\F4B6'; /* Bootstrap Icons: chat-quote */
    font-family: "bootstrap-icons";
    color: var(--primary-color);
    font-size: 1.4rem;
}

.answer-form .form-group {
    margin-bottom: 1.5rem;
}

.answer-form textarea.form-control {
    border: 2px solid rgba(107, 78, 230, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    font-size: 1rem;
    min-height: 150px;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
    resize: vertical;
}

.answer-form textarea.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107, 78, 230, 0.1);
    background-color: white;
}

.answer-form .form-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.answer-form .form-text::before {
    content: '\F26A'; /* Bootstrap Icons: info-circle */
    font-family: "bootstrap-icons";
    color: var(--primary-color);
}

.answer-form .btn-primary {
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    background: var(--primary-gradient);
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.answer-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 78, 230, 0.2);
}

.answer-form .btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.answer-form .btn-primary:hover i {
    transform: translateX(3px);
}

.answer-form #answerError {
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.answer-form #answerError::before {
    content: '\F33D'; /* Bootstrap Icons: exclamation-circle */
    font-family: "bootstrap-icons";
    font-size: 1.25rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .answer-form {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .answer-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .answer-form textarea.form-control {
        min-height: 120px;
    }
    
    .answer-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Beğen butonu stilleri */
.btn-like {
    background: none;
    border: none;
    padding: 0;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-like:hover {
    color: #dc3545;
}

.btn-like .bi-heart-fill {
    color: #dc3545;
}

.btn-like .like-count {
    margin-left: 4px;
    font-size: 14px;
}

.btn-like:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Nav Tabs için mobil görünüm iyileştirmesi */
@media (max-width: 768px) {
    .nav-tabs {
        display: flex;
        flex-wrap: nowrap; /* Yan yana görünmesi için */
        overflow-x: auto; /* Yatay kaydırma */
        white-space: nowrap; /* Metinlerin alt satıra geçmemesi */
        -webkit-overflow-scrolling: touch; /* iOS için daha iyi kaydırma */
        scrollbar-width: none; /* Firefox için scrollbar gizleme */
        padding-bottom: 5px; /* Scrollbar için alan */
    }
    
    .nav-tabs::-webkit-scrollbar {
        display: none; /* Chrome için scrollbar gizleme */
    }
    
    .nav-tabs .nav-item {
        flex-shrink: 0; /* Öğelerin küçülmemesi */
    }
    
    .nav-tabs .nav-link {
        font-size: 0.9rem; /* Daha küçük font */
        padding: 0.5rem 0.75rem; /* Daha küçük padding */
    }
}

/* Kategori sekmelerinin mobilde daha iyi görünmesi için */
@media (max-width: 768px) {
    .categories-wrapper .nav-tabs {
        padding: 0 10px; /* Yanlarda boşluk */
    }
    
    .categories-wrapper .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Kategori sekmelerinin aktif durumda daha belirgin olması */
    .categories-wrapper .nav-link.active {
        font-weight: 600;
        background-color: rgba(107, 78, 230, 0.1);
    }
}

/* Mobil cihazlarda kategori öğelerinin boyutunu optimize et */
@media (max-width: 768px) {
    .category-item {
        width: 80px; /* Mobilde daha küçük genişlik */
        margin-right: 0.75rem; /* Mobilde daha az boşluk */
    }
    
    .category-icon {
        width: 45px; /* Mobilde daha küçük ikon */
        height: 45px;
    }
}

/* Kategori scroll butonları için mobil düzenlemeler */
@media (max-width: 768px) {
    .category-scroll-btn {
        width: 28px;
        height: 28px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 110; /* Z-index arttırıldı */
    }
    
    .category-scroll-btn.prev {
        left: 0;
        border-radius: 0 50% 50% 0;
    }
    
    .category-scroll-btn.next {
        right: 0;
        border-radius: 50% 0 0 50%;
    }
    
    .category-scroll-btn i {
        font-size: 0.9rem;
    }
    
    /* Kategori container'ı için padding ekleyerek okların içeriği kapatmasını önle */
    .categories {
        padding: 0.5rem 30px; /* Sağ ve sol tarafta oklar için alan bırak */
    }
    
    /* Kategori wrapper'ı için overflow kontrolü */
    .categories-wrapper .container {
        overflow: hidden;
        padding: 0; /* Container padding'i kaldır */
    }
}

/* Auth sayfaları için buton ve form iyileştirmeleri */
.auth-form .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(107, 78, 230, 0.15);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 78, 230, 0.2);
}

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

.auth-form .btn-primary::before {
    content: '\F4E1'; /* Bootstrap Icons: person-plus-fill veya box-arrow-in-right */
    font-family: "bootstrap-icons";
    font-size: 1.25rem;
}

/* Login sayfası için farklı ikon */
.auth-form.login-form .btn-primary::before {
    content: '\F11C'; /* Bootstrap Icons: box-arrow-in-right */
}

/* Auth divider ve social login alanlarını gizle */
.auth-divider, .social-login {
    display: none;
}

/* Form grupları arasındaki boşluğu artır */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

/* Input grupları için stil iyileştirmeleri */
.auth-form .input-group {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-form .input-group-text {
    background-color: rgba(107, 78, 230, 0.05);
    border-color: rgba(107, 78, 230, 0.2);
    color: var(--primary-color);
}

.auth-form .form-control {
    border-color: rgba(107, 78, 230, 0.2);
    padding: 0.75rem 1rem;
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 78, 230, 0.1);
}

/* Toggle password butonu için stil */
.auth-form .toggle-password {
    background-color: rgba(107, 78, 230, 0.05);
    border-color: rgba(107, 78, 230, 0.2);
    color: var(--primary-color);
}

.auth-form .toggle-password:hover {
    background-color: rgba(107, 78, 230, 0.1);
}

/* Checkbox için stil */
.auth-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Auth box için gölge ve kenar yuvarlaklığı */
.auth-box {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Contact sayfası için buton ve form iyileştirmeleri */
.contact-form .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(107, 78, 230, 0.15);
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 78, 230, 0.2);
}

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

.contact-form .btn-primary::before {
    content: '\F4AD'; /* Bootstrap Icons: send-fill */
    font-family: "bootstrap-icons";
    font-size: 1.25rem;
}

/* Contact form input ve textarea stilleri */
.contact-form .form-control {
    border: 2px solid rgba(107, 78, 230, 0.1);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 78, 230, 0.1);
}

/* Contact form label stilleri */
.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .form-label i {
    color: var(--primary-color);
}

/* Contact info card stilleri */
.contact-info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card h5 i {
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(107, 78, 230, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-info-content h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .contact-form .btn-primary {
        width: 100%;
    }
    
    .contact-info-card {
        margin-top: 1.5rem;
    }
}