* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 30px -10px rgba(59, 130, 246, 0.4);
    --shadow-colored-strong: 0 15px 40px -10px rgba(59, 130, 246, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 30%, #fce7f3 60%, #f0f9ff 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.dark-mode-toggle {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.dark-mode-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.nav-link-highlight::before {
    display: none;
}

.nav-link-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #db2777 100%);
}

.nav-link-highlight:hover::after {
    left: 100%;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
    }
}

body.dark-mode .nav-link-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

body.dark-mode .nav-link-highlight:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.7);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 30%, #ec4899 60%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.search-wrapper {
    position: relative;
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1.25rem 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
    outline: none;
    color: var(--text-dark);
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s;
}

.search-input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: var(--shadow-colored-strong);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-btn:hover::before {
    width: 300px;
    height: 300px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored-strong), 0 0 25px rgba(59, 130, 246, 0.4);
    filter: brightness(1.05);
}

.search-btn:active {
    transform: translateY(0);
}

/* Search Suggestions (Google-like) */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-category {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.suggestion-category:last-child {
    border-bottom: none;
}

.suggestion-category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(248, 250, 252, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.suggestion-category-icon {
    font-size: 1rem;
}

.suggestion-category-title {
    flex: 1;
}

.suggestion-count {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 800;
}

.suggestion-items {
    padding: 0.25rem 0;
}

.suggestion-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.suggestion-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: var(--primary-color);
}

.suggestion-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.suggestion-title mark {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--primary-color);
    font-weight: 700;
    padding: 0;
    border-radius: 2px;
}

.suggestion-preview {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Dark Mode for Search Suggestions */
body.dark-mode .search-wrapper {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .search-suggestions {
    background: rgba(30, 41, 59, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

body.dark-mode .suggestion-category-header {
    background: rgba(15, 23, 42, 0.6);
    color: #94a3b8;
}

body.dark-mode .suggestion-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

body.dark-mode .suggestion-title {
    color: #e2e8f0;
}

body.dark-mode .suggestion-title mark {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    color: #60a5fa;
}

body.dark-mode .suggestion-preview {
    color: #94a3b8;
}

/* Responsive for Search Suggestions */
@media (max-width: 768px) {
    .search-suggestions {
        max-height: 400px;
    }
    
    .suggestion-item {
        padding: 0.75rem;
    }
    
    .suggestion-title {
        font-size: 0.875rem;
    }
    
    .suggestion-preview {
        font-size: 0.75rem;
    }
}

/* Categories */
.categories {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 2px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-colored);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-colored-strong);
    background: rgba(255, 255, 255, 1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
}

.category-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.category-card:hover h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-count {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.category-total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 0.25rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-total {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* Popular Questions */
.popular-questions {
    padding: 5rem 0;
    position: relative;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.question-card {
    display: flex;
    flex-direction: column;
}

.question-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.question-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
}

.question-card:hover::after {
    transform: scaleY(1);
}

.question-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-colored-strong);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.question-category {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.question-card:hover .question-category {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    filter: brightness(1.05);
}

.question-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.question-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    transition: all 0.3s;
}

.question-card:hover .question-title {
    color: var(--primary-color);
}

.question-preview {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(226, 232, 240, 0.6);
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .question-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .question-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

.question-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat-item:hover {
    background: rgba(248, 250, 252, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.4rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.view-count,
.like-count {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.stat-item:first-child .stat-icon {
    color: #3b82f6;
}

.stat-item:nth-child(2) .stat-icon {
    color: #ec4899;
    filter: drop-shadow(0 2px 6px rgba(236, 72, 153, 0.3));
}

.comment-stat-item .stat-icon {
    color: #10b981;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.3));
}

.question-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.action-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.action-btn:hover::before {
    width: 100px;
    height: 100px;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.action-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.action-btn.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.favorite-btn.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.favorite-btn.active .fav-icon {
    color: #fbbf24;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    transform: scale(1.1);
}

.like-btn.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

.like-btn.active .like-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
    transform: scale(1.1);
}

.share-btn:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.4);
}

.share-btn .share-icon {
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.share-btn:hover .share-icon {
    filter: grayscale(0);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transition: width 0.3s;
}

.read-more:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.read-more:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, #ec4899, transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #60a5fa;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Detail Page Styles */
.detail-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
}

.detail-container .comments-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.detail-container {
    position: relative;
}

.detail-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.detail-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Detail content styles - artık detail-header içinde */
.detail-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.detail-header h2:first-of-type {
    margin-top: 1.5rem;
}

/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.5);
}

.comments-title::before {
    content: '💬';
    font-size: 1.3rem;
}

/* Comment Form */
.comment-form {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comment-form-group {
    margin-bottom: 1.5rem;
}

.comment-form-group:last-of-type {
    margin-bottom: 1.75rem;
}

.comment-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comment-form-group input:hover,
.comment-form-group textarea:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    background: white;
    transform: translateY(-1px);
}

.comment-form-group input::placeholder,
.comment-form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    font-weight: 400;
}

.comment-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
    font-family: inherit;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .comment-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
}

.comment-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.comment-submit-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;
}

.comment-submit-btn:hover::before {
    left: 100%;
}

.comment-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

.comment-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.comment-message {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.comment-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.comment-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Comments List */
.comments-list {
    margin-top: 0;
}

.comments-list .no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.comment-item {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.comment-item:hover::before {
    width: 4px;
}

.comment-header {
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    border: 2px solid white;
    flex-shrink: 0;
}

.comment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.comment-name {
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
}

.comment-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
    white-space: pre-wrap;
    padding: 0;
    background: transparent;
    border: none;
    margin-top: 0.75rem;
    word-wrap: break-word;
}


/* Dark Mode for Comments */
body.dark-mode .comments-section {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .comments-title {
    color: #e2e8f0;
}

body.dark-mode .comment-form {
    background: rgba(30, 41, 59, 0.8);
}

body.dark-mode .comment-form-group label {
    color: #e2e8f0;
}

body.dark-mode .comment-form-group input,
body.dark-mode .comment-form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

body.dark-mode .comment-form-group input:focus,
body.dark-mode .comment-form-group textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

body.dark-mode .comment-form-group input::placeholder,
body.dark-mode .comment-form-group textarea::placeholder {
    color: #94a3b8;
}

body.dark-mode .comments-section {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .comments-title {
    color: #e2e8f0;
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .comment-form {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .comment-form-group label {
    color: #e2e8f0;
}

body.dark-mode .comment-form-group input,
body.dark-mode .comment-form-group textarea {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

body.dark-mode .comment-form-group input:hover,
body.dark-mode .comment-form-group textarea:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .comment-form-group input:focus,
body.dark-mode .comment-form-group textarea:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(59, 130, 246, 0.25);
}

body.dark-mode .comment-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .comment-item:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(59, 130, 246, 0.5);
}

body.dark-mode .comment-item::before {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

body.dark-mode .comment-header {
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .comment-name {
    color: #e2e8f0;
}

body.dark-mode .comment-date {
    color: #94a3b8;
}

body.dark-mode .comment-content {
    color: #cbd5e1;
}

body.dark-mode .comments-list .no-comments {
    color: #94a3b8;
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Solutions Section */
.solutions-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ec4899, #8b5cf6);
}

.solutions-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.solutions-subtitle {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.5);
}

/* Solution Form */
.solution-form {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-form-group {
    margin-bottom: 1.5rem;
}

.solution-form-group:last-of-type {
    margin-bottom: 1.75rem;
}

.solution-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.solution-form-group input,
.solution-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.solution-form-group input:hover,
.solution-form-group textarea:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.solution-form-group input:focus,
.solution-form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), 0 4px 12px rgba(245, 158, 11, 0.15);
    background: white;
    transform: translateY(-1px);
}

.solution-form-group input::placeholder,
.solution-form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    font-weight: 400;
}

.solution-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
    font-family: inherit;
}

.solution-form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.8125rem;
    opacity: 0.7;
}

.solution-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .solution-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solution-form {
        padding: 1.5rem;
    }
}

.solution-submit-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.solution-submit-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;
}

.solution-submit-btn:hover::before {
    left: 100%;
}

.solution-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
    background: linear-gradient(135deg, #d97706 0%, #db2777 100%);
}

.solution-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

/* Solutions List */
.solutions-list {
    margin-top: 0;
}

.solutions-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b, #ec4899);
    transition: width 0.3s ease;
}

.solution-item:hover {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.solution-item:hover::before {
    width: 4px;
}

.solution-header {
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.solution-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.solution-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
    border: 2px solid white;
    flex-shrink: 0;
}

.solution-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.solution-author-name {
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.solution-date {
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
}

.solution-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.solution-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
    white-space: pre-wrap;
    padding: 0;
    background: transparent;
    border: none;
    margin-top: 0.75rem;
    word-wrap: break-word;
}

.no-solutions {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

/* Dark Mode for Solutions */
body.dark-mode .solutions-section {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(245, 158, 11, 0.3);
}

body.dark-mode .solutions-title {
    color: #e2e8f0;
}

body.dark-mode .solutions-subtitle {
    color: #94a3b8;
}

body.dark-mode .solution-form {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(245, 158, 11, 0.2);
}

body.dark-mode .solution-form-group label {
    color: #e2e8f0;
}

body.dark-mode .solution-form-group input,
body.dark-mode .solution-form-group textarea {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(245, 158, 11, 0.3);
    color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

body.dark-mode .solution-form-group input:hover,
body.dark-mode .solution-form-group textarea:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .solution-form-group input:focus,
body.dark-mode .solution-form-group textarea:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2), 0 4px 12px rgba(245, 158, 11, 0.25);
}

body.dark-mode .solution-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(245, 158, 11, 0.3);
}

body.dark-mode .solution-item:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(245, 158, 11, 0.5);
}

body.dark-mode .solution-author-name,
body.dark-mode .solution-title {
    color: #e2e8f0;
}

body.dark-mode .solution-date {
    color: #94a3b8;
}

body.dark-mode .solution-content {
    color: #cbd5e1;
}

body.dark-mode .no-solutions {
    color: #94a3b8;
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(245, 158, 11, 0.3);
}

.solution-message {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.solution-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.solution-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

body.dark-mode .solution-message-success {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.4);
}

body.dark-mode .solution-message-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.4);
}

/* User Problem Section */
.user-problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.user-problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.user-problem-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 100px;
}

.user-problem-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    background: white;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.problem-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 0.5rem;
}

.problem-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

.problem-submit-btn:active {
    transform: translateY(-1px);
}

.user-problems-list {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.problems-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.5);
}

.problems-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 600px;
    overflow-y: auto;
}

.problem-item {
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.problem-item:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.problem-item:hover::before {
    width: 4px;
}

.problem-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.problem-item-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
}

.problem-item-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.problem-item-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.problem-item-description {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading-problems,
.no-problems {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Dark Mode for User Problems */
body.dark-mode .user-problem-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

body.dark-mode .user-problem-form-wrapper,
body.dark-mode .user-problems-list {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .form-group label {
    color: #e2e8f0;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--primary-color);
}

body.dark-mode .problem-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .problem-item:hover {
    background: rgba(30, 41, 59, 0.8);
}

body.dark-mode .problem-item-title {
    color: #e2e8f0;
}

body.dark-mode .problem-item-description {
    color: #cbd5e1;
}

.problem-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

.problem-item-link:hover {
    transform: translateX(4px);
}

.problem-item-link:hover .problem-item {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

/* Problem Detail Page */
.problem-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.problem-detail-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.problem-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.problem-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    flex-shrink: 0;
}

.problem-author-info {
    flex: 1;
}

.problem-author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.problem-author-email {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.problem-detail-content {
    line-height: 1.8;
    font-size: 1.0625rem;
    white-space: pre-wrap;
    margin: 1.5rem 0;
}

.problem-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
    flex-wrap: wrap;
}

.problem-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.solved-badge {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
}

/* Answers Section */
.answers-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.answers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color), var(--secondary-color));
}

.answers-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.answers-subtitle {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.5);
}

/* Answer Form */
.answer-form {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.answer-form-group {
    margin-bottom: 1.5rem;
}

.answer-form-group:last-of-type {
    margin-bottom: 1.75rem;
}

.answer-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.answer-form-group input,
.answer-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.answer-form-group input:hover,
.answer-form-group textarea:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.answer-form-group input:focus,
.answer-form-group textarea:focus {
    outline: none;
    border-color: var(--success-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(16, 185, 129, 0.15);
    background: white;
    transform: translateY(-1px);
}

.answer-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.answer-form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.8125rem;
    opacity: 0.7;
}

.answer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.answer-submit-btn {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.answer-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #059669 0%, var(--primary-dark) 100%);
}

/* Answers List */
.answers-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.answer-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.answer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--success-color), var(--primary-color));
    transition: width 0.3s ease;
}

.answer-item:hover {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.answer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.answer-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.answer-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    border: 2px solid white;
    flex-shrink: 0;
}

.answer-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.answer-author-name {
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.answer-date {
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
}

.answer-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
    white-space: pre-wrap;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.answer-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.answer-helpful-btn,
.answer-solve-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-helpful-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.answer-solve-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.no-answers {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.answer-message {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.answer-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.answer-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Dark Mode for Problem Detail */
body.dark-mode .problem-detail-author {
    background: rgba(30, 41, 59, 0.6);
    border-left-color: var(--primary-color);
}

body.dark-mode .problem-author-name {
    color: #e2e8f0;
}

body.dark-mode .problem-author-email {
    color: #94a3b8;
}

body.dark-mode .problem-detail-content {
    color: #cbd5e1;
}

body.dark-mode .problem-stat-item {
    background: rgba(30, 41, 59, 0.6);
    color: #e2e8f0;
}

body.dark-mode .answers-section {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

body.dark-mode .answer-form {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(16, 185, 129, 0.2);
}

body.dark-mode .answer-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(16, 185, 129, 0.3);
}

body.dark-mode .answer-author-name,
body.dark-mode .answer-content {
    color: #e2e8f0;
}

body.dark-mode .answer-helpful-btn,
body.dark-mode .answer-solve-btn {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(16, 185, 129, 0.3);
    color: #e2e8f0;
}

/* Legal Pages (Gizlilik Politikası, Kullanım Şartları) */
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.legal-page-header {
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 3px solid rgba(59, 130, 246, 0.2);
}

.legal-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page-subtitle {
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

.legal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1.25rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-section li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.legal-section li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    background: rgba(248, 250, 252, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dark Mode for Legal Pages */
body.dark-mode .legal-content {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

body.dark-mode .legal-page-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .legal-section h2,
body.dark-mode .legal-section h3,
body.dark-mode .legal-section p,
body.dark-mode .legal-section li {
    color: #e2e8f0;
}

body.dark-mode .legal-section h2 {
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .legal-section {
    border-bottom-color: rgba(226, 232, 240, 0.1);
}

body.dark-mode .contact-info {
    background: rgba(15, 23, 42, 0.6);
    border-left-color: var(--primary-color);
}

body.dark-mode .contact-info p {
    color: #e2e8f0;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 1.5rem 1rem;
    }
    
    .legal-page-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
}

/* Responsive for Problem Detail */
@media (max-width: 768px) {
    .answer-form-row {
        grid-template-columns: 1fr;
    }
    
    .problem-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .answer-actions {
        flex-direction: column;
    }
    
    .answer-helpful-btn,
    .answer-solve-btn {
        width: 100%;
    }
    
    .answers-section {
        padding: 1.5rem;
    }
    
    .answer-form {
        padding: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .user-problem-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .user-problem-form-wrapper {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-section {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .comments-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .comment-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .comment-name {
        font-size: 0.875rem;
    }
    
    .comment-date {
        font-size: 0.75rem;
    }
    
    .comment-content {
        font-size: 0.875rem;
    }
}

.detail-header p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.detail-header ul,
.detail-header ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.detail-header li {
    margin-bottom: 0.5rem;
}

.detail-header strong {
    color: var(--primary-color);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

/* Continue Button (Devam Et) */
/* Social Share Section */
.social-share-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-share-btn.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.social-share-btn.copy-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.social-share-btn svg {
    width: 18px;
    height: 18px;
}

/* Dark Mode for Social Share */
body.dark-mode .social-share-section {
    border-top-color: rgba(226, 232, 240, 0.1);
}

body.dark-mode .social-share-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

body.dark-mode .share-label {
    color: var(--text-light);
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Ad Spaces (for future AdSense integration) */
.ad-space {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    background: transparent;
}

.ad-header-banner {
    max-width: 728px;
    min-height: 90px;
    margin: 0 auto;
    padding: 10px;
}

.ad-footer-banner {
    max-width: 728px;
    min-height: 90px;
    margin: 0 auto;
    padding: 10px;
}

.ad-in-content {
    max-width: 300px;
    min-height: 250px;
    margin: 2rem auto;
    padding: 10px;
}

/* Mobile responsive for ad spaces */
@media (max-width: 768px) {
    .ad-header-banner,
    .ad-footer-banner {
        max-width: 100%;
        min-height: 50px;
    }
    
    .ad-in-content {
        max-width: 100%;
        min-height: 100px;
    }
}

/* Mobile Responsive for Social Share */
@media (max-width: 768px) {
    .social-share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .social-share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .social-share-btn {
        width: 44px;
        height: 44px;
    }
}

.continue-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
    text-align: center;
}

.continue-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 280px;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.continue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.continue-button:hover::before {
    left: 100%;
}

.continue-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7c3aed 100%);
}

.continue-button:active {
    transform: translateY(-2px) scale(1);
}

.continue-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.continue-text {
    font-size: 1.375rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.continue-arrow {
    font-size: 1.75rem;
    transition: transform 0.3s;
    display: inline-block;
}

.continue-button:hover .continue-arrow {
    transform: translateX(8px);
}

.continue-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* Dark Mode for Continue Button */
body.dark-mode .continue-section {
    border-top-color: rgba(226, 232, 240, 0.1);
}

body.dark-mode .continue-button {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

body.dark-mode .continue-button:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

/* Related Questions Section */
.related-questions-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.related-questions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.related-questions-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-question-card {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.related-question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.related-question-card:hover::before {
    transform: scaleY(1);
}

.related-question-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.related-question-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.related-question-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s;
}

.related-question-card:hover .related-question-title {
    color: var(--primary-color);
}

.related-question-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: auto;
}

/* Dark Mode for Related Questions */
body.dark-mode .related-questions-section {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .related-questions-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .related-question-card {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .related-question-card:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--primary-color);
}

body.dark-mode .related-question-title {
    color: #e2e8f0;
}

body.dark-mode .related-question-meta {
    color: #94a3b8;
}

/* Responsive for Related Questions */
@media (max-width: 768px) {
    .related-questions-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .related-questions-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .related-questions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .related-question-card {
        padding: 1.25rem;
    }
    
    .related-question-title {
        font-size: 1rem;
    }
}

/* Responsive for Continue Button */
@media (max-width: 768px) {
    .continue-button {
        min-width: auto;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .continue-text {
        font-size: 1.125rem;
    }
    
    .continue-subtitle {
        font-size: 0.8125rem;
    }
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.back-button:hover::before {
    left: 100%;
}

.back-button:hover {
    gap: 1rem;
    background: rgba(59, 130, 246, 0.15);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 1.25rem;
        flex-shrink: 0;
        order: 1;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        order: 3;
        width: 100%;
        margin-top: 0.75rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        white-space: nowrap;
    }
    
    .nav-link-highlight {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
        border-radius: 8px;
    }
    
    .dark-mode-toggle {
        order: 2;
        width: 38px;
        height: 38px;
        padding: 0.375rem;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Mobil için soru kartları - daha büyük ve okunaklı */
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .question-card {
        padding: 2rem 1.75rem;
    }
    
    .question-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    
    .question-preview {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .question-category {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .question-date {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .nav {
        gap: 0.375rem;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8125rem;
        padding: 0.25rem 0.5rem;
    }
    
    .nav-link-highlight {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
    
    .dark-mode-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }
    
    /* Çok küçük ekranlar için soru kartları - daha da büyük */
    .question-card {
        padding: 1.75rem 1.5rem;
    }
    
    .question-title {
        font-size: 1.375rem;
        line-height: 1.35;
    }
    
    .question-preview {
        font-size: 1rem;
        line-height: 1.65;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    .questions-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Scroll animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-card,
.category-card {
    animation: slideIn 0.6s ease backwards;
}

.question-card:nth-child(1) { animation-delay: 0.1s; }
.question-card:nth-child(2) { animation-delay: 0.2s; }
.question-card:nth-child(3) { animation-delay: 0.3s; }
.question-card:nth-child(4) { animation-delay: 0.4s; }
.question-card:nth-child(5) { animation-delay: 0.5s; }
.question-card:nth-child(6) { animation-delay: 0.6s; }

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-colored-strong);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-colored-strong), 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Dark Mode Styles */
body.dark-mode {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
}

body.dark-mode::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

body.dark-mode .header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

body.dark-mode .question-card,
body.dark-mode .category-card,
body.dark-mode .detail-header,
body.dark-mode .detail-header p,
body.dark-mode .detail-header ul,
body.dark-mode .detail-header ol,
body.dark-mode .detail-header li {
    color: #e2e8f0;
}

body.dark-mode .question-title,
body.dark-mode .detail-title,
body.dark-mode .section-title {
    color: #e2e8f0;
}

body.dark-mode .question-preview,
body.dark-mode .question-date,
body.dark-mode .category-card p {
    color: #94a3b8;
}

body.dark-mode .filter-btn {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

body.dark-mode .search-box {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .search-input {
    background: rgba(30, 41, 59, 0.5);
    color: #e2e8f0;
}

body.dark-mode .search-input::placeholder {
    color: #94a3b8;
}

body.dark-mode .question-footer {
    border-top-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .stat-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cookie-banner-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cookie-btn-reject {
    background: rgba(248, 250, 252, 0.8);
    color: var(--text-dark);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.cookie-btn-reject:hover {
    background: rgba(241, 245, 249, 1);
    border-color: var(--text-light);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn-settings:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Dark Mode for Cookie Banner */
body.dark-mode .cookie-banner {
    background: rgba(30, 41, 59, 0.98);
    border-top-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .cookie-banner-text h3 {
    color: #e2e8f0;
}

body.dark-mode .cookie-banner-text p {
    color: #94a3b8;
}

body.dark-mode .cookie-banner-text a {
    color: #60a5fa;
}

body.dark-mode .cookie-btn-reject {
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    border-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .cookie-btn-reject:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
}

body.dark-mode .cookie-btn-settings {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.5);
}

body.dark-mode .cookie-btn-settings:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-color);
    color: #a78bfa;
}

/* Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner-icon {
        font-size: 2rem;
    }
    
    .cookie-banner-text {
        text-align: left;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

body.dark-mode .view-count,
body.dark-mode .like-count {
    color: #e2e8f0;
}

body.dark-mode .stat-item:hover {
    background: rgba(30, 41, 59, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

body.dark-mode .action-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
    margin-top: 60px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    line-height: 1.8;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: justify;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.values-list li {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 15px;
    line-height: 1.7;
}

.values-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

/* Dark Mode for About Section */
body.dark-mode .about-section {
    background: rgba(15, 23, 42, 0.8);
}

body.dark-mode .about-text h3 {
    color: #60a5fa;
}

body.dark-mode .about-text p {
    color: #e2e8f0;
}

body.dark-mode .feature-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .feature-card h4 {
    color: #e2e8f0;
}

body.dark-mode .feature-card p {
    color: #94a3b8;
}

body.dark-mode .values-list li {
    background: rgba(30, 41, 59, 0.8);
    border-left-color: #60a5fa;
    color: #e2e8f0;
}

body.dark-mode .values-list li strong {
    color: #60a5fa;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

body.dark-mode .action-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(59, 130, 246, 0.6);
}
