/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

body.sidebar-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo img {
    max-width: 150px;
    max-height: 50px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #2a2a2a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nav-link.active {
    color: #ffffff;
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nav-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.4);
}

/* Burger Menu Button */
.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle-btn:hover {
    background-color: rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
}

/* Header Spacer */
.header-spacer {
    width: 50px; /* Same width as burger button for balance */
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    /* Mobilde alt navigasyon için alan bırak */
    padding-bottom: 100px;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.sidebar-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.close-sidebar {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.sidebar-body {
    padding: 0.75rem 1rem 1rem 1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.sidebar-link i {
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-link:hover i {
    transform: scale(1.1);
}

/* Sidebar Widget Styles */
.sidebar-menu .sidebar-widget {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.sidebar-menu .sidebar-widget h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-menu .category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu .category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 6px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.sidebar-menu .category-item:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.sidebar-menu .category-item.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #ffffff;
    border-color: #8b5cf6;
}

.sidebar-menu .category-item.active .category-name {
    color: #ffffff;
    font-weight: 600;
}

.sidebar-menu .category-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-menu .category-name {
    flex: 1;
    font-size: 0.85rem;
}

/* Mobile Search Toggle */
.mobile-search-toggle {
    display: none !important;
    position: fixed;
    bottom: 90px; /* Mobil nav'ın üstünde */
    right: 20px;
    z-index: 1001;
}

.search-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.search-toggle-btn:hover {
    background-color: #7c3aed;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.search-toggle-btn.active {
    background-color: #ef4444;
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 0.75rem 0.5rem;
    z-index: 1100; /* Sidebar'dan daha yüksek z-index */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #8b5cf6;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 11px;
    font-weight: 500;
    min-width: 50px;
    max-width: 80px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-btn:hover {
    color: #ffffff;
    background-color: #8b5cf6;
    transform: translateY(-2px);
}

.mobile-nav-btn i {
    font-size: 16px;
}

.mobile-nav-btn.active {
    color: #ffffff;
    background-color: #8b5cf6;
}

.mobile-nav-btn span {
    font-size: 10px;
    line-height: 1.2;
}

/* Search Section */
.search-section {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-section.mobile-hidden {
    display: none;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    background-color: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.search-box button {
    padding: 12px 20px;
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-box button:hover {
    background-color: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2rem;
}

.left-sidebar {
    min-width: 0;
}

.main-content-area {
    min-width: 0;
}

.right-sidebar {
    min-width: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.widget-title {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-btn {
    padding: 12px 16px;
    background-color: #1a1a1a;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #444;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover {
    background-color: #8b5cf6;
    color: #ffffff;
    border-color: #8b5cf6;
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.filter-btn.active {
    background-color: #8b5cf6;
    color: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 12px;
    background-color: #1a1a1a;
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-item:hover {
    background-color: #8b5cf6;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.category-item.active {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
}

.category-item.active .category-name {
    color: #ffffff;
    font-weight: 600;
}

.category-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-name {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
}

/* Tags List */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    padding: 6px 10px;
    background-color: #1a1a1a;
    border-radius: 6px;
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #444;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.tag-item:hover {
    background-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.tag-count {
    background-color: #8b5cf6;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

/* Questions List */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #8b5cf6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.question-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

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

.question-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.question-content .question-title {
    margin: 1rem 0;
}

.question-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8b5cf6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.username {
    color: #8b5cf6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.username:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.question-date {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.category-badge {
    padding: 6px 12px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.question-content {
    margin-bottom: 1rem;
}

.question-title {
    margin-bottom: 0.5rem;
}

.question-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.question-title a:hover {
    color: #8b5cf6;
}

.question-excerpt {
    color: #cccccc;
    line-height: 1.5;
}

.question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background-color: #8b5cf6;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.stat:hover {
    background-color: #7c3aed;
}

.stat i {
    font-size: 16px;
    opacity: 0.9;
}

.like-btn {
    background-color: #8b5cf6;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

.like-btn:hover {
    background-color: #7c3aed;
}

.like-btn.liked {
    background-color: #a855f7;
}

/* Beğeni ve yorum simgeleri için stil */
.like-stat, .comment-stat {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 6px;
    border: 2px solid transparent;
}

.like-stat:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.like-stat.liked {
    background-color: #a855f7;
}

.comment-stat:hover {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

/* Yorum beğeni ve yanıtla butonları */
.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #333;
}

.comment-buttons {
    display: flex;
    gap: 12px;
}

.comment-like-btn, .comment-reply-btn {
    background-color: #8b5cf6;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.comment-like-btn:hover {
    background-color: #7c3aed;
    color: #ffffff;
}

.comment-like-btn.liked {
    background-color: #a855f7;
    color: #ffffff;
}

.comment-reply-btn:hover {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

.like-count {
    font-size: 11px;
    font-weight: 500;
}

/* Yanıt formu */
.reply-form {
    margin-top: 12px;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.reply-input {
    width: 100%;
    min-height: 60px;
    padding: 8px 12px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 8px;
}

.reply-submit {
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reply-submit:hover {
    background-color: #7c3aed;
}

/* Yanıtlar */
.comment-replies {
    margin-top: 12px;
    padding-left: 20px;
    border-left: 2px solid #333;
}

.reply-item {
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #333;
}

.reply-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.reply-text {
    color: #cccccc;
    font-size: 13px;
    margin: 4px 0;
}

.reply-date {
    color: #888;
    font-size: 11px;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
}

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

.comment-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.comment-date {
    color: #888;
    font-size: 12px;
    margin-top: 0.25rem;
}

/* Popular Questions */
.popular-questions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-question-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #ef4444;
}

.popular-question-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.popular-question-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.popular-question-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-question-title a:hover {
    color: #ef4444;
}

.popular-question-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.popular-stats {
    display: flex;
    gap: 0.75rem;
    color: #888;
}

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

.popular-category {
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-popular {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #888;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #444;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #8b5cf6;
    color: #ffffff;
    border: 2px solid #8b5cf6;
}

.btn-primary:hover {
    background-color: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 2px solid #8b5cf6;
    border-bottom: 2px solid #8b5cf6;
    padding: 1.5rem 0 0.5rem;
    margin-top: 2rem;
    box-shadow: 0 -4px 15px rgba(139, 92, 246, 0.3), 0 4px 15px rgba(139, 92, 246, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Footer Logo Styling */
.footer-section h3 img {
    max-width: 120px;
    max-height: 40px;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: #888;
    line-height: 1.5;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

    .footer-section ul li a:hover {
        color: #ffffff;
    }

    /* Footer Logo Mobile Styling */
    .footer-section h3 img {
        max-width: 100px;
        max-height: 35px;
        height: auto;
        margin: 0 auto 0.5rem auto;
    }

/* Footer Menu Buttons */
.footer-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu-btn {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #2a2a2a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-menu-btn:hover::before {
    left: 100%;
}

.footer-menu-btn:hover {
    color: #ffffff;
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(139, 92, 246, 0.3);
}

.footer-menu-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.4);
}

/* Footer Quick Links and Categories Buttons */
.footer-quick-links-buttons,
.footer-categories-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-quick-link-btn,
.footer-category-btn {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #2a2a2a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-quick-link-btn::before,
.footer-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-quick-link-btn:hover::before,
.footer-category-btn:hover::before {
    left: 100%;
}

.footer-quick-link-btn:hover,
.footer-category-btn:hover {
    color: #ffffff;
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(139, 92, 246, 0.3);
}

.footer-quick-link-btn:active,
.footer-category-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 2px solid #8b5cf6;
    color: #888;
    font-size: 13px;
    box-shadow: 0 -2px 10px rgba(139, 92, 246, 0.3);
}

/* Desktop Layout Fix */
@media (min-width: 769px) {
    .header-content {
        justify-content: space-between !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        text-align: left !important;
    }
    
    .nav {
        display: flex !important;
        gap: 1rem;
        align-items: center;
    }
    
    .header-spacer {
        display: none !important;
    }
    
    /* Desktop Question Meta Layout */
    .question-meta {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        width: 100% !important;
    }
    
    .question-meta .user-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }
    
    .question-meta .category-badge {
        flex-shrink: 0 !important;
        margin-left: 1rem !important;
        white-space: nowrap !important;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 200px 1fr 250px;
        gap: 1.5rem;
    }
    
    .right-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .left-sidebar {
        display: none;
    }
    
    .main-content-area {
        order: -1;
    }
    
    .filter-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .question-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .question-meta {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem;
    }
    
    .question-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .question-stats {
        align-self: flex-start;
    }
    
    /* Burger Menu Mobile Styles - FIX: Logo ve burger menu çakışması */
    .menu-toggle-btn {
        display: block;
        position: fixed;
        left: 1rem;
        top: 0.5rem;
        transform: none;
        font-size: 1.3rem;
        padding: 0.5rem;
        z-index: 1001;
        background-color: rgba(26, 26, 26, 0.9);
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    /* Mobil Sidebar optimizasyonu */
    .sidebar-menu {
        height: calc(100vh - 100px); /* Alt navigasyon için yer ayır */
        padding-bottom: 2rem;
        z-index: 1050; /* Alt navigasyon ile çakışmayı önle */
    }
    
    .header-content {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 0 3rem; /* Burger menu için alan - optimize edildi */
        width: 100%;
    }
    
    .logo {
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo h1 {
        margin: 0 auto;
        text-align: center;
    }
    
    .logo img {
        max-width: 120px;
        max-height: 40px;
        height: auto;
        margin: 0 auto;
    }
    
    .header-spacer {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-search-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .main-content {
        padding-top: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .search-section {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        padding: 1rem;
        z-index: 1002;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .search-section.mobile-hidden {
        transform: translateY(-100%);
    }
    
    .search-section:not(.mobile-hidden) {
        transform: translateY(0);
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .question-card {
        padding: 1rem;
    }
    
    .user-avatar {
        width: 44px;
        height: 44px;
    }
    
    .question-title a {
        font-size: 1.1rem;
    }
    
    .question-excerpt {
        font-size: 14px;
    }
    
    .stat {
        font-size: 12px;
        background-color: #8b5cf6;
        color: #ffffff;
        padding: 0.4rem 0.6rem;
    }
    
    .category-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer {
        padding: 1.5rem 0 0.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0;
        height: 45px;
        max-height: 45px;
    }
    
    .header-content {
        height: 45px;
        max-height: 45px;
        padding: 0 3rem; /* Burger menu için alan - daha az padding */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .logo {
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        margin: 0 auto;
        line-height: 1.1;
        padding: 0;
        text-align: center;
    }
    
    .logo img {
        max-width: 100px;
        max-height: 35px;
        height: auto;
        margin: 0 auto;
    }
    
    .menu-toggle-btn {
        font-size: 1.2rem;
        padding: 0.4rem;
        left: 0.5rem;
        top: 0.4rem;
    }
    
    /* Küçük ekranlarda sidebar daha dar */
    .sidebar-menu {
        width: 280px;
        left: -280px;
        height: calc(100vh - 80px); /* Daha fazla alt alan */
        padding-bottom: 1rem;
    }
    
    /* Question Cards - Blog Style for Small Screens */
    .question-card {
        padding: 0.75rem;
        background-color: #1a1a1a;
        border-radius: 8px;
        border: 1px solid #333;
    }
    
    /* Question Images - Blog Style for Small Screens */
    .main-content-area .question-images .image-gallery .image-item {
        width: 100% !important;
        height: 100px !important;
        max-height: 100px !important;
        margin: 0 0 0.5rem 0 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .main-content-area .question-images .image-gallery .image-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 6px !important;
    }
    
    .question-images {
        margin: 0 0 0.5rem 0;
        padding: 0;
        border: none;
    }
    
    .question-title a {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .question-excerpt {
        font-size: 11px;
        line-height: 1.4;
        margin: 0.5rem 0;
    }
    
    .question-meta {
        font-size: 10px;
        margin-top: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .question-meta .user-info {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        flex: 1;
    }
    
    .question-meta .category-badge {
        font-size: 9px;
        padding: 0.15rem 0.4rem;
        border-radius: 3px;
        color: white;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .sidebar-widget {
        padding: 0.75rem;
    }
    
    .search-toggle-btn {
        width: 48px;
        height: 48px;
    }
    
    .search-box input {
        font-size: 14px;
    }
    
    .search-box button {
        padding: 10px 16px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
} 

/* Responsive tasarım - Tekrarlanan kısım kaldırıldı */ 

/* Yorum formu stilleri - Ana sayfadaki soru kartları gibi */
.comment-form-inline {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comment-form-inline h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-inline h4::before {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8b5cf6;
}

.comment-form-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Modern Ad Soyad Alanı */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.form-group label::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #8b5cf6;
    font-size: 14px;
}

/* İkon ile input alanı */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b5cf6;
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s ease;
}

.input-with-icon input:focus + i,
.input-with-icon input:focus ~ i {
    color: #8b5cf6;
    transform: translateY(-50%) scale(1.1);
}

.form-group input[type="text"],
.guest-name-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #444;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.form-group input[type="text"]:focus,
.guest-name-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    transform: translateY(-1px);
}

.form-group input[type="text"]::placeholder,
.guest-name-input::placeholder {
    color: #888;
    font-weight: 400;
}

.form-group input[type="text"]:hover,
.guest-name-input:hover {
    border-color: #666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Ad Soyad alanı için modern tasarım */
.guest-name-input {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 12px 16px 12px 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.guest-name-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    transform: translateY(-1px);
}

.guest-name-input::placeholder {
    color: #888;
    font-weight: 400;
}

.guest-name-input:hover {
    border-color: #666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover efektleri */
.input-with-icon:hover i {
    color: #8b5cf6;
    transform: translateY(-50%) scale(1.1);
}

.input-with-icon:hover input {
    border-color: #666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.comment-input {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comment-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.comment-input::placeholder {
    color: #888;
}

.comment-submit {
    align-self: flex-end;
    padding: 12px 24px;
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comment-submit:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.comment-submit:active {
    transform: translateY(0);
}

/* Blog stilleri */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    border: 2px solid #8b5cf6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.blog-item:hover {
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Blog Card Styling */
.blog-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #8b5cf6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    text-decoration: none;
    color: inherit;
}

.blog-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.blog-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #8b5cf6;
}

.blog-excerpt {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #666;
}

.blog-author {
    color: #8b5cf6;
    font-weight: 500;
}

.blog-date {
    color: #888;
}

.no-blogs {
    color: #888;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

/* Kategori başlığı */
.category-header {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    text-align: center;
}

.category-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-header p {
    color: #888;
    font-size: 1rem;
    margin: 0;
}

/* Soru resimleri */
.question-images {
    margin: 1.5rem 0;
    padding: 0;
    border: none;
}

.question-images h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.image-gallery {
    display: block;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

/* Ana sayfa için özel grid düzeni */
.question-images .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

/* Ana sayfa için daha spesifik seçici */
.main-content-area .question-images .image-gallery {
    justify-content: center !important;
    gap: 8px !important;
}

.main-content-area .question-images .image-gallery .image-item {
    width: 100% !important;
    max-height: 400px !important;
    height: 300px !important;
    border-radius: 6px !important;
    margin: 0 auto 10px auto !important;
    display: block !important;
    overflow: hidden !important;
}

.main-content-area .question-images .image-gallery .image-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.image-gallery .image-item {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #444;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.image-gallery .image-item:hover {
    border-color: #8b5cf6;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.image-gallery .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0;
}

.image-gallery .image-item {
    width: 100%;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto 10px auto;
    display: block;
}

/* Ana sayfa için daha küçük resim boyutları */
.question-images .image-gallery .image-item {
    aspect-ratio: 4/3;
    max-height: 120px;
}

/* Ana sayfa için özel boyutlar zaten yukarıda tanımlandı */

/* Detay sayfası için özel boyutlar */
.question-detail-card .question-images {
    margin: 1.5rem 0;
    padding: 0;
    border: none;
}

.question-detail-card .question-images .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    justify-content: center;
}

.question-detail-card .question-images .image-gallery .image-item {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin: 0;
    display: block;
    overflow: hidden;
    border: 2px solid #444;
    transition: all 0.3s ease;
}

.question-detail-card .question-images .image-gallery .image-item:hover {
    border-color: #8b5cf6;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.question-detail-card .question-images .image-gallery .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Resim modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.image-modal-close:hover {
    color: #bbb;
}

/* Soru Detay Sayfası */
.question-detail-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.question-detail-card .question-header {
    margin-bottom: 1.5rem;
}

.question-detail-card .question-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.question-detail-card .question-header .question-title {
    flex: 1;
    margin: 0;
    padding-right: 1rem;
}

.question-detail-card .question-header .category-badge {
    flex-shrink: 0;
    align-self: flex-start;
}

.question-detail-card .question-title {
    font-size: 2rem;
    color: #ffffff;
    margin: 1rem 0;
    line-height: 1.3;
}

.question-detail-card .question-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.question-detail-card .question-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-detail-card .question-content {
    margin-bottom: 2rem;
}

.question-detail-card .question-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

.question-detail-card .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 14px;
    background-color: #8b5cf6;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.question-detail-card .stat i {
    font-size: 14px;
    opacity: 0.9;
}

.question-detail-card .like-btn {
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
}

.question-detail-card .like-btn:hover {
    background-color: #7c3aed;
}

.question-detail-card .like-btn.liked {
    background-color: #a855f7;
}

.question-detail-card .like-btn.liked:hover {
    background-color: #9333ea;
}

.question-detail-card .like-btn i {
    font-size: 14px;
    opacity: 0.9;
}

.question-actions {
    margin: 1.5rem 0;
    text-align: left;
}

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

/* Yorum Formu */
.comment-form {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.comment-form h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 1rem;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.comment-form button {
    background-color: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form button:hover {
    background-color: #7c3aed;
    transform: translateY(-1px);
}

/* Yorumlar Listesi */
.comments-section {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.comments-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.comment-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #444;
}

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

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 14px;
}

.comment-date {
    color: #888;
    font-size: 12px;
}

.comment-content {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Yorum Linkleri */
.comment-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.comment-link:hover {
    transform: translateX(5px);
}

.comment-link .comment-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.comment-link:hover .comment-text {
    color: #8b5cf6;
}

/* Yorum Linkleri */
.comment-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.comment-link:hover {
    transform: translateX(5px);
}

.comment-link .comment-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.comment-link:hover .comment-text {
    color: #8b5cf6;
} 

/* Geri Dönüş Butonu */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.back-btn:hover {
    color: #ffffff;
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 12px;
} 

/* Modern Mobil Görünüm */
@media (max-width: 768px) {
    /* Modern Mobil Header */
    .header {
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(26, 26, 26, 0.95);
        border-bottom: 1px solid #333;
        min-height: auto;
        height: 45px;
        max-height: 45px;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        padding: 0 0.3rem;
        height: 45px;
        max-height: 45px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        margin: 0;
        line-height: 1.1;
        padding: 0;
    }
    
    .nav {
        display: none;
    }
    
    /* Question Cards - Blog Style Layout */
    .question-card {
        background-color: #1a1a1a;
        border-radius: 8px;
        padding: 1rem;
        border: 1px solid #333;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    
    .question-card:hover {
        border-color: #8b5cf6;
        transform: translateY(-2px);
    }
    
    /* Question Images - Blog Style */
    .question-images {
        margin: 0 0 0.75rem 0;
        padding: 0;
        border: none;
    }
    
    .question-images .image-gallery {
        display: block;
        margin: 0;
    }
    
    .main-content-area .question-images .image-gallery .image-item {
        width: 100% !important;
        height: 120px !important;
        max-height: 120px !important;
        margin: 0 0 0.75rem 0 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .main-content-area .question-images .image-gallery .image-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 6px !important;
    }
    
    /* Question Content */
    .question-header {
        margin-bottom: 0.5rem;
    }
    
    .question-title a {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        line-height: 1.3;
    }
    
    .question-title a:hover {
        color: #8b5cf6;
    }
    
    .question-excerpt {
        color: #888;
        font-size: 12px;
        line-height: 1.4;
        margin: 0.5rem 0;
    }
    
    .question-meta {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 11px;
        color: #666;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .question-meta .user-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }
    
    .question-meta .category-badge {
        font-size: 10px;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        color: white !important;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    
    .question-footer {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
        border-top: 1px solid #333;
    }
    
    /* Modern Mobil Arama */
    .mobile-search-toggle {
        display: none !important;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }
    
    .search-toggle-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        border: none;
        color: white;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .search-toggle-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    }
    
    .search-toggle-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .search-toggle-btn:hover::before {
        left: 100%;
    }
    
    /* Modern Mobil Navigasyon */
    .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #333;
        padding: 0.5rem 0;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-nav-buttons {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mobile-nav-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        color: #888;
        text-decoration: none;
        font-size: 12px;
        padding: 0.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        min-width: 60px;
        position: relative;
    }
    
    .mobile-nav-btn:hover,
    .mobile-nav-btn.active {
        color: #8b5cf6;
        background-color: rgba(139, 92, 246, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    }
    
    /* Search button specific styles */
    .mobile-nav-btn#searchToggle.active {
        color: #ffffff;
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }
    
    .mobile-nav-btn:hover i,
    .mobile-nav-btn.active i {
        transform: scale(1.1);
    }
    
    .mobile-nav-btn i {
        font-size: 20px;
        margin-bottom: 0.25rem;
        transition: all 0.3s ease;
    }
    
    /* Modern Mobil İçerik */
    .container {
        padding: 0 1.5rem;
        margin-bottom: 100px; /* Mobil navigasyon için daha fazla alan */
    }
    
    .main-content {
        padding-top: 1rem;
        margin-bottom: 100px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .left-sidebar {
        display: none;
    }
    
    .right-sidebar {
        order: -1;
        margin-bottom: 2rem;
        display: block;
    }
    
    /* Modern Mobil Soru Kartları */
    .question-card {
        background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #333;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    
    .question-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
        border-color: #8b5cf6;
    }
    
    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .question-meta {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem;
    }
    
    .question-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #444;
    }
    
    .question-stats {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #ffffff;
        font-size: 12px;
        background-color: #8b5cf6;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        white-space: nowrap;
    }
    
    .user-avatar {
        width: 44px;
        height: 44px;
        border: 2px solid #8b5cf6;
    }
    
    .question-title a {
        font-size: 1.1rem;
        line-height: 1.4;
        font-weight: 600;
    }
    
    .question-excerpt {
        font-size: 14px;
        line-height: 1.6;
        color: #cccccc;
    }
    
    .category-badge {
        font-size: 11px;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
    }
    
    /* Modern Mobil Sidebar */
    .sidebar-widget {
        background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #333;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }
    
    .sidebar-widget .widget-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
        border-bottom: 1px solid #444;
        padding-bottom: 0.5rem;
    }
    
    .widget-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    /* Modern Mobil Footer */
    .footer {
        background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
        border-top: 2px solid #8b5cf6;
        border-bottom: 2px solid #8b5cf6;
        padding: 1.5rem 0 0.5rem;
        margin-top: 1.5rem;
        margin-bottom: 80px; /* Mobil navigasyon için alan */
        box-shadow: 0 -4px 15px rgba(139, 92, 246, 0.3), 0 4px 15px rgba(139, 92, 246, 0.3);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        color: #8b5cf6;
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        color: #cccccc;
        transition: color 0.3s ease;
        font-size: 13px;
    }
    
    .footer-section ul li a:hover {
        color: #8b5cf6;
    }
    
    /* Mobile Footer Menu Buttons */
    .footer-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .footer-menu-btn {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .footer-menu-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
    }
    
    /* Mobile Footer Quick Links and Categories Buttons */
    .footer-quick-links-buttons,
    .footer-categories-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .footer-quick-link-btn,
    .footer-category-btn {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .footer-quick-link-btn:hover,
    .footer-category-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
    }
    
    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 12px;
        border-top: 2px solid #8b5cf6;
        box-shadow: 0 -2px 10px rgba(139, 92, 246, 0.3);
    }
    
    /* Modern Mobil Arama Bölümü */
    .search-section {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        padding: 1rem;
        z-index: 1002;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid #333;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .search-section.mobile-hidden {
        transform: translateY(-100%);
    }
    
    .search-section:not(.mobile-hidden) {
        transform: translateY(0);
    }
    
    .search-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .search-box input {
        background-color: #1a1a1a;
        border: 2px solid #444;
        border-radius: 12px;
        padding: 1rem 1.5rem;
        font-size: 16px;
    }
    
    .search-box input:focus {
        border-color: #8b5cf6;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    }
    
    .search-box button {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    
    /* Modern Mobil Boş Durum */
    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
        background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
        border-radius: 16px;
        border: 1px solid #333;
        margin: 2rem 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .empty-state i {
        font-size: 3rem;
        color: #8b5cf6;
        margin-bottom: 1rem;
    }
    
    .empty-state h3 {
        color: #ffffff;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .empty-state p {
        color: #888;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    /* Modern Mobil Butonlar */
    .btn {
        padding: 1rem 2rem;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    }
    
    /* Modern Mobil Soru Detay Sayfası */
    .question-detail-card {
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    
    .question-detail-card .question-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .question-detail-card .question-excerpt {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Modern Mobil Yorum Formu */
    .comment-form {
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    
    .comment-form textarea {
        border-radius: 12px;
        padding: 1rem;
        font-size: 16px;
    }
    
    .comment-form button {
        border-radius: 12px;
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* Modern Mobil Yorumlar */
    .comments-section {
        border-radius: 16px;
        padding: 1.5rem;
        overflow: hidden;
    }
    
    .comment-item {
        padding: 1rem 0;
        border-bottom: 1px solid #444;
    }
    
    .comment-item:last-child {
        border-bottom: none;
    }
    
    /* Modern Mobil Geri Dönüş Butonu */
    .back-btn {
        margin-bottom: 1.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Soru detay sayfası resim galerisi mobil uyumluluğu */
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .image-gallery .image-item img {
        height: 100%;
    }
} 

/* Ana Sayfa Resim Önizlemesi */
.question-images {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.question-images h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ana sayfa için daha kompakt başlık */
.question-images h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.question-images h4::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8b5cf6;
}

/* Grid düzeni için scrollbar gerekli değil */

/* Eski preview-image stilleri kaldırıldı - artık image-gallery kullanılıyor */

.more-images {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    border: 2px solid transparent;
    text-align: center;
}

/* Ana sayfa için özel "daha fazla resim" stili */
.image-item.more-images {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 2px solid transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    text-align: center;
    aspect-ratio: 4/3;
    max-height: 120px;
}

/* Form ve Sayfa Kartları için Glow Efektleri */
.form-container,
.page-container,
.content-card,
.main-form,
.auth-form,
.question-form {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Ana sayfa için daha spesifik "daha fazla resim" stili */
.main-content-area .question-images .image-gallery .image-item.more-images {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 2px solid transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    text-align: center;
    width: 100% !important;
    max-height: 400px !important;
    height: 300px !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto !important;
}

.image-item.more-images:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border-color: #ffffff;
}

/* Ana sayfa için daha hafif hover efektleri */
.question-images .image-gallery .image-item:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

/* Ana sayfa için daha spesifik hover efektleri */
.main-content-area .question-images .image-gallery .image-item:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.more-images:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border-color: #ffffff;
}

/* Mobil Resim Önizlemesi */
@media (max-width: 768px) {
    /* Ana sayfa için mobil grid düzeni */
    .question-images .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .question-images .image-gallery .image-item {
        max-height: 90px;
    }
    
    /* Ana sayfa için daha spesifik mobil seçiciler */
    .main-content-area .question-images .image-gallery {
        gap: 6px;
    }
    
    .main-content-area .question-images .image-gallery .image-item {
        width: 100%;
        max-height: 250px;
        height: 200px;
        margin: 0 auto 8px auto;
        display: block;
        overflow: hidden;
    }
    
    .main-content-area .question-images .image-gallery .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }
    
    .main-content-area .question-images .image-gallery .image-item.more-images {
        max-height: 200px !important;
        height: 150px !important;
    }
    
    .main-content-area .question-images .image-gallery .image-item.more-images {
        max-height: 250px !important;
        height: 200px !important;
    }
    
    .image-item.more-images {
        font-size: 14px;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 480px) {
    /* Ana sayfa için çok küçük ekran grid düzeni */
    .question-images .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .question-images .image-gallery .image-item {
        max-height: 75px;
    }
    
    /* Ana sayfa için daha spesifik çok küçük ekran seçiciler */
    .main-content-area .question-images .image-gallery {
        gap: 4px;
    }
    
    .main-content-area .question-images .image-gallery .image-item {
        width: 100%;
        max-height: 200px;
        height: 150px;
        margin: 0 auto 5px auto;
        display: block;
        overflow: hidden;
    }
    
    .main-content-area .question-images .image-gallery .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }
    
    .image-item.more-images {
        font-size: 12px;
    }
    
    /* Soru detay sayfası resim galerisi mobil uyumluluğu */
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.75rem;
    }
    
    .image-gallery .image-item img {
        height: 100%;
    }
}

/* Modern Bildirim Sistemi */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    max-width: 400px;
    min-width: 300px;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border-left: 4px solid #8b5cf6;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.notification.success::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981;
    margin-right: 0.5rem;
}

.notification.error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.notification.error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ef4444;
    margin-right: 0.5rem;
}

.notification.warning {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.notification.warning::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f59e0b;
    margin-right: 0.5rem;
}

.notification.info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.notification.info::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #3b82f6;
    margin-right: 0.5rem;
}

.notification .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification .notification-message {
    flex: 1;
    line-height: 1.4;
}

.notification .notification-close {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.notification .notification-close:hover {
    color: #ffffff;
}

.notification .notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 0 0 12px 12px;
    transition: width 0.1s linear;
}

.notification.success .notification-progress {
    background: linear-gradient(90deg, #10b981, #059669);
}

.notification.error .notification-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.notification.warning .notification-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.notification.info .notification-progress {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Bildirim animasyonları */
@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.notification.slide-in {
    animation: notificationSlideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.slide-out {
    animation: notificationSlideOut 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Admin Panel Styles */
.view-site-btn {
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.view-site-btn:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.admin-header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logout-btn {
    background-color: #ef4444;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.logout-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Logo Settings Styles */
.preview-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.preview-section h4 {
    margin: 0 0 1rem 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

.logo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 6px;
    padding: 1rem;
}

.logo-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.no-logo {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Call to Action Section */
.call-to-action-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.call-to-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
    color: #5a67d8;
    text-decoration: none;
}

.cta-button i {
    font-size: 1.2rem;
}

/* Mobile Call to Action */
@media (max-width: 768px) {
    .call-to-action-section {
        padding: 1.2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .call-to-action-section {
        padding: 1rem 1rem;
        margin: 0.8rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}