/* Zabıt Katipleri Web Sitesi - Ana CSS Dosyası */

/* Genel Stiller */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navbar Özelleştirmeleri */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.navbar-nav .nav-link span {
    margin-left: 0.25rem;
}

/* Logo ve site adı hizalama */
.navbar .d-flex.align-items-center a {
    text-decoration: none;
    color: white;
}

.navbar .d-flex.align-items-center a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive navbar düzenlemeleri */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-item {
        color: white;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

/* Card Özelleştirmeleri */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

/* Forum Kartları - Mavi Kenarlık */
.forum-post {
    border: 2px solid #0d6efd !important;
}

.forum-topic-header {
    border: 2px solid #0d6efd !important;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Button Özelleştirmeleri */
.btn {
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

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

/* Form Özelleştirmeleri */
.form-control {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

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

/* Alert Özelleştirmeleri */
.alert {
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
}

.alert-dismissible .btn-close {
    padding: 0.75rem;
}

/* Badge Özelleştirmeleri */
.badge {
    font-weight: 500;
    font-size: 0.75em;
}

/* Table Özelleştirmeleri */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    font-weight: 600;
    background-color: var(--light-color);
    border-bottom: 2px solid #dee2e6;
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(0, 0, 0, 0.025);
}

/* Klavye Sınavı Özel Stiller */
.typing-container {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
}

.typing-text-container {
    height: 300px;
    overflow-y: auto;
    border: 2px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: white;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-height: 300px;
    max-height: 300px;
}

.typing-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    text-align: justify;
}

.typing-input {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    resize: none;
    text-align: justify;
}

.typing-stats {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
}

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

.typing-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.typing-stat .stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 500;
}

/* Correct/Incorrect text highlighting */
.correct-char {
    background-color: #d4edda;
    color: #155724;
}

.incorrect-char {
    background-color: #f8d7da;
    color: #721c24;
}

.current-char {
    background-color: #fff3cd;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Forum Özel Stiller */
.forum-category {
    border-left: 4px solid var(--primary-color);
    transition: border-color 0.3s ease;
}

.forum-category:hover {
    border-left-color: var(--success-color);
}

.forum-topic {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.forum-topic:last-child {
    border-bottom: none;
}

.forum-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.forum-stats {
    text-align: center;
    font-size: 0.875rem;
}

.forum-stats .stat-number {
    font-weight: 700;
    color: var(--primary-color);
}

/* Blog Özel Stiller */
.blog-post-card {
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.blog-post-excerpt {
    color: #6c757d;
    line-height: 1.6;
}

.blog-content {
    line-height: 1.8;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

/* Profil Sayfası Özel Stiller */
.profile-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.profile-stats .stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar .d-flex.align-items-center img {
        height: 50px !important;
        margin-right: 10px !important;
    }
    
    .navbar .d-flex.align-items-center .navbar-brand {
        font-size: 1.1rem;
    }
    
    .typing-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .typing-text-container {
        height: 250px;
        flex-shrink: 0;
        flex-grow: 0;
        min-height: 250px;
        max-height: 250px;
    }
    
    .typing-text {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .typing-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .typing-stat .stat-value {
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar .d-flex.align-items-center img {
        height: 40px !important;
        margin-right: 8px !important;
    }
    
    .navbar .d-flex.align-items-center .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .typing-text-container {
        height: 180px;
        flex-shrink: 0;
        flex-grow: 0;
        min-height: 180px;
        max-height: 180px;
    }
    
    .typing-text {
        font-size: 0.9rem;
        min-height: 150px;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Yükleniyor Animasyonu */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* Footer Stiller */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #adb5bd;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.rounded-custom {
    border-radius: 0.5rem !important;
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn, .alert {
        display: none !important;
    }
    
    .container {
        width: 100% !important;
        max-width: none !important;
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
}


/* Modern Tasarım İyileştirmeleri */

/* Gelişmiş Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Gelişmiş Hover Efektleri */
.card-hover-effect {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-modern::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;
}

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

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neumorphism Effect */
.neuro-card {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.neuro-card:hover {
    box-shadow: 
        inset 20px 20px 60px #bebebe,
        inset -20px -20px 60px #ffffff;
}

/* Improved Typography */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Improved Form Elements */
.form-floating-modern {
    position: relative;
}

.form-floating-modern input {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-floating-modern input:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.form-floating-modern label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #999;
}

.form-floating-modern input:focus + label,
.form-floating-modern input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Progress Bars */
.progress-modern {
    height: 8px;
    border-radius: 10px;
    background: #e0e0e0;
    overflow: hidden;
}

.progress-modern .progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
    position: relative;
}

.progress-modern .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 50px 50px;
    animation: move 2s linear infinite;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Modern Navigation */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link-modern {
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
    width: 80%;
}

/* Improved Cards */
.card-modern {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-modern .card-img-top {
    transition: transform 0.4s ease;
}

.card-modern:hover .card-img-top {
    transform: scale(1.1);
}

/* Tooltip Improvements */
.tooltip-modern {
    position: relative;
    cursor: pointer;
}

.tooltip-modern::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-modern::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-modern:hover::before,
.tooltip-modern:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive Grid System */
.grid-modern {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
    .grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .card-modern {
        background: #2d3748;
        color: white;
    }
    
    .neuro-card {
        background: #2d3748;
        box-shadow: 
            20px 20px 60px #1a202c,
            -20px -20px 60px #4a5568;
    }
    
    .navbar-modern {
        background: rgba(45, 55, 72, 0.95);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
}

/* Accessibility Improvements */
.focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Quick Action Cards */
.quick-action-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quick-action-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-action-card p {
    opacity: 0.9;
    line-height: 1.4;
}

.quick-action-card .btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-action-card .btn:hover {
    transform: translateY(-1px);
}

/* Featured Posts Styling */
.featured-posts {
    margin-bottom: 4rem;
}

.featured-post-card {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-post-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.featured-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-post-card:hover .featured-post-overlay {
    opacity: 1;
}

.featured-post-overlay i {
    color: white;
    font-size: 2rem;
    transform: translateX(-10px);
    transition: transform 0.3s ease;
}

.featured-post-card:hover .featured-post-overlay i {
    transform: translateX(0);
}

.post-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.featured-post-card .card-body {
    padding: 1.25rem;
}

.featured-post-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-post-card:hover .card-title {
    color: var(--primary-color) !important;
}

/* Responsive adjustments for featured posts */
@media (max-width: 768px) {
    .quick-action-card {
        margin-bottom: 1rem;
    }
    
    .quick-action-card h5 {
        font-size: 1rem;
    }
    
    .quick-action-card p {
        font-size: 0.85rem;
    }
    
    .featured-post-image {
        height: 180px;
    }
    
    .featured-post-card .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .featured-post-image {
        height: 160px;
    }
    
    .featured-post-card .card-title {
        font-size: 0.95rem;
    }
}

/* Şampiyonlar Kartı Stilleri */
.champions-list {
    max-height: 400px;
    overflow-y: auto;
}

.champion-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.champion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.champion-rank {
    font-size: 1.2rem;
}

.champion-name {
    font-size: 0.95rem;
    line-height: 1.2;
}

.champion-stats {
    font-size: 0.8rem;
    line-height: 1.3;
}

.champion-stats i {
    width: 12px;
    text-align: center;
    margin-right: 3px;
}

/* Şampiyonlar kartı responsive */
@media (max-width: 768px) {
    .champions-list {
        max-height: 300px;
    }
    
    .champion-item {
        padding: 0.75rem !important;
    }
    
    .champion-name {
        font-size: 0.9rem;
    }
    
    .champion-stats {
        font-size: 0.75rem;
    }
}

/* Yorum Sistemi Stilleri */
.comment-item {
    transition: box-shadow 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-actions {
    margin-top: 0.5rem;
}

.comment-actions .btn {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.comment-actions .btn i {
    margin-right: 0.25rem;
}

.vote-btn.active {
    transform: scale(1.05);
}

.vote-count {
    font-weight: 600;
}

/* Yorum formu stilleri */
#commentForm textarea {
    resize: vertical;
    min-height: 80px;
}

#commentForm textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Responsive yorum stilleri */
@media (max-width: 768px) {
    .comment-item .card-body {
        padding: 1rem;
    }
    
    .comment-actions .btn {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .comment-actions .btn i {
        margin-right: 0.2rem;
    }
}

/* Forum Rank Badge Stilleri */
.rank-badge {
    transition: transform 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    width: 12px !important;
    height: 12px !important;
}

.rank-badge:hover {
    transform: scale(1.1);
}

.rank-text {
    font-weight: 500;
    color: #6c757d;
}

.rank-container {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Rank seviyelerine göre özel renkler */
.rank-level-1 .rank-text { color: #6c757d; } /* Üye */
.rank-level-2 .rank-text { color: #198754; } /* Deneyimli */
.rank-level-3 .rank-text { color: #0d6efd; } /* Kıdemli */
.rank-level-4 .rank-text { color: #6f42c1; } /* Uzman */
.rank-level-5 .rank-text { color: #fd7e14; } /* Öncü */
.rank-level-6 .rank-text { color: #dc3545; } /* Saygın */
.rank-level-7 .rank-text { color: #d63384; } /* Usta */
.rank-level-8 .rank-text { color: #ffc107; } /* Efsane */

/* Haber Bülteni Başlık Alt Çizgisi */
.news-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}


