/* === TEMEL STİLLER === */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0f0d17;
    color: #e0e1dd;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Scroll Bar - Temaya Uygun */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.8) 0%, rgba(26, 23, 38, 0.6) 100%);
    border-left: 1px solid rgba(42, 36, 56, 0.5);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.7) 0%, rgba(79, 70, 229, 0.6) 100%);
    border-radius: 6px;
    border: 2px solid rgba(15, 13, 23, 0.3);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.9) 0%, rgba(79, 70, 229, 0.8) 100%);
    border-color: rgba(103, 84, 169, 0.4);
    box-shadow: 0 0 10px rgba(103, 84, 169, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.2);
    transform: scaleX(1.1);
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    box-shadow: 0 0 15px rgba(103, 84, 169, 0.6), inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Firefox Scroll Bar */
html,
body {
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 84, 169, 0.7) rgba(15, 13, 23, 0.8);
}

.sidebar {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    background-color: #1a1726;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    position: fixed;
    left: 0;
    top: 0;
    box-sizing: border-box;
    border-right: 1px solid #2a2438;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a, .bottom-links a {
    color: #7f8ea3;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a.active, .nav-links a:hover, .bottom-links a:hover {
    color: #fff;
    background-color: #6754a9;
}

.bottom-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links svg, .bottom-links svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    color: currentColor;
}

.nav-links .ti, .bottom-links .ti {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    margin-left: 60px;
    width: calc(100% - 60px);
    padding: 0;
}

.home-content {
    padding: 30px;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px);
}

.home-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2a2438;
}

.home-header h1 {
    font-size: 32px;
    margin: 0 0 8px 0;
    color: #e0e1dd;
    font-weight: 700;
}

.home-header p {
    margin: 0;
    color: #7f8ea3;
    font-size: 16px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #1a1726;
    height: 40px;
    border-bottom: 1px solid #2a2438;
}

header .header-left {
    flex: 0 0 auto;
}

header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    flex: 0 0 auto;
}

.header-right a {
    color: #7f8ea3;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-right a:hover {
    color: #fff;
    background-color: #6754a9;
}

.header-right svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: currentColor;
}

/* Şikayet Bildirme Butonu */
.complaint-btn {
    color: #7f8ea3;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.complaint-btn:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.complaint-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: currentColor;
}


/* Şikayet Modal */
.complaint-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.complaint-modal {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.complaint-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #2a2438;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.complaint-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.complaint-modal-header h3 i {
    width: 22px;
    height: 22px;
    color: #ef4444;
}

.complaint-modal-close {
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.complaint-modal-close:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.complaint-modal-close i {
    width: 20px;
    height: 20px;
}

.complaint-modal-content {
    padding: 24px;
}

.complaint-modal-content .form-group {
    margin-bottom: 20px;
}

.complaint-modal-content .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #e0e1dd;
}

.complaint-modal-content .form-group label i {
    width: 16px;
    height: 16px;
    color: #6754a9;
}

.complaint-modal-content .form-group label span {
    flex: 1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #5c5f6e;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.btn-cancel-complaint,
.btn-submit-complaint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.btn-cancel-complaint {
    background: linear-gradient(135deg, rgba(127, 142, 163, 0.1) 0%, rgba(95, 106, 120, 0.05) 100%);
    border: 1px solid rgba(127, 142, 163, 0.3);
    color: #7f8ea3;
}

.btn-cancel-complaint:hover {
    background: linear-gradient(135deg, rgba(127, 142, 163, 0.2) 0%, rgba(95, 106, 120, 0.15) 100%);
    border-color: #7f8ea3;
    color: #e0e1dd;
}

.btn-submit-complaint {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.btn-submit-complaint:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-submit-complaint:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cancel-complaint i,
.btn-submit-complaint i {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .complaint-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .complaint-modal-header {
        padding: 16px 20px;
    }
    
    .complaint-modal-header h3 {
        font-size: 18px;
    }
    
    .complaint-modal-content {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel-complaint,
    .btn-submit-complaint {
        width: 100%;
        justify-content: center;
    }
}

/* Kullanıcı Menüsü */
.user-menu {
    position: relative;
}

.user-menu #user-menu-btn {
    color: #7f8ea3;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.user-menu #user-menu-btn:hover {
    border-color: #6754a9;
    background-color: rgba(103, 84, 169, 0.1);
}

.user-menu #user-menu-btn #user-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: currentColor;
}

.user-menu #user-menu-btn #user-header-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    min-width: 220px;
    width: max-content;
    max-width: 320px;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid #2a2438;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    border: 2px solid #6754a9;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
    transition: transform 0.3s ease;
}

.user-info:hover .user-avatar {
    transform: scale(1.05);
}

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

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

/* User Info İçindeki Butonlar - Sağ Üst Köşe */
.user-info-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    pointer-events: auto;
}

.user-settings-btn,
.user-punishment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: transparent;
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 6px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 101;
    pointer-events: auto !important;
}

.user-settings-btn:hover {
    background: rgba(103, 84, 169, 0.1);
    border-color: rgba(103, 84, 169, 0.5);
    color: #6754a9;
}

.user-punishment-btn {
    border-color: rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.user-punishment-btn:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
    color: #f59e0b;
    transform: scale(1.05);
}

.user-settings-btn i,
.user-punishment-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: currentColor;
    pointer-events: none;
}

/* Ceza Badge Count (Bildirim ikonunun üzerinde) */
.punishment-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f0d17;
    z-index: 12;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    line-height: 1;
}

.user-discriminator {
    font-size: 11px;
    color: #7f8ea3;
    font-weight: 400;
}

.user-actions {
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.user-action-btn {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-width: 180px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.12) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1.5px solid rgba(103, 84, 169, 0.25);
    border-radius: 10px;
    color: #e0e1dd !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    cursor: pointer;
    letter-spacing: 0.2px;
    min-height: 38px;
    white-space: nowrap;
}

.user-action-btn[style*="none"] {
    display: none !important;
}


.user-action-btn span {
    color: #e0e1dd;
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
}

.user-action-btn i {
    width: 18px;
    height: 18px;
    color: currentColor;
    stroke-width: 2.5;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.user-action-btn:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.22) 0%, rgba(79, 70, 229, 0.18) 100%);
    border-color: #6754a9;
    color: #fff !important;
}

.user-action-btn:hover span {
    color: #fff;
}

.user-action-btn:hover i {
    color: #fff;
}

/* Google giriş butonu özel stil */
#login-btn {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(103, 84, 169, 0.15) 100%);
    border-color: rgba(88, 101, 242, 0.4);
}

#login-btn:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(103, 84, 169, 0.25) 100%);
    border-color: #5865f2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3), 0 0 0 1px rgba(88, 101, 242, 0.1);
}

/* Çıkış butonu özel stil */
#logout-btn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

#logout-btn:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3), 0 0 0 1px rgba(239, 68, 68, 0.1);
}

/* Seri Listesi Sayfası */
.series-list-content {
    padding: 30px;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px);
}

.filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 10px;
}

.filter-item {
    position: relative;
}

.filter-item-search {
    flex: 1;
    min-width: 180px;
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search-icon {
    position: absolute;
    left: 10px;
    width: 14px;
    height: 14px;
    color: #7f8ea3;
    pointer-events: none;
}

.filter-input {
    width: 100%;
    padding: 6px 10px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #e0e1dd;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    min-height: 32px;
}

.filter-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.filter-clear {
    position: absolute;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.filter-clear:hover {
    background-color: rgba(103, 84, 169, 0.1);
    color: #6754a9;
}

.filter-clear i {
    width: 16px;
    height: 16px;
}

.series-list-results {
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 24px;
}

.results-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2438;
}

.results-count {
    font-size: 14px;
    color: #7f8ea3;
    font-weight: 500;
}

.results-count span {
    color: #6754a9;
    font-weight: 600;
}

/* Kütüphane Sayfası */
.library-content {
    padding: 30px;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px);
}

.library-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2438;
}

.library-header h1 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #e0e1dd;
    font-weight: 700;
}

.library-header p {
    margin: 0;
    color: #7f8ea3;
    font-size: 14px;
}

.library-results {
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 24px;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* === PANEL GENEL STİLLERİ === */
.admin-panel {
    display: block;
    padding: 30px;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px); /* header yüksekliği + border */
    animation: fadeIn 0.3s ease-in-out;
}

.admin-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2438;
}

.panel-header h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e1dd;
    font-weight: 600;
}

.panel-header p {
    color: #7f8ea3;
    margin: 0;
    font-size: 16px;
}

.panel-header-with-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.panel-title-group {
    flex: 1;
}

/* === BUTON STİLLERİ === */
.btn-primary, .btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6754a9 0%, #5a4891 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 84, 169, 0.3);
}

.btn-secondary {
    background-color: #2a2438;
    color: #e0e1dd;
    border: 1px solid #3a3448;
}

.btn-secondary:hover {
    background-color: #3a3448;
    border-color: #6754a9;
}

/* === SERİ LİSTESİ STİLLERİ === */
.series-table-wrapper {
    margin-top: 24px;
}

.series-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.series-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: #7f8ea3;
    font-size: 14px;
    padding: 40px 20px;
    background-color: #1a1726;
    border-radius: 12px;
    border: 1px dashed #2a2438;
}

/* === TÜR SEÇİCİ PANEL === */
.genre-selector-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.genre-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    min-height: 44px;
}

.genre-search-box:focus-within {
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
    background-color: #1a1726;
}

.genre-search-box .search-icon {
    width: 18px;
    height: 18px;
    color: #7f8ea3;
    flex-shrink: 0;
    margin-left: 2px;
    margin-right: 8px;
}

.genre-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
    width: 100%;
}

.genre-search-input:focus {
    outline: none;
}

.genre-search-input::placeholder {
    color: #7f8ea3;
}

.genre-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: 12px;
    padding: 0;
}

.genre-search-clear.show {
    display: flex;
}

.genre-search-clear:hover {
    background-color: rgba(103, 84, 169, 0.1);
    color: #6754a9;
}

.genre-search-clear i {
    width: 16px;
    height: 16px;
}

.genre-selector-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.genre-selector-btn:hover {
    background-color: #221c33;
    border-color: #6754a9;
    color: #fff;
}

.genre-selector-btn i {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.genre-selector-btn .chevron-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.genre-selector-btn.active .chevron-icon {
    transform: rotate(180deg);
}

.genre-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.genre-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.genre-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.genre-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.genre-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2a2438;
}

.genre-panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
}

.genre-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.genre-panel-close:hover {
    background-color: rgba(103, 84, 169, 0.1);
    color: #6754a9;
}

.genre-panel-close i {
    width: 20px;
    height: 20px;
}

.genre-panel-search {
    padding: 16px 20px;
    border-bottom: 1px solid #2a2438;
}

.genre-panel-search .genre-search-box {
    width: 100%;
    background-color: #1a1726;
    border: 1px solid #2a2438;
}

.genre-panel-search .genre-search-box:focus-within {
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
    background-color: #1a1726;
}

.genre-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.genre-panel-content::-webkit-scrollbar {
    width: 6px;
}

.genre-panel-content::-webkit-scrollbar-track {
    background: #0f0d17;
}

.genre-panel-content::-webkit-scrollbar-thumb {
    background: #6754a9;
    border-radius: 3px;
}

.genre-panel-content::-webkit-scrollbar-thumb:hover {
    background: #7a66c4;
}

.genre-panel-loading,
.genre-panel-empty {
    text-align: center;
    color: #7f8ea3;
    font-size: 14px;
    padding: 40px 20px;
}

.genre-item-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.genre-item-btn:hover {
    background-color: #221c33;
    border-color: #6754a9;
    color: #fff;
    transform: translateX(4px);
}

.genre-item-btn.active {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(90, 72, 145, 0.2) 100%);
    border-color: #6754a9;
    color: #a78bfa;
}

.genre-item-btn i {
    width: 18px;
    height: 18px;
    color: currentColor;
    flex-shrink: 0;
}

.genre-item-btn span {
    flex: 1;
}

.series-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: #7f8ea3;
    font-size: 14px;
    padding: 40px 20px;
}

/* Responsive - Tür Seçici Panel */
@media (max-width: 768px) {
    .genre-selector-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .genre-panel {
        width: 95%;
        max-height: 85vh;
    }
    
    .genre-panel-header {
        padding: 16px;
    }
    
    .genre-panel-header h3 {
        font-size: 16px;
    }
    
    .genre-panel-search {
        padding: 12px 16px;
    }
    
    .genre-panel-content {
        padding: 10px 16px 16px;
    }
    
    .genre-item-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* === SERİ KARTLARI === */
.series-card {
    background-color: #1a1726;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2438;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.series-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
}

.series-cover {
    position: relative;
    width: 100%;
    padding-top: 140%; /* 5:7 oranı (manga kapak oranı) */
    overflow: hidden;
    background-color: #0f0d17;
}

.series-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.series-card:hover .series-cover img {
    transform: scale(1.05);
}

.series-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    background-color: rgba(26, 23, 38, 0.8);
    color: #e0e1dd;
}

.series-status-badge.ongoing {
    background-color: rgba(103, 84, 169, 0.25);
    color: #a78bfa;
    border: 1px solid rgba(103, 84, 169, 0.4);
}

.series-status-badge.completed {
    background-color: rgba(79, 70, 229, 0.25);
    color: #818cf8;
    border: 1px solid rgba(79, 70, 229, 0.4);
}

.series-status-badge.paused {
    background-color: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.series-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.series-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-original-name {
    margin: 0;
    font-size: 13px;
    color: #7f8ea3;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.series-type,
.series-year {
    font-size: 12px;
    color: #7f8ea3;
    padding: 4px 8px;
    background-color: #0f0d17;
    border-radius: 4px;
}

.series-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2438;
}

.btn-edit,
.btn-delete {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #7f8ea3;
}

.btn-edit {
    border: 1px solid #2a2438;
}

.btn-edit:hover {
    background-color: #2a2438;
    color: #6754a9;
    border-color: #6754a9;
}

.btn-delete {
    border: 1px solid #2a2438;
}

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

.btn-edit svg,
.btn-delete svg {
    width: 18px;
    height: 18px;
}

/* === SERİ DETAY SAYFASI === */
.series-detail-page {
    padding: 0;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px);
}

/* 404 Sayfası */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    padding: 40px 20px;
}

.error-404 h1 {
    font-size: 120px;
    margin: 0;
    color: #6754a9;
    font-weight: 700;
}

.error-404 p {
    font-size: 24px;
    color: #7f8ea3;
    margin: 20px 0 40px 0;
}

/* Seri Header */
.series-header {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #1a1726 0%, #0f0d17 100%);
    border-bottom: 1px solid #2a2438;
}

.series-cover-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.series-cover-large {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    aspect-ratio: 5 / 7;
    background-color: #1a1726;
}

.series-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-status-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.status-badge.ongoing {
    background-color: rgba(103, 84, 169, 0.9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.4);
}

.status-badge.completed {
    background-color: rgba(79, 70, 229, 0.9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.status-badge.paused {
    background-color: rgba(139, 92, 246, 0.9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.series-info-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.series-title-main {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #e0e1dd;
    line-height: 1.2;
}

.series-original-name-main {
    font-size: 18px;
    color: #7f8ea3;
    font-style: italic;
    margin: 0;
}

.series-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(26, 23, 38, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid rgba(103, 84, 169, 0.3);
    backdrop-filter: blur(10px);
}

.rating-stars {
    display: flex;
    gap: 4px;
    cursor: pointer;
    padding: 4px 0;
}

.rating-stars .star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #4a4558;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.rating-stars .star i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: all 0.25s ease;
}

/* Tüm rating yıldızları - Sarı */
.rating-stars .star.filled,
.rating-stars .star.hover {
    color: #fbbf24;
    fill: #fbbf24;
}

.rating-stars .star.filled i,
.rating-stars .star.hover i {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.rating-stars .star:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.5));
}

.rating-stars .star.filled {
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

/* Kullanıcının verdiği yıldızlar - Sarı (kırmızı yerine) */
.rating-stars .star.filled.user-rated {
    color: #fbbf24;
    fill: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.rating-stars .star.filled.user-rated i {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.rating-value {
    font-weight: 700;
    font-size: 18px;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.rating-count {
    color: #8b8fa3;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

.series-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.genre-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #6754a9;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.genre-tag:hover {
    background-color: #5a4891;
    transform: translateY(-2px);
}

.series-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item-small {
    display: inline-block;
    padding: 4px 10px;
    background-color: #2a2438;
    color: #a9a5b6;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #3a3448;
}

.series-info-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(21, 19, 31, 0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(42, 36, 56, 0.6);
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 7px 10px;
    background: rgba(15, 13, 23, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(42, 36, 56, 0.3);
    transition: all 0.3s ease;
}


.info-item:hover {
    background: rgba(15, 13, 23, 0.6);
    border-color: rgba(42, 36, 56, 0.5);
    transform: translateY(-1px);
}

.info-item-full {
    grid-column: 1 / -1;
}

.info-value-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.info-value-text {
    font-size: 14px;
    color: #c9c5d0;
    line-height: 1.5;
}

.info-item-team-wrapper {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(42, 36, 56, 0.5);
    background: transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.info-item-team-wrapper:hover {
    background: transparent;
    transform: none;
}

.info-item-team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.info-item-team-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item-team .info-label {
    margin-bottom: 6px;
    font-size: 11px;
}

.info-item-team .info-value-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-value-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(42, 36, 56, 0.3);
    border-radius: 5px;
    border: 1px solid rgba(42, 36, 56, 0.3);
    transition: all 0.2s ease;
}

.info-value-item:hover {
    background: rgba(42, 36, 56, 0.4);
    border-color: rgba(42, 36, 56, 0.5);
}

.info-role-label {
    font-size: 9px;
    color: #8b8fa3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.info-role-value {
    font-size: 12px;
    color: #e0e1dd;
    font-weight: 500;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #8b8fa3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.info-label svg {
    width: 14px;
    height: 14px;
    color: #7f8ea3;
    opacity: 0.8;
}

.info-value {
    font-size: 14px;
    color: #e0e1dd;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1px;
}

.series-actions-main {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-follow {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #6754a9 0%, #5a4891 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-follow::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-follow:hover::before {
    left: 100%;
}

.btn-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 84, 169, 0.4);
    background: linear-gradient(135deg, #5a4891 0%, #4a3d7a 100%);
}

.btn-follow:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.3);
}

.btn-follow.following {
    background: #2a2438;
    border: 1px solid #6754a9;
    box-shadow: 0 4px 12px rgba(42, 36, 56, 0.3);
}

.btn-follow.following:hover {
    background: #3a3448;
    border-color: #6754a9;
    box-shadow: 0 6px 20px rgba(42, 36, 56, 0.4);
}

.btn-follow svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* İlk Bölümü Oku / Kaldığım Yerden Oku Butonları */
.btn-read-first,
.btn-read-continue {
    flex: 1;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-read-first::before,
.btn-read-continue::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-read-first:hover::before,
.btn-read-continue:hover::before {
    left: 100%;
}

.btn-read-first:hover,
.btn-read-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
}

.btn-read-first:active,
.btn-read-continue:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.btn-read-first i,
.btn-read-continue i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-read-continue {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-read-continue:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* İçerik Bölümü */
.series-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 32px;
}

.content-section-fullwidth {
    grid-column: 1 / -1;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-section {
    background-color: #1a1726;
    border-radius: 12px;
    border: 1px solid #2a2438;
    padding: 24px;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0 0 20px 0;
}

.content-section h2 svg {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.series-summary {
    color: #a9a5b6;
    line-height: 1.8;
    font-size: 15px;
}

/* Konu Bölümü */
.series-summary-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.series-summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px 0;
    padding: 0;
    color: #e0e1dd;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(42, 36, 56, 0.6);
}

.series-summary-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.series-summary-content {
    padding: 0;
}

.series-summary-content .series-summary {
    margin: 0;
    padding: 0;
    color: #a9a5b6;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.series-summary-content .series-summary.collapsed {
    max-height: 120px;
    position: relative;
    overflow: hidden;
}

.series-summary-content .series-summary.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(15, 13, 23, 0.95));
    pointer-events: none;
}

.series-summary-content .series-summary p {
    margin: 0 0 12px 0;
}

.series-summary-content .series-summary p:last-child {
    margin-bottom: 0;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 6px;
    color: #a78bfa;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    font-family: inherit;
}

.btn-read-more:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: rgba(103, 84, 169, 0.5);
    color: #c4b5fd;
}

.btn-read-more .read-more-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-read-more.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* Mobil için Konu Bölümü */
@media (max-width: 768px) {
    .series-summary-content .series-summary {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .series-summary-content .series-summary.collapsed {
        max-height: 100px;
    }
    
    .btn-read-more {
        padding: 7px 14px;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .btn-read-more .read-more-icon {
        width: 12px;
        height: 12px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.chapter-count {
    font-size: 14px;
    color: #7f8ea3;
    font-weight: 500;
}

/* Bölüm Sıralama Butonu */
.btn-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(15, 13, 23, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 8px;
    color: #7f8ea3;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sort:hover {
    background: rgba(103, 84, 169, 0.1);
    border-color: rgba(103, 84, 169, 0.3);
    color: #e0e1dd;
}

.btn-sort i {
    width: 16px;
    height: 16px;
}

.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #0f0d17;
    border-radius: 8px;
    border: 1px solid #2a2438;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.chapter-item:hover {
    background-color: #221c33;
    border-color: #6754a9;
    transform: translateX(4px);
}

/* Seri sayfası için thumbnail - 125x85 */
.chapters-list .chapter-item .chapter-thumbnail-wrapper {
    width: 125px !important;
    height: 85px !important;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(15, 13, 23, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chapter-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8ea3;
}

.chapter-thumbnail-placeholder i {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

/* Yeni Badge - Chapter Item Sağ Üst - Minimal */
.chapters-list .chapter-item .chapter-new-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 20;
    background: rgba(103, 84, 169, 0.15);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 3px;
    padding: 0px 12px;
    transition: all 0.2s ease;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapters-list .chapter-item:hover .chapter-new-badge {
    background: rgba(103, 84, 169, 0.2);
    border-color: rgba(103, 84, 169, 0.5);
}

.chapters-list .chapter-item .chapter-new-badge span {
    font-size: 9px;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.chapter-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.chapter-number {
    font-size: 15px;
    font-weight: 600;
    color: #e0e1dd;
}

.chapter-title {
    font-size: 13px;
    color: #7f8ea3;
}

.chapter-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.chapter-date {
    font-size: 11px;
    color: #7f8ea3;
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-weight: 400;
    opacity: 0.7;
}

.chapter-meta svg {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.empty-chapters {
    text-align: center;
    padding: 60px 20px;
    color: #7f8ea3;
}

.empty-chapters svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #2a2438;
}

.empty-chapters p {
    margin: 0;
    font-size: 16px;
}

/* Yan Bilgiler */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    background-color: #1a1726;
    border-radius: 12px;
    border: 1px solid #2a2438;
    padding: 20px;
}

.sidebar-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0 0 16px 0;
}

.sidebar-section h3 svg {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #2a2438;
}

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

.sidebar-label {
    font-size: 13px;
    color: #7f8ea3;
}

.sidebar-value {
    font-size: 14px;
    color: #e0e1dd;
    font-weight: 500;
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .series-header {
        grid-template-columns: 240px 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .series-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-section-fullwidth {
        grid-column: 1;
    }
    
    .content-sidebar {
        order: -1;
    }
    
    .btn-sort {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .series-header {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .series-cover-large {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .series-title-main {
        font-size: 28px;
    }
    
    .series-info-card {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 10px;
    }
    
    .info-item {
        padding: 7px 10px;
    }
    
    .info-item-team {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .series-actions-main {
        flex-direction: column;
    }
    
    .info-item-team {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-item-team .info-value-group {
        flex-direction: column;
    }
    
    .info-value-item {
        padding: 4px 8px;
    }
    
    .series-cover-wrapper {
        gap: 10px;
    }
    
    .series-rating {
        padding: 12px;
        gap: 8px;
    }
    
    .rating-stars .star {
        width: 20px;
        height: 20px;
    }
    
    .rating-stars .star i {
        width: 18px;
        height: 18px;
    }
    
    .rating-value {
        font-size: 16px;
    }
    
    .rating-count {
        font-size: 10px;
    }
    
    .series-cover-wrapper {
        gap: 10px;
    }
    
    .series-rating {
        padding: 12px;
        gap: 8px;
    }
    
    .rating-stars .star {
        width: 20px;
        height: 20px;
    }
    
    .rating-stars .star i {
        width: 18px;
        height: 18px;
    }
    
    .rating-value {
        font-size: 16px;
    }
    
    .rating-count {
        font-size: 10px;
    }
}

/* === FORM STİLLERİ === */
.series-form {
    background-color: #1a1726;
    border-radius: 16px;
    border: 1px solid #2a2438;
    margin-top: 24px;
}

.form-container {
    padding: 32px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section {
    background-color: #0f0d17;
    border-radius: 12px;
    border: 1px solid #2a2438;
    padding: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: #6754a9;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 12px 16px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5c5f6e;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e1dd;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label .btn-add-genre {
    margin-left: auto;
}

.btn-add-genre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: rgba(103, 84, 169, 0.2);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 6px;
    color: #6754a9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-genre:hover {
    background: rgba(103, 84, 169, 0.3);
    border-color: rgba(103, 84, 169, 0.6);
    transform: scale(1.05);
}

.btn-add-genre i {
    width: 16px;
    height: 16px;
}

.genre-item {
    position: relative;
}

.genre-delete-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 4px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.genre-item:hover .genre-delete-btn {
    opacity: 1;
    pointer-events: all;
}

.genre-delete-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.1);
}

.genre-delete-btn i {
    width: 12px;
    height: 12px;
}

/* Durum Seçici */
.status-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.status-selector input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.status-option {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #2a2438;
    background-color: #0f0d17;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-option:hover {
    border-color: #6754a9;
    background-color: #221c33;
}

.status-selector input[type="radio"]:checked + .status-option {
    background: #6754a9;
    color: white;
    border-color: #6754a9;
}

/* Türler Grid */
.genre-search-wrapper {
    position: relative;
    margin-bottom: 16px;
}
.genre-search-input {
    width: 100%;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 10px 12px 10px 40px;
    color: #e0e1dd;
    font-size: 13px;
    transition: all 0.3s ease;
}
.genre-search-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #7f8ea3;
}

.genre-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 160px;
    overflow-y: auto;
    padding: 4px;
    perspective: 800px; /* Animasyon için perspektif */
}

.genre-item {
    display: flex;
    align-items: center;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Daha yumuşak bir animasyon eğrisi */
    max-height: 40px;
    overflow: hidden;
}

.genre-item.hiding {
    transform: scale(0.8) rotateZ(-5deg);
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: -8px; /* Gap'i kapatmak için */
    border-width: 0;
}

.genre-item.hidden {
    display: none;
}

.genre-item input[type="checkbox"] {
    display: none;
}

.genre-item label {
    display: block;
    padding: 8px 32px 8px 12px;
    background-color: #221c33;
    border: 1px solid #2a2438;
    border-radius: 8px; /* Diktörtgen görünüm için */
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    position: relative;
}

.genre-item label:hover {
    border-color: #6754a9;
}

.genre-item input[type="checkbox"]:checked + label {
    background-color: #6754a9;
    color: white;
    border-color: #6754a9;
}

/* === FORM ALT BÖLÜM (KAPAK & ETİKETLER) === */
.form-grid-bottom {
    display: grid;
    grid-template-columns: 250px 1fr; /* Kapak için sabit genişlik, etiketler için kalan alan */
    gap: 32px;
    margin-top: 24px;
}

/* Yeni Etiket Sistemi */
.tags-section {
    display: flex;
    flex-direction: column;
}

.tags-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.tags-search-wrapper {
    position: relative;
}

.tags-search-input {
    width: 100%;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 12px 16px 12px 40px;
    color: #e0e1dd;
    font-size: 14px;
    transition: all 0.3s ease;
}
.tags-search-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}

.suggested-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggested-tag-item {
    background-color: #221c33;
    border: 1px solid #2a2438;
    color: #a9a5b6;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
}

.suggested-tag-item:hover {
    background-color: #3a3448;
    border-color: #6754a9;
    color: #fff;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    background-color: #0f0d17;
    border-radius: 8px;
    min-height: 100px; /* Seçilen etiketler için alan */
    border: 1px solid #2a2438;
    align-content: flex-start; /* Öğeleri yukarı hizala */
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6754a9;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    animation: popIn 0.2s ease;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.tag-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 1;
}
.tag-remove:hover {
    opacity: 1;
}

/* Kapak Yükleme Alanı */
.upload-area {
    position: relative;
    border: 2px dashed #2a2438;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #0f0d17;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manga-cover-upload {
    height: 350px; /* Manga kapağı için daha uygun yükseklik */
    padding: 10px;
}

.upload-area:hover, .upload-area.dragover {
    border-color: #6754a9;
    background-color: #1f1a30;
}

.upload-area input[type="file"] {
    display: none;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #7f8ea3;
}
.upload-content i {
    width: 32px;
    height: 32px;
    color: #6754a9;
}
.upload-content h4 {
    color: #e0e1dd;
    margin: 0;
    font-size: 16px;
}
.upload-content p, .upload-content small {
    margin: 0;
    font-size: 12px;
}

.upload-preview {
    position: relative;
    width: 100%;
    height: 100%;
}
.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(231, 76, 60, 0.8);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-image:hover {
    background-color: #e74c3c;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding: 24px 32px;
    background-color: #1a1726;
    border-top: 1px solid #2a2438;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-panel {
        padding: 16px;
    }
    .form-container {
        padding: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-actions {
        padding: 16px;
    }
}

/* === KULLANICI YÖNETİMİ PANELİ === */
.users-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.users-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.users-stats .stat-card:hover {
    transform: translateY(-2px);
    border-color: #6754a9;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.users-stats .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-total-users .stat-icon {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    color: #6754a9;
}

.stat-punished .stat-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
}

.stat-banned .stat-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
}

.users-stats .stat-icon i {
    width: 24px;
    height: 24px;
}

.users-stats .stat-content {
    flex: 1;
}

.users-stats .stat-label {
    font-size: 12px;
    color: #7f8ea3;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.users-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #e0e1dd;
    line-height: 1;
}

.stat-total-users .stat-value {
    color: #6754a9;
}

.stat-punished .stat-value {
    color: #fbbf24;
}

.stat-banned .stat-value {
    color: #ef4444;
}

.users-management-content {
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 24px;
}

.users-filters {
    margin-bottom: 24px;
}

.filter-search {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search .search-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #7f8ea3;
    pointer-events: none;
    z-index: 1;
}

.filter-search .filter-input {
    width: 100%;
    padding: 12px 16px;
    padding-left: 42px;
    padding-right: 42px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.filter-search .filter-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.filter-search .filter-clear {
    position: absolute;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 2;
}

.filter-search .filter-clear:hover {
    background-color: rgba(103, 84, 169, 0.1);
    color: #6754a9;
}

.filter-search .filter-clear i {
    width: 16px;
    height: 16px;
}

.users-table-wrapper {
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 12px;
    overflow: hidden;
}

.users-table-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border-bottom: 2px solid #2a2438;
    gap: 12px;
}

.table-header-cell {
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.users-table-body {
    max-height: 600px;
    overflow-y: auto;
}

.users-table-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #2a2438;
    gap: 12px;
    transition: all 0.2s ease;
}

.users-table-row:hover {
    background-color: rgba(103, 84, 169, 0.05);
}

.users-table-row:last-child {
    border-bottom: none;
}

.table-cell {
    color: #e0e1dd;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.user-cell-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #6754a9;
    object-fit: cover;
}

.user-info-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name-cell {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 600;
}

.user-discriminator-cell {
    color: #7f8ea3;
    font-size: 12px;
}

.google-id {
    color: #7f8ea3;
    font-size: 12px;
    font-family: monospace;
}

.user-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.user-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.user-status.banned {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.user-status.muted {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.user-actions-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    color: #e0e1dd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.25) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
}

.btn-action i {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.btn-punish {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-punish:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
}

.btn-view {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.btn-view:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: #3b82f6;
}

.btn-toggle-admin {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.btn-toggle-admin:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
    border-color: #22c55e;
}

.btn-toggle-admin.is-admin {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.btn-toggle-admin.is-admin:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-color: #fbbf24;
}

/* === YORUM YÖNETİMİ PANELİ === */
.comments-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: #6754a9;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-total .stat-icon {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    color: #6754a9;
}

.stat-approved .stat-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.15) 100%);
    color: #22c55e;
}

.stat-pending .stat-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
}

.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #7f8ea3;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #e0e1dd;
    line-height: 1;
}

.stat-total .stat-value {
    color: #6754a9;
}

.stat-approved .stat-value {
    color: #22c55e;
}

.stat-pending .stat-value {
    color: #fbbf24;
}

.comments-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comments-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.comments-filters .filter-input {
    flex: 1;
    padding: 10px 14px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.comments-filters .filter-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.comments-filters .filter-select {
    flex: 1;
    padding: 10px 14px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.comments-filters .filter-select:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.btn-bulk-approve {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-bulk-approve:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-bulk-approve:active {
    transform: translateY(0);
}

.btn-bulk-approve:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-bulk-approve i {
    width: 16px;
    height: 16px;
}

.comments-table-wrapper {
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 12px;
    overflow: hidden;
}

.comments-table-header {
    display: flex;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-bottom: 2px solid #2a2438;
    padding: 12px 16px;
    gap: 12px;
}

.comments-table-row {
    display: flex;
    padding: 14px 16px;
    border-bottom: 1px solid #1a1726;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.comments-table-row:hover {
    background: rgba(103, 84, 169, 0.05);
}

.comments-table-row:last-child {
    border-bottom: none;
}

.comment-content-preview {
    color: #e0e1dd;
    font-size: 13px;
    line-height: 1.5;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comment-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.comment-status.pending {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.comment-status.approved {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.comment-status.rejected {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.comment-status i {
    width: 12px;
    height: 12px;
}

.comment-actions-cell {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-approve-comment {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.btn-approve-comment:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
    border-color: #22c55e;
}

.btn-delete-comment-admin {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-delete-comment-admin:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
}

.admin-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 4px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 1px solid rgba(251, 191, 36, 0.6);
    border-radius: 3px;
    color: #fbbf24;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    height: 14px;
}

.series-name {
    color: #7f8ea3;
    font-size: 12px;
}

.comment-detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.comment-detail-modal {
    background: linear-gradient(135deg, #0f0d17 0%, #1a1726 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(103, 84, 169, 0.1);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.comment-detail-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #2a2438;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.comment-detail-modal .modal-header h3 {
    margin: 0;
    color: #e0e1dd;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-detail-modal .modal-header h3 i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.comment-detail-modal .modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-detail-modal .modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.05);
}

.comment-detail-modal .modal-close i {
    width: 18px;
    height: 18px;
}

.comment-detail-modal .modal-content {
    padding: 24px;
}

/* Modal Genel Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(15, 13, 23, 0.98) 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #2a2438;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    width: 24px;
    height: 24px;
    color: #6754a9;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.05);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* Takvim Detay Modal */
.calendar-detail-modal-content {
    max-width: 900px;
}

.calendar-detail-stats {
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 12px;
}

.calendar-detail-total {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #6754a9;
}

.calendar-detail-total i {
    width: 24px;
    height: 24px;
}

.calendar-detail-series-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-detail-series-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.calendar-detail-series-item:hover {
    background: rgba(103, 84, 169, 0.1);
    border-color: #6754a9;
    transform: translateX(4px);
}

.calendar-detail-series-cover {
    width: 80px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(103, 84, 169, 0.3);
}

.calendar-detail-series-info {
    flex: 1;
    min-width: 0;
}

.calendar-detail-series-name {
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 8px;
}

.calendar-detail-series-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6754a9;
    font-weight: 600;
}

.calendar-detail-series-count i {
    width: 18px;
    height: 18px;
}


/* Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .calendar-detail-series-item {
        padding: 12px;
        gap: 12px;
    }
    
    .calendar-detail-series-cover {
        width: 60px;
        height: 82px;
    }
    
    .calendar-detail-series-name {
        font-size: 16px;
    }
    
    .calendar-detail-series-count {
        font-size: 13px;
    }
    
}

.comment-detail-user {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(103, 84, 169, 0.05);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.comment-detail-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #6754a9;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-detail-user-info {
    flex: 1;
}

.comment-detail-username {
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #7f8ea3;
}

.comment-detail-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-detail-meta i {
    width: 14px;
    height: 14px;
}

.comment-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.comment-detail-status.pending {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.comment-detail-status.approved {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.comment-detail-status.rejected {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.comment-detail-content-wrapper {
    margin-top: 20px;
}

.comment-detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #6754a9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.comment-detail-content {
    padding: 16px;
    background: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    color: #e0e1dd;
    line-height: 1.7;
    font-size: 14px;
    word-wrap: break-word;
    white-space: pre-wrap;
    max-height: 400px;
    overflow-y: auto;
}

.reply-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(103, 84, 169, 0.15);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 4px;
    color: #6754a9;
    margin-left: 6px;
    flex-shrink: 0;
}

.reply-indicator i {
    width: 12px;
    height: 12px;
}

.comments-loading,
.comments-empty,
.comments-error {
    padding: 40px 20px;
    text-align: center;
    color: #7f8ea3;
}

.users-loading,
.users-empty,
.users-error {
    padding: 40px 20px;
    text-align: center;
    color: #7f8ea3;
}

/* Ceza Verme Modal */
.punish-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.punish-modal {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.punish-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #2a2438;
}

.punish-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.punish-modal-header h3 i {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.modal-close i {
    width: 18px;
    height: 18px;
}

.punish-modal-content {
    padding: 24px;
}

.punish-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    margin-bottom: 24px;
}

.punish-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #6754a9;
    object-fit: cover;
}

.punish-user-name {
    color: #e0e1dd;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.punish-user-id {
    color: #7f8ea3;
    font-size: 12px;
    font-family: monospace;
}

.punish-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.punish-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.punish-form .form-group label {
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.punish-form .form-group label i {
    width: 16px;
    height: 16px;
    color: #6754a9;
}

.punish-form .form-input {
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 10px;
    padding: 12px 16px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.punish-form .form-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.punish-form .form-input textarea {
    resize: vertical;
    min-height: 100px;
}

.punish-form .form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
    padding: 0;
    border: none;
    background: transparent;
}

.punish-form .btn-secondary {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.punish-form .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.25) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: #6754a9;
}

.punish-form .btn-danger {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.punish-form .btn-danger:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Ceza Geçmişi */
.punishment-history-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
}

.punishment-history-item {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.8) 0%, rgba(34, 28, 51, 0.6) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.punishment-history-item.active {
    border-color: #6754a9;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.punishment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.punishment-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid;
}

.punishment-type i {
    width: 16px;
    height: 16px;
}

.punishment-status .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.punishment-status .status-badge.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.punishment-status .status-badge.inactive {
    background: rgba(127, 142, 163, 0.15);
    color: #7f8ea3;
    border: 1px solid rgba(127, 142, 163, 0.3);
}

.punishment-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.punishment-reason {
    color: #e0e1dd;
    font-size: 14px;
    line-height: 1.5;
}

.punishment-reason strong {
    color: #6754a9;
    margin-right: 8px;
}

.punishment-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #7f8ea3;
}

.punishment-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.punishment-meta i {
    width: 14px;
    height: 14px;
}

.btn-cancel-punishment-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    align-self: flex-start;
}

.btn-cancel-punishment-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
    transform: translateY(-1px);
}

.btn-cancel-punishment-item i {
    width: 16px;
    height: 16px;
}

.punishment-empty {
    padding: 40px 20px;
    text-align: center;
    color: #7f8ea3;
}

.btn-cancel-punish {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-cancel-punish:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
}

.user-status.warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.user-status.warning i {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* === SERİ LİSTESİ SAYFASI === */
.series-list-content {
    padding: 30px;
    background-color: #0f0d17;
    min-height: calc(100vh - 61px);
}

.series-list-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2438;
}

.series-list-header h1 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #e0e1dd;
    font-weight: 700;
}

.series-list-header p {
    margin: 0;
    color: #7f8ea3;
    font-size: 14px;
}

/* Filtre Bar */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-item {
    position: relative;
    flex-shrink: 0;
}

.filter-item-search {
    flex: 1;
    min-width: 180px;
}

.filter-search-icon {
    position: absolute;
    left: 10px;
    width: 14px;
    height: 14px;
    color: #7f8ea3;
    pointer-events: none;
    z-index: 1;
}

.filter-item-search .filter-input {
    padding-left: 32px;
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-input {
    width: 100%;
    padding: 6px 10px;
    padding-right: 32px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #e0e1dd;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    min-height: 32px;
}

.filter-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.filter-input::placeholder {
    color: #7f8ea3;
}

.filter-clear {
    position: absolute;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.filter-clear:hover {
    background-color: rgba(103, 84, 169, 0.1);
    color: #6754a9;
}

.filter-clear i {
    width: 16px;
    height: 16px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #e0e1dd;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    min-height: 32px;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #221c33;
    border-color: #6754a9;
    color: #fff;
}

.filter-btn.active {
    background-color: rgba(103, 84, 169, 0.15);
    border-color: #6754a9;
    color: #a78bfa;
}

.filter-btn i {
    width: 14px;
    height: 14px;
    color: currentColor;
    flex-shrink: 0;
}

.filter-btn-text {
    flex-shrink: 0;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    min-width: 180px;
    max-width: 280px;
    max-height: 300px;
    overflow-y: auto;
    animation: dropdownFadeIn 0.2s ease;
    display: none;
}

.filter-dropdown[style*="block"],
.filter-dropdown[data-open="true"] {
    display: block !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-dropdown-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.filter-dropdown-content::-webkit-scrollbar-track {
    background: #0f0d17;
}

.filter-dropdown-content::-webkit-scrollbar-thumb {
    background: #6754a9;
    border-radius: 3px;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #e0e1dd;
}

.filter-checkbox:hover {
    background-color: #221c33;
    border-color: #6754a9;
}

.filter-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #6754a9;
}

.filter-checkbox input[type="checkbox"]:checked + span {
    color: #a78bfa;
    font-weight: 500;
}

.filter-checkbox:has(input[type="checkbox"]:checked) {
    background-color: rgba(103, 84, 169, 0.15);
    border-color: #6754a9;
}

.filter-btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(90, 72, 145, 0.2) 100%);
    border: 1px solid #6754a9;
    border-radius: 6px;
    color: #a78bfa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.filter-btn-reset:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(90, 72, 145, 0.3) 100%);
    transform: translateY(-1px);
}

.filter-btn-reset i {
    width: 14px;
    height: 14px;
}

.filter-loading {
    text-align: center;
    color: #7f8ea3;
    font-size: 14px;
    padding: 20px;
}

/* Sonuçlar */
.series-list-results {
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 24px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2438;
}

.results-count {
    font-size: 14px;
    color: #7f8ea3;
}

.results-count span {
    color: #a78bfa;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .series-list-content {
        padding: 20px;
    }
    
    .filters-content {
        padding: 16px;
        gap: 16px;
    }
    
    .filter-checkboxes {
        gap: 6px;
    }
    
    .filter-checkbox {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* === YORUMLAR BÖLÜMÜ === */
.comments-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #2a2438;
    position: relative;
}

.comments-section.comments-blurred .content-section {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.comments-section.comments-blurred .content-section * {
    pointer-events: none;
}

.comments-login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: rgba(15, 13, 23, 0.85);
    backdrop-filter: blur(4px);
    filter: none !important;
    pointer-events: auto;
}

.comments-section.comments-blurred .comments-login-overlay {
    filter: none !important;
    pointer-events: auto !important;
}

.comments-login-prompt {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(34, 28, 51, 0.95) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 12px;
    padding: 32px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 420px;
    width: 90%;
    filter: none !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}

.comments-section.comments-blurred .comments-login-prompt,
.comments-section.comments-blurred .comments-login-overlay .comments-login-prompt {
    filter: none !important;
    pointer-events: auto !important;
}

.comments-login-prompt * {
    filter: none !important;
}

.comments-login-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(103, 84, 169, 0.6) 50%, 
        transparent 100%);
    border-radius: 12px 12px 0 0;
}

.comments-login-prompt i {
    width: 56px;
    height: 56px;
    color: #6754a9;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(103, 84, 169, 0.2);
}

.comments-login-prompt p {
    color: #e0e1dd;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
}

.comments-login-prompt .btn-login-comment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.9) 0%, rgba(79, 70, 229, 0.9) 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(103, 84, 169, 0.3);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.comments-login-prompt .btn-login-comment:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 1) 0%, rgba(79, 70, 229, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 84, 169, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(103, 84, 169, 0.5);
}

.comments-login-prompt .btn-login-comment:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.comments-login-prompt .btn-login-comment i {
    width: 18px;
    height: 18px;
    color: #ffffff;
    margin: 0;
}

.comments-section .content-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
}

.section-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn-toggle-comment-form {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle-comment-form:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
}

.btn-toggle-comment-form.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.4);
}

.btn-toggle-comment-form.active:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: #ef4444;
}

.btn-toggle-comment-form i {
    width: 16px;
    height: 16px;
}

.section-header h2 {
    font-size: 20px;
    color: #e0e1dd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-header h2 i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.comments-count {
    font-size: 13px;
    color: #7f8ea3;
    font-weight: 500;
}

/* Bölüm Beğeni - Minimal */
.btn-chapter-like-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    color: #7f8ea3;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-chapter-like-minimal:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.25) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: #6754a9;
    color: #e0e1dd;
    transform: translateY(-1px);
}

.btn-chapter-like-minimal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-chapter-like-minimal.liked {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.btn-chapter-like-minimal.liked:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: #ef4444;
}

.btn-chapter-like-minimal i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-chapter-like-minimal.liked i {
    transform: scale(1.1);
    fill: #ef4444;
}

.chapter-like-label {
    font-size: 13px;
    font-weight: 500;
}

.btn-chapter-like-minimal.liked .chapter-like-label {
    color: #ef4444;
}

.btn-chapter-like-minimal .chapter-like-count {
    background: rgba(103, 84, 169, 0.15);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
}

.btn-chapter-like-minimal.liked .chapter-like-count {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

@media (max-width: 768px) {
    .section-header-center {
        position: static;
        transform: none;
        margin: 8px 0;
        width: 100%;
        order: 2;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-header-actions {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        order: 1;
    }
    
    .btn-chapter-like-minimal {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-chapter-like-minimal i {
        width: 14px;
        height: 14px;
    }
    
    .chapter-like-label {
        font-size: 12px;
    }
    
    .btn-chapter-like-minimal .chapter-like-count {
        font-size: 10px;
        padding: 2px 5px;
    }
}

/* Yorum Formu */
.comment-form-wrapper {
    margin-bottom: 16px;
}

.comment-form {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 10px;
    padding: 12px 14px;
}

.comment-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.comment-form-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #6754a9;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-form-username {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
}

.comment-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #6754a9;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-form-user-info {
    flex: 1;
}

.comment-form-hint {
    font-size: 11px;
    color: #7f8ea3;
}

.comment-input {
    width: 100%;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 10px 12px;
    color: #e0e1dd;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    resize: vertical;
    min-height: 70px;
    text-align: left;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.comment-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.comment-input::placeholder {
    color: #5c5f6e;
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-submit-comment,
.btn-comment-submit {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-comment:hover:not(:disabled),
.btn-comment-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
}

.btn-submit-comment:disabled,
.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-comment-submit i {
    width: 14px;
    height: 14px;
}

/* Giriş Yapma Uyarısı */
.comment-login-prompt {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.login-prompt-content i {
    width: 48px;
    height: 48px;
    color: #6754a9;
    margin-bottom: 16px;
}

.login-prompt-content p {
    color: #7f8ea3;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-login-comment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.15) 100%);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login-comment:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.25) 100%);
    border-color: #5865f2;
    transform: translateY(-2px);
}

.btn-login-comment i {
    width: 16px;
    height: 16px;
}

/* Yorumlar Listesi */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 10px;
    padding: 12px 14px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comment-item:hover {
    border-color: #6754a9;
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.1);
}

.comment-item.pinned {
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
}

/* Onay bekleyen yorumlar - Blur efekti */
.comment-item.comment-pending,
.comment-reply-item.comment-pending {
    position: relative;
    overflow: hidden;
}

.comment-item.comment-pending .comment-content,
.comment-reply-item.comment-pending .comment-content {
    filter: blur(3px);
    opacity: 0.7;
    pointer-events: none;
    user-select: none;
    transition: all 0.3s ease;
}

.comment-item.comment-pending .comment-header,
.comment-reply-item.comment-pending .comment-header {
    filter: blur(2px);
    opacity: 0.8;
}

.comment-item.comment-pending .comment-actions,
.comment-reply-item.comment-pending .comment-actions {
    filter: blur(2px);
    opacity: 0.8;
    pointer-events: none;
}

.comment-item.comment-pending::after,
.comment-reply-item.comment-pending::after {
    content: 'Onay Bekliyor';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.95) 100%);
    color: #1a1726;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    pointer-events: none;
    filter: none !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.comment-reply-item.comment-pending::after {
    font-size: 11px;
    padding: 8px 14px;
}

.comment-pinned-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 1px 3px;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 3px;
    color: #fbbf24;
    font-size: 7px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    width: fit-content;
    max-width: fit-content;
}

.comment-pinned-badge i {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 8px;
}

.comment-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #6754a9;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comment-username {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0px 4px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 1px solid rgba(251, 191, 36, 0.6);
    border-radius: 4px;
    color: #fbbf24;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
    line-height: 1.1;
    white-space: nowrap;
    width: fit-content;
}

.admin-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.admin-badge i {
    width: 8px;
    height: 8px;
    stroke-width: 2;
    flex-shrink: 0;
    filter: drop-shadow(0 0 1px rgba(251, 191, 36, 0.5));
}

/* Mobilde Admin Badge Küçültme */
@media (max-width: 768px) {
    .admin-badge {
        padding: 0px 4px;
        font-size: 7px;
        letter-spacing: 0.5px;
        gap: 2px;
        border-radius: 4px;
        border-width: 1px;
    }
    
    .admin-badge i {
        width: 8px;
        height: 8px;
        stroke-width: 2;
    }
}

.comment-date {
    font-size: 11px;
    color: #7f8ea3;
}

.btn-pin-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pin-comment:hover {
    background-color: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-pin-comment.pinned {
    background-color: rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-pin-comment i {
    width: 16px;
    height: 16px;
}

.comment-content {
    color: #e0e1dd;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 6px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-indent: 0 !important;
    word-wrap: break-word;
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
    border-top: 1px solid #2a2438;
    margin-top: 6px;
    flex-wrap: wrap;
}

.btn-delete-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete-comment:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-delete-comment i {
    width: 16px;
    height: 16px;
}

.btn-reply-comment {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #7f8ea3;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reply-comment:hover {
    background-color: rgba(103, 84, 169, 0.1);
    border-color: #6754a9;
    color: #6754a9;
}

.btn-reply-comment i {
    width: 14px;
    height: 14px;
}

.replies-count {
    font-size: 12px;
    color: #7f8ea3;
    margin-left: auto;
}

.comment-replies {
    margin-top: 12px;
    padding-left: 20px;
    border-left: 2px solid #2a2438;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-reply-item {
    padding: 10px;
    background: rgba(26, 23, 38, 0.5);
    border-radius: 8px;
    border: 1px solid #2a2438;
}

.comment-reply-item .comment-header {
    margin-bottom: 6px;
}

/* Bölüm Yorumları */
.chapter-comments-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #2a2438;
    position: relative;
}

.chapter-comments-section.comments-blurred .content-section {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.chapter-comments-section.comments-blurred .content-section * {
    pointer-events: none;
}

.chapter-comments-section .comments-login-overlay {
    filter: none !important;
    pointer-events: auto !important;
    z-index: 1000;
}

.chapter-comments-section.comments-blurred .comments-login-overlay {
    filter: none !important;
    pointer-events: auto !important;
}

.chapter-comments-section .comments-login-prompt {
    filter: none !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}

.chapter-comments-section.comments-blurred .comments-login-prompt,
.chapter-comments-section.comments-blurred .comments-login-overlay .comments-login-prompt {
    filter: none !important;
    pointer-events: auto !important;
}

.chapter-comments-section .content-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px 24px;
    margin-bottom: 40px;
}

/* Bölüm yorumları için login overlay ve prompt stilleri - temaya uygun */
.chapter-comments-section .comments-login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: rgba(15, 13, 23, 0.85);
    backdrop-filter: blur(4px);
    filter: none !important;
    pointer-events: auto !important;
}

.chapter-comments-section.comments-blurred .comments-login-overlay {
    filter: none !important;
    pointer-events: auto !important;
}

.chapter-comments-section .comments-login-prompt {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(34, 28, 51, 0.95) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 12px;
    padding: 32px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 420px;
    width: 90%;
    filter: none !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}

.chapter-comments-section.comments-blurred .comments-login-prompt,
.chapter-comments-section.comments-blurred .comments-login-overlay .comments-login-prompt {
    filter: none !important;
    pointer-events: auto !important;
}

.chapter-comments-section .comments-login-prompt * {
    filter: none !important;
}

.chapter-comments-section .comments-login-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(103, 84, 169, 0.6) 50%, 
        transparent 100%);
    border-radius: 12px 12px 0 0;
}

.chapter-comments-section .comments-login-prompt i {
    width: 56px;
    height: 56px;
    color: #6754a9;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(103, 84, 169, 0.2);
}

.chapter-comments-section .comments-login-prompt p {
    color: #e0e1dd;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
}

.chapter-comments-section .comments-login-prompt .btn-login-comment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.9) 0%, rgba(79, 70, 229, 0.9) 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(103, 84, 169, 0.3);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chapter-comments-section .comments-login-prompt .btn-login-comment:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 1) 0%, rgba(79, 70, 229, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 84, 169, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(103, 84, 169, 0.5);
}

.chapter-comments-section .comments-login-prompt .btn-login-comment:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chapter-comments-section .comments-login-prompt .btn-login-comment i {
    width: 18px;
    height: 18px;
    color: #ffffff;
    margin: 0;
}

.comment-form-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #6754a9;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-form-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-form-username {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
}

.btn-submit-comment {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-comment:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
}

.btn-submit-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-comment i {
    width: 14px;
    height: 14px;
}

.comment-type-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.comment-type-badge.series {
    background: rgba(103, 84, 169, 0.2);
    color: #6754a9;
    border: 1px solid rgba(103, 84, 169, 0.4);
}

.comment-type-badge.chapter {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.btn-pin-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pin-comment:hover {
    background-color: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-pin-comment.pinned {
    background-color: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-pin-comment i {
    width: 16px;
    height: 16px;
}

.comment-reply-item .comment-content {
    font-size: 12px;
    margin-bottom: 4px;
}

.comment-reply-item .comment-actions {
    padding-top: 4px;
    margin-top: 4px;
    border-top: 1px solid #1a1726;
}

.comment-reply-form {
    margin-top: 12px;
    padding: 12px;
    background: rgba(26, 23, 38, 0.5);
    border: 1px solid #2a2438;
    border-radius: 8px;
}

.reply-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.reply-to-text {
    font-size: 12px;
    color: #6754a9;
    font-weight: 500;
}

.btn-close-reply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.btn-close-reply:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-close-reply i {
    width: 14px;
    height: 14px;
}

.reply-input {
    width: 100%;
    padding: 10px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    min-height: 60px;
    margin-bottom: 8px;
}

.reply-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.reply-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.btn-cancel-reply,
.btn-submit-reply {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid;
}

.btn-cancel-reply {
    background: transparent;
    border-color: #2a2438;
    color: #7f8ea3;
}

.btn-cancel-reply:hover {
    background-color: rgba(127, 142, 163, 0.1);
    border-color: #7f8ea3;
    color: #e0e1dd;
}

.btn-submit-reply {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    border-color: #6754a9;
    color: #ffffff;
}

.btn-submit-reply:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6754a9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
}

.btn-like-comment {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: transparent;
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #7f8ea3;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-like-comment.liked {
    background-color: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-like-comment i {
    width: 14px;
    height: 14px;
}

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

.comments-loading,
.comments-empty,
.comments-error {
    padding: 40px 20px;
    text-align: center;
    color: #7f8ea3;
}

.comments-empty i {
    width: 48px;
    height: 48px;
    color: #6754a9;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .comment-form {
        padding: 16px;
    }
    
    .comment-item {
        padding: 16px;
    }
    
    .comment-avatar {
        width: 36px;
        height: 36px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* === BÖLÜM OKUMA SAYFASI === */
/* Header Stilleri */
.main-header {
    background-color: #1a1726;
    border-bottom: 1px solid #2a2438;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
}

.main-header .header-right {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.header-left {
    display: none; /* Logo kaldırıldı */
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #e0e1dd;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.logo:hover {
    color: #6754a9;
}

.logo-text {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Oku.php için özel header-right kaldırıldı - normal header-right kullanılıyor */

/* Oku.php için özel user-menu stilleri kaldırıldı - normal user-menu kullanılıyor */

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.4);
}

.chapter-reader-container {
    min-height: calc(100vh - 61px);
    background-color: #0f0d17;
    padding: 0;
    margin-left: 0; /* Sidebar ile birlikte çalışması için */
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Bölüm Okuma Sayfası Scroll Bar - Temaya Uygun */
.chapter-reader-container::-webkit-scrollbar {
    width: 12px;
}

.chapter-reader-container::-webkit-scrollbar-track {
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.8) 0%, rgba(26, 23, 38, 0.6) 100%);
    border-left: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 0;
}

.chapter-reader-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.7) 0%, rgba(79, 70, 229, 0.6) 100%);
    border-radius: 6px;
    border: 2px solid rgba(15, 13, 23, 0.3);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.chapter-reader-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.9) 0%, rgba(79, 70, 229, 0.8) 100%);
    border-color: rgba(103, 84, 169, 0.4);
    box-shadow: 0 0 10px rgba(103, 84, 169, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.2);
    transform: scaleX(1.1);
}

.chapter-reader-container::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    box-shadow: 0 0 15px rgba(103, 84, 169, 0.6), inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Firefox Scroll Bar */
.chapter-reader-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 84, 169, 0.7) rgba(15, 13, 23, 0.8);
}

.chapter-reader-container:fullscreen {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

.chapter-reader-container:-webkit-full-screen {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

.chapter-reader-container:-moz-full-screen {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

.chapter-reader-container:-ms-fullscreen {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

/* Ayarlar Menüsü */
.chapter-settings-panel {
    position: fixed;
    top: 61px; /* Header yüksekliği */
    right: -350px;
    width: 320px;
    height: calc(100vh - 61px);
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border-left: 1px solid #2a2438;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.chapter-settings-panel.active {
    right: 0;
}

.chapter-settings-panel::-webkit-scrollbar {
    width: 6px;
}

.chapter-settings-panel::-webkit-scrollbar-track {
    background: #0f0d17;
}

.chapter-settings-panel::-webkit-scrollbar-thumb {
    background: #6754a9;
    border-radius: 3px;
}

.chapter-settings-panel::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #2a2438;
    background: linear-gradient(135deg, #221c33 0%, #1a1726 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.settings-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-header-content i {
    width: 22px;
    height: 22px;
    color: #6754a9;
}

.settings-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    letter-spacing: 0.3px;
}

.settings-close {
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.settings-close:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.settings-close i {
    width: 18px;
    height: 18px;
}

.settings-content {
    padding: 24px 20px;
}

.settings-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
}

.settings-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.settings-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
}

.settings-label i {
    width: 18px;
    height: 18px;
    color: #6754a9;
    flex-shrink: 0;
}

.zoom-value,
.brightness-value,
.spacing-value,
.speed-value {
    font-size: 12px;
    color: #6754a9;
    font-weight: 600;
    background: rgba(103, 84, 169, 0.1);
    padding: 3px 8px;
    border-radius: 5px;
    min-width: 45px;
    text-align: center;
}

.settings-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn,
.view-btn {
    flex: 1;
    min-width: 65px;
    padding: 8px 12px;
    background: rgba(15, 13, 23, 0.6);
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.size-btn i,
.view-btn i {
    width: 16px;
    height: 16px;
}

.size-btn span,
.view-btn span {
    font-size: 12px;
}

.size-btn:hover,
.view-btn:hover {
    border-color: rgba(103, 84, 169, 0.5);
    color: #e0e1dd;
    background-color: rgba(103, 84, 169, 0.08);
}

.size-btn.active,
.view-btn.active {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
    color: #e0e1dd;
}

.settings-slider {
    margin-top: 8px;
}

.settings-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #0f0d17;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.settings-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(103, 84, 169, 0.4);
    transition: all 0.2s ease;
}

.settings-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(103, 84, 169, 0.6);
}

.settings-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(103, 84, 169, 0.4);
    transition: all 0.2s ease;
}

.settings-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(103, 84, 169, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: #7f8ea3;
}

/* Toggle Switch */
.settings-toggle-switch {
    display: flex;
    align-items: center;
}

.settings-toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background-color: #2a2438;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: #7f8ea3;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.settings-toggle-switch input[type="checkbox"]:checked + .toggle-label {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
}

.settings-toggle-switch input[type="checkbox"]:checked + .toggle-label .toggle-slider {
    transform: translateX(24px);
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(103, 84, 169, 0.4);
}

/* Shortcuts Info */
.shortcuts-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: rgba(15, 13, 23, 0.5);
    border-radius: 8px;
    border: 1px solid #2a2438;
}

.shortcut-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #7f8ea3;
}

.shortcut-item kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 8px;
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 5px;
    color: #e0e1dd;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shortcut-item span {
    flex: 1;
    text-align: right;
    color: #e0e1dd;
}

/* Ayarlar Toggle Butonu */
.settings-toggle-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(34, 28, 51, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 36, 56, 0.8);
    border-right: none;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    color: #7f8ea3;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.25s ease, 
                border-color 0.25s ease, 
                color 0.25s ease,
                box-shadow 0.25s ease;
    padding: 0;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    pointer-events: auto;
}

.settings-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(103, 84, 169, 0.15), transparent);
    transition: left 0.5s ease;
}

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

.settings-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(34, 28, 51, 0.98) 0%, rgba(26, 23, 38, 0.98) 100%);
    border-color: rgba(103, 84, 169, 0.6);
    color: #e0e1dd;
    box-shadow: -3px 0 16px rgba(103, 84, 169, 0.2);
}

.settings-toggle-btn.active {
    right: 320px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-color: rgba(103, 84, 169, 0.7);
    color: #e0e1dd;
    box-shadow: -3px 0 18px rgba(103, 84, 169, 0.3);
}

.settings-toggle-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.settings-toggle-btn.active i {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chapter-settings-panel {
        width: 280px;
        right: -280px;
    }
    
    .chapter-settings-panel.active {
        right: 0;
    }
    
    .settings-header {
        padding: 12px 14px;
    }
    
    .settings-header h3 {
        font-size: 14px;
    }
    
    .settings-header-content i {
        width: 18px;
        height: 18px;
    }
    
    .settings-close {
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .settings-close i {
        width: 16px;
        height: 16px;
    }
    
    .settings-content {
        padding: 16px 14px;
    }
    
    .settings-group {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .settings-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .settings-label i {
        width: 16px;
        height: 16px;
    }
    
    .zoom-value,
    .brightness-value,
    .spacing-value,
    .speed-value {
        font-size: 11px;
        padding: 2px 6px;
        min-width: 40px;
    }
    
    .size-btn,
    .view-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 55px;
    }
    
    .size-btn i,
    .view-btn i {
        width: 14px;
        height: 14px;
    }
    
    .settings-slider {
        margin-top: 6px;
    }
    
    .settings-slider input[type="range"] {
        height: 4px;
    }
    
    .toggle-switch {
        width: 38px;
        height: 20px;
    }
    
    .toggle-switch::after {
        width: 16px;
        height: 16px;
    }
    
    .shortcuts-info {
        font-size: 11px;
        padding: 10px 12px;
    }
    
    .shortcuts-info li {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .settings-toggle-btn {
        width: 36px;
        height: 60px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        transform: translateY(-50%);
    }
    
    .settings-toggle-btn.active {
        right: 280px;
        transform: translateY(-50%);
    }
    
    .settings-toggle-btn i {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .chapter-settings-panel {
        width: 260px;
        right: -260px;
    }
    
    .chapter-settings-panel.active {
        right: 0;
    }
    
    .settings-header {
        padding: 10px 12px;
    }
    
    .settings-header h3 {
        font-size: 13px;
    }
    
    .settings-header-content i {
        width: 16px;
        height: 16px;
    }
    
    .settings-content {
        padding: 14px 12px;
    }
    
    .settings-group {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    
    .settings-label {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .zoom-value,
    .brightness-value,
    .spacing-value,
    .speed-value {
        font-size: 10px;
        padding: 2px 5px;
        min-width: 35px;
    }
    
    .size-btn,
    .view-btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 50px;
    }
    
    .size-btn i,
    .view-btn i {
        width: 12px;
        height: 12px;
    }
    
    .settings-toggle-btn {
        width: 32px;
        height: 55px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        transform: translateY(-50%);
    }
    
    .settings-toggle-btn.active {
        right: 260px;
        transform: translateY(-50%);
    }
    
    .settings-toggle-btn i {
        width: 14px;
        height: 14px;
    }
}

.chapter-header {
    max-width: 1900px;
    margin: 0 auto 20px auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(26, 23, 38, 0.6);
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 0;
    position: relative;
    z-index: 999;
}

.chapter-nav {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: #7f8ea3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
    position: relative;
    z-index: 12;
    pointer-events: auto;
    cursor: pointer;
}

.btn-back:hover {
    color: #6754a9;
}

.btn-back i {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.chapter-title {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.chapter-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #e0e1dd;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #e0e1dd 0%, #6754a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chapter-title p {
    font-size: 15px;
    color: #7f8ea3;
    margin: 0;
    font-weight: 400;
}

.chapter-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid rgba(42, 36, 56, 0.6);
    border-radius: 6px;
    color: #7f8ea3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    cursor: pointer;
    min-width: 120px;
    min-height: 36px;
}

.btn-nav * {
    pointer-events: none;
}

.btn-nav:hover {
    color: #6754a9;
    border-color: rgba(103, 84, 169, 0.4);
    background: rgba(103, 84, 169, 0.05);
}

.btn-nav i {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.chapter-pages {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #0f0d17;
}

.chapter-page {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0f0d17;
    padding: 0;
    margin-bottom: 0;
    min-height: 200px;
    position: relative;
}

.page-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1726 0%, #0f0d17 100%);
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
}

.page-image:hover {
    opacity: 0.95;
}

.page-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    color: #7f8ea3;
}

.page-error i {
    width: 48px;
    height: 48px;
    color: #2a2438;
}

.page-error p {
    margin: 0;
    font-size: 14px;
}

.chapter-footer {
    max-width: 1900px;
    margin: 20px auto 0 auto;
    padding: 16px 20px;
    border-top: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 0;
    background: rgba(26, 23, 38, 0.6);
}

.chapter-nav-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-series {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid rgba(42, 36, 56, 0.6);
    border-radius: 6px;
    color: #7f8ea3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-series:hover {
    color: #6754a9;
    border-color: rgba(103, 84, 169, 0.4);
    background: rgba(103, 84, 169, 0.05);
}

.btn-series i {
    width: 16px;
    height: 16px;
}

.error-page {
    min-height: calc(100vh - 61px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f0d17;
    padding: 40px 20px;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-content i {
    width: 64px;
    height: 64px;
    color: #ef4444;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0 0 12px 0;
}

.error-content p {
    font-size: 16px;
    color: #7f8ea3;
    margin: 0 0 24px 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .chapter-pages {
        max-width: 100%;
    }
    
    .chapter-header {
        max-width: 100%;
    }
    
    .chapter-footer {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .user-menu {
        padding: 4px 8px;
    }
    
    .username {
        display: none;
    }
    
    .chapter-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
        gap: 12px;
        margin-bottom: 15px;
        justify-content: flex-start;
    }
    
    .chapter-title {
        text-align: left;
        width: 100%;
        order: 2;
    }
    
    .chapter-nav {
        order: 1;
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .btn-back {
        font-size: 13px;
        position: relative;
        z-index: 12;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .chapter-controls {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 8px;
        position: relative;
        z-index: 1000;
    }
    
    .btn-nav {
        flex: 1;
        justify-content: center;
        padding: 6px 10px;
        font-size: 11px;
        min-height: 32px;
        min-width: 80px;
        position: relative;
        z-index: 1000;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .btn-nav * {
        pointer-events: none;
    }
    
    .btn-nav i {
        width: 14px;
        height: 14px;
    }
    
    .chapter-header .btn-nav {
        padding: 6px 10px;
        font-size: 11px;
        min-height: 32px;
        min-width: 80px;
    }
    
    .chapter-header .btn-nav i {
        width: 14px;
        height: 14px;
    }
    
    .chapter-pages {
        padding: 0;
    }
    
    .chapter-nav-bottom {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-nav {
        flex: 1;
        min-width: auto;
        min-height: 32px;
        padding: 6px 8px;
        font-size: 10px;
        max-width: 120px;
    }
    
    .btn-series {
        flex: 1;
        min-width: auto;
        justify-content: center;
        padding: 6px 8px;
        font-size: 10px;
        min-height: 32px;
        max-width: 120px;
    }
    
    .btn-series i {
        width: 14px;
        height: 14px;
    }
    
    .chapter-footer {
        padding: 14px 16px;
        margin-top: 15px;
    }
}

/* === BÖLÜM YÜKLEME PANELİ === */
.chapter-upload-container {
    max-width: 900px;
    margin: 0 auto;
}

.chapter-upload-container .form-section {
    margin-bottom: 24px;
}

.form-select {
    width: 100%;
    background-color: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    padding: 12px 16px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}

.upload-mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.radio-option {
    display: block;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-content {
    background: rgba(15, 13, 23, 0.5);
    border: 1.5px solid rgba(42, 36, 56, 0.5);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.radio-content:hover {
    border-color: rgba(103, 84, 169, 0.4);
    background: rgba(15, 13, 23, 0.7);
}

.radio-option input[type="radio"]:checked + .radio-content {
    border-color: #6754a9;
    background: rgba(103, 84, 169, 0.1);
    box-shadow: 0 0 0 2px rgba(103, 84, 169, 0.2);
}

.radio-content i {
    width: 24px;
    height: 24px;
    color: #6754a9;
}

.radio-content span {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
}

.radio-content small {
    font-size: 11px;
    color: #7f8ea3;
    line-height: 1.3;
}

.zip-upload-area {
    min-height: 160px;
    padding: 28px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.zip-upload-area.dragover {
    border-color: #6754a9;
    background: rgba(103, 84, 169, 0.1);
    box-shadow: 0 0 0 2px rgba(103, 84, 169, 0.2);
}

.upload-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

/* Bölüm Ekleme - Seri Seçim Grid */
.chapter-series-search-section {
    margin-bottom: 24px;
}

.chapter-search-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
}

.chapter-search-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #7f8ea3;
    pointer-events: none;
    z-index: 1;
}

.chapter-search-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.chapter-search-input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.chapter-search-clear-btn {
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chapter-search-clear-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.chapter-series-grid-container {
    margin-top: 24px;
}

.chapter-series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 0;
}

.chapter-series-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: #7f8ea3;
}

.chapter-series-loading i {
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
}

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

.chapter-series-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7f8ea3;
}

.chapter-series-card-item {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chapter-series-card-item:hover {
    transform: translateY(-4px);
    border-color: #6754a9;
    box-shadow: 0 8px 24px rgba(103, 84, 169, 0.2);
}

.chapter-series-card-cover {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
    background: #1a1726;
}

.chapter-series-card-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-series-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chapter-series-status-badge.ongoing {
    color: #22c55e;
}

.chapter-series-status-badge.completed {
    color: #6754a9;
}

.chapter-series-status-badge.paused {
    color: #fbbf24;
}

.chapter-series-card-info {
    padding: 12px;
}

.chapter-series-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chapter-series-card-original {
    font-size: 11px;
    color: #7f8ea3;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chapter-series-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.chapter-series-card-type {
    font-size: 11px;
    color: #7f8ea3;
}

.chapter-series-card-year {
    font-size: 11px;
    color: #7f8ea3;
}

/* Bölüm Ekleme - Layout */
.chapter-upload-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.chapter-upload-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

/* Form Input Stilleri */
.chapter-upload-form-container input[type="number"].form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 13, 23, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.chapter-upload-form-container input[type="number"].form-input:focus {
    outline: none;
    border-color: #6754a9;
    background: rgba(15, 13, 23, 0.8);
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.chapter-upload-form-container .form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #7f8ea3;
    line-height: 1.4;
}

/* Form Section İyileştirmeleri - Minimal */
.chapter-upload-form-container .form-section {
    background: rgba(15, 13, 23, 0.4);
    border: 1px solid rgba(42, 36, 56, 0.4);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.2s ease;
}

.chapter-upload-form-container .form-section:hover {
    border-color: rgba(103, 84, 169, 0.3);
    background: rgba(15, 13, 23, 0.6);
}

.chapter-upload-form-container .section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 12px;
}

.chapter-upload-form-container .section-label i {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.panel-header-with-back {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

/* Seçilen Seri Göstergesi */
#selected-series-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: #e0e1dd;
}

#selected-series-display::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #6754a9;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(103, 84, 169, 0.6);
}

#selected-series-name-display {
    font-weight: 600;
    color: #6754a9;
}

.btn-back-to-series {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    color: #6754a9;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back-to-series:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
}

/* Yorum Yönetimi - Table Row */
.table-row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #1a1726;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background: rgba(103, 84, 169, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.comments-table-body {
    max-height: 600px;
    overflow-y: auto;
}

.comments-loading,
.comments-empty,
.comments-error {
    padding: 40px 20px;
    text-align: center;
    color: #7f8ea3;
}

.comments-error {
    color: #ef4444;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #6754a9;
    object-fit: cover;
}

.user-name {
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
}

.comment-content {
    color: #e0e1dd;
    font-size: 13px;
    line-height: 1.5;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-chapter {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    color: #6754a9;
}

.badge-series {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.badge-approved {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.badge-pending {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 6px;
    color: #6754a9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
}

.btn-action i {
    width: 16px;
    height: 16px;
}

.btn-approve {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.btn-approve:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.filter-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-clear:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.filter-clear i {
    width: 16px;
    height: 16px;
}

/* Bölüm Listesi Section (En Alta) */
.chapter-list-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(42, 36, 56, 0.5);
}

.chapter-list-section .chapter-list-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.15);
    position: relative;
}

.chapter-list-section .chapter-list-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6754a9, transparent);
    border-radius: 2px;
}

.chapter-list-section .chapter-list-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
    letter-spacing: 0.2px;
}

.chapter-list-section .chapter-list-header i {
    width: 22px;
    height: 22px;
    color: #6754a9;
}

.chapter-list-section .chapter-list-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

/* Bölüm Listesi Sidebar - Minimal ve Güzel (Eski - Kullanılmıyor) */
.chapter-list-sidebar {
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.9) 0%, rgba(26, 23, 38, 0.85) 100%);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 14px;
    padding: 20px;
    height: fit-content;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(103, 84, 169, 0.1);
}

.chapter-list-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.15);
    position: relative;
}

.chapter-list-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6754a9, transparent);
    border-radius: 2px;
}

.chapter-list-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
    letter-spacing: 0.2px;
}

.chapter-list-header i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.chapter-list-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bölüm Listesi Section (En Alta) - Grid Layout */
.chapter-list-section .chapter-list-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}

/* Bölüm Listesi Scrollbar */
.chapter-list-sidebar::-webkit-scrollbar {
    width: 6px;
}

.chapter-list-sidebar::-webkit-scrollbar-track {
    background: rgba(42, 36, 56, 0.3);
    border-radius: 10px;
}

.chapter-list-sidebar::-webkit-scrollbar-thumb {
    background: rgba(103, 84, 169, 0.4);
    border-radius: 10px;
}

.chapter-list-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(103, 84, 169, 0.6);
}

.chapters-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 50px 20px;
    color: #7f8ea3;
}

.chapters-loading i {
    width: 28px;
    height: 28px;
    color: #6754a9;
    animation: spin 1s linear infinite;
}

.chapters-loading p {
    margin: 0;
    font-size: 14px;
    color: #7f8ea3;
}

.chapters-empty-state {
    text-align: center;
    padding: 50px 20px;
    color: #7f8ea3;
    font-size: 14px;
}

.chapters-empty-state p {
    margin: 0;
}

.upload-preview i {
    width: 24px;
    height: 24px;
    color: #6754a9;
}

.file-name {
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.remove-file {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    line-height: 1;
}

.remove-file:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: #e74c3c;
}

.upload-progress {
    margin-top: 24px;
    padding: 20px;
    background-color: #1a1726;
    border: 1px solid #2a2438;
    border-radius: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #0f0d17;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6754a9 0%, #4f46e5 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.progress-details {
    color: #7f8ea3;
    font-size: 12px;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
}

.success-message i {
    width: 18px;
    height: 18px;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 14px;
}

.error-message i {
    width: 18px;
    height: 18px;
}

.chapters-list-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #2a2438;
}

.chapters-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(26, 23, 38, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
    min-width: auto;
    max-width: 100%;
}

.chapter-thumbnail-wrapper {
    width: 125px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(15, 13, 23, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chapter-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8ea3;
}

.chapter-thumbnail-placeholder i {
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

.chapter-number {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .chapters-list {
        gap: 8px;
    }
    
    .chapter-item {
        min-width: 160px;
        padding: 8px 12px;
    }
    
    .chapter-number {
        font-size: 13px;
    }
    
    .chapter-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .chapters-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .chapter-item {
        min-width: 100%;
        width: 100%;
    }
}

.chapter-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6754a9, rgba(103, 84, 169, 0.5));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.chapter-item:hover {
    border-color: rgba(103, 84, 169, 0.4);
    border-left-color: #6754a9;
    background: rgba(103, 84, 169, 0.08);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.1);
}

.chapter-item:hover::before {
    opacity: 1;
}

.chapter-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.chapter-number {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
    white-space: nowrap;
    flex-shrink: 0;
}

.chapter-title {
    font-size: 13px;
    color: #7f8ea3;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}

.chapter-meta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.chapter-meta i {
    width: 16px;
    height: 16px;
    color: #6754a9;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.chapter-item:hover .chapter-meta i {
    opacity: 0.8;
    transform: translateX(2px);
}

/* Bölüm Listesi Sil Butonu - Temaya Uygun */
.chapter-item .btn-danger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
    position: relative;
    overflow: hidden;
}

.chapter-item .btn-danger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.chapter-item .btn-danger:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: #ef4444;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.chapter-item .btn-danger:hover::before {
    width: 100%;
    height: 100%;
}

.chapter-item .btn-danger:active {
    transform: scale(0.96);
}

.chapter-item .btn-danger i {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

/* Bölüm Düzenle Butonu */
.chapter-item .btn-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    color: #6754a9;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
    position: relative;
    overflow: hidden;
}

.chapter-item .btn-edit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(103, 84, 169, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.chapter-item .btn-edit:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border-color: #6754a9;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.25);
}

.chapter-item .btn-edit:hover::before {
    width: 100%;
    height: 100%;
}

.chapter-item .btn-edit:active {
    transform: scale(0.96);
}

.chapter-item .btn-edit i {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

/* === BÖLÜM DÜZENLEME MODAL === */
.chapter-edit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.chapter-edit-modal {
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.98) 0%, rgba(26, 23, 38, 0.95) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.chapter-edit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.chapter-edit-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chapter-edit-title h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
}

.chapter-edit-title h3 i {
    width: 24px;
    height: 24px;
    color: #6754a9;
}

.chapter-edit-number {
    padding: 6px 14px;
    background: rgba(103, 84, 169, 0.2);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6754a9;
}

.chapter-edit-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chapter-edit-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.05);
}

.chapter-edit-close i {
    width: 20px;
    height: 20px;
}

.chapter-edit-content {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}

/* Thumbnail Bölümü */
.chapter-thumbnail-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
}

.thumbnail-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.thumbnail-section-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
}

.thumbnail-section-header h4 i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.btn-add-thumbnail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 10px;
    color: #6754a9;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-add-thumbnail:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: rgba(103, 84, 169, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.thumbnail-preview-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.thumbnail-preview-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    background: rgba(15, 13, 23, 0.4);
    border: 1px dashed rgba(42, 36, 56, 0.6);
    border-radius: 10px;
    color: #7f8ea3;
    font-size: 14px;
}

.thumbnail-preview-empty i {
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

.thumbnail-preview {
    position: relative;
    width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(103, 84, 169, 0.3);
    background: rgba(15, 13, 23, 0.6);
}

.thumbnail-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-thumbnail {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.thumbnail-preview:hover .btn-remove-thumbnail {
    opacity: 1;
}

.btn-remove-thumbnail:hover {
    background: rgba(239, 68, 68, 1);
    transform: scale(1.1);
}

.btn-remove-thumbnail i {
    width: 16px;
    height: 16px;
}

/* Thumbnail Seçim Modal */
.thumbnail-selection-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.thumbnail-selection-modal {
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.98) 0%, rgba(26, 23, 38, 0.95) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.thumbnail-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.thumbnail-selection-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
}

.thumbnail-selection-header h3 i {
    width: 24px;
    height: 24px;
    color: #6754a9;
}

.thumbnail-selection-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail-selection-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.05);
}

.thumbnail-selection-close i {
    width: 20px;
    height: 20px;
}

.thumbnail-selection-content {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}

.thumbnail-selection-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #a78bfa;
    font-size: 14px;
}

.thumbnail-selection-info i {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.thumbnail-selection-pages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.thumbnail-selection-page-item {
    background: rgba(15, 13, 23, 0.4);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumbnail-selection-page-item:hover {
    border-color: rgba(103, 84, 169, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.thumbnail-selection-page-header {
    padding: 12px 16px;
    background: rgba(26, 23, 38, 0.6);
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 600;
}

.thumbnail-selection-page-image-container {
    position: relative;
    width: 100%;
    cursor: crosshair;
    overflow: hidden;
}

.thumbnail-selection-page-image {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

.selection-box {
    position: absolute;
    border: 2px solid #6754a9;
    background: rgba(103, 84, 169, 0.2);
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.thumbnail-selection-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(15, 13, 23, 0.4);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 12px;
}

.thumbnail-selection-preview h4 {
    margin: 0 0 12px 0;
    color: #e0e1dd;
    font-size: 16px;
    font-weight: 600;
}

.thumbnail-selection-preview canvas {
    border: 2px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    background: rgba(15, 13, 23, 0.6);
}

.thumbnail-selection-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.thumbnail-selection-actions .btn-secondary,
.thumbnail-selection-actions .btn-primary {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.thumbnail-selection-actions .btn-secondary {
    background: rgba(42, 36, 56, 0.6);
    color: #7f8ea3;
}

.thumbnail-selection-actions .btn-secondary:hover {
    background: rgba(42, 36, 56, 0.8);
    color: #e0e1dd;
}

.thumbnail-selection-actions .btn-primary {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    color: #fff;
}

.thumbnail-selection-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
}

/* Sayfa Bölümü */
.chapter-pages-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pages-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pages-section-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
}

.pages-section-header h4 i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.btn-add-page {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    border-radius: 10px;
    color: #6754a9;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-add-page:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.btn-add-page i {
    width: 18px;
    height: 18px;
}

/* Sayfa Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.pages-loading,
.pages-empty,
.pages-error {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: #7f8ea3;
    text-align: center;
}

.pages-loading i {
    width: 32px;
    height: 32px;
    color: #6754a9;
    animation: spin 1s linear infinite;
}

/* Sayfa Item */
.page-item {
    background: rgba(26, 23, 38, 0.6);
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.page-item:hover {
    border-color: rgba(103, 84, 169, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(103, 84, 169, 0.15);
}

.page-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(15, 13, 23, 0.5);
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
}

.page-number {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
}

.page-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-page-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid rgba(42, 36, 56, 0.6);
    border-radius: 8px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0;
}

.btn-page-action:hover:not(:disabled) {
    background: rgba(103, 84, 169, 0.2);
    border-color: rgba(103, 84, 169, 0.4);
    color: #6754a9;
    transform: scale(1.1);
}

.btn-page-action:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-delete-page:hover:not(:disabled) {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.btn-page-action i {
    width: 16px;
    height: 16px;
}

.page-item-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: rgba(15, 13, 23, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.page-item:hover .page-item-image img {
    transform: scale(1.05);
}

.page-error {
    padding: 20px;
    color: #ef4444;
    font-size: 12px;
    text-align: center;
}

/* Modal Scrollbar */
.chapter-edit-content::-webkit-scrollbar {
    width: 8px;
}

.chapter-edit-content::-webkit-scrollbar-track {
    background: rgba(42, 36, 56, 0.3);
    border-radius: 10px;
}

.chapter-edit-content::-webkit-scrollbar-thumb {
    background: rgba(103, 84, 169, 0.4);
    border-radius: 10px;
}

.chapter-edit-content::-webkit-scrollbar-thumb:hover {
    background: rgba(103, 84, 169, 0.6);
}

@media (max-width: 768px) {
    .chapter-edit-modal {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .pages-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .btn-add-page {
        width: 100%;
        justify-content: center;
    }
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
}

.chapters-loading,
.chapters-empty-state {
    text-align: center;
    padding: 40px;
    color: #7f8ea3;
}

.chapters-empty-state p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .upload-mode-selector {
        grid-template-columns: 1fr;
    }
    
    .chapter-upload-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chapter-list-sidebar {
        max-height: 500px;
    }
    
    .chapter-item {
        min-width: 160px;
        padding: 8px 12px;
    }
    
    .chapter-number {
        font-size: 13px;
    }
    
    .chapter-title {
        font-size: 12px;
    }
    
    .panel-header-with-back {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-back-to-series {
        width: 100%;
        justify-content: center;
    }
    
    #selected-series-display {
        width: 100%;
        justify-content: center;
    }
}

/* === RAPORLAR PANELİ === */
#reports-panel .reports-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(15, 13, 23, 0.5);
    border: 1px solid #2a2438;
    border-radius: 10px;
    padding: 4px;
}

#reports-panel .report-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #7f8ea3;
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    justify-content: center;
    pointer-events: auto;
    user-select: none;
}

#reports-panel .report-tab * {
    pointer-events: none;
}

#reports-panel .report-tab:hover {
    color: #e0e1dd;
    background: rgba(103, 84, 169, 0.1);
}

#reports-panel .report-tab.active {
    color: #e0e1dd;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    box-shadow: 0 2px 8px rgba(103, 84, 169, 0.15);
}

#reports-panel .report-tab i {
    width: 16px;
    height: 16px;
}

#reports-panel .reports-content {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.6) 0%, rgba(15, 13, 23, 0.8) 100%);
    border: 1px solid #2a2438;
    border-radius: 10px;
    padding: 16px;
    min-height: 300px;
    backdrop-filter: blur(10px);
}

#reports-panel .report-tab-content {
    display: none;
}

#reports-panel .report-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

#reports-panel .reports-container {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 12px;
}

#reports-panel .reports-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #7f8ea3;
}

#reports-panel .reports-empty i {
    width: 48px;
    height: 48px;
    color: #2a2438;
    margin-bottom: 12px;
    opacity: 0.4;
    stroke-width: 1.5;
}

#reports-panel .reports-empty p {
    font-size: 15px;
    margin: 0;
    color: #7f8ea3;
    font-weight: 400;
    letter-spacing: 0.3px;
}

#reports-panel .reports-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

#reports-panel .report-item {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(15, 13, 23, 0.98) 100%);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
}

#reports-panel .report-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6754a9 0%, #4f46e5 50%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

#reports-panel .report-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(103, 84, 169, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#reports-panel .report-item:hover {
    border-color: rgba(103, 84, 169, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.25), 0 0 0 1px rgba(103, 84, 169, 0.15);
    background: linear-gradient(135deg, rgba(26, 23, 38, 1) 0%, rgba(15, 13, 23, 1) 100%);
}

#reports-panel .report-item:hover::before {
    opacity: 1;
}

#reports-panel .report-item:hover::after {
    opacity: 1;
}

#reports-panel .report-item-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(42, 36, 56, 0.5);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#reports-panel .report-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    letter-spacing: -0.2px;
    flex-wrap: wrap;
}

#reports-panel .report-item-title h3 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #e0e1dd;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#reports-panel .report-item-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

#reports-panel .report-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #7f8ea3;
    flex-wrap: wrap;
    max-width: 100%;
}

#reports-panel .report-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    background: rgba(42, 36, 56, 0.4);
    border-radius: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#reports-panel .report-item-meta span:hover {
    background: rgba(42, 36, 56, 0.6);
    color: #e0e1dd;
}

#reports-panel .report-item-meta i {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

#reports-panel .report-item-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

#reports-panel .report-item-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#reports-panel .report-item-status:hover::before {
    left: 100%;
}

#reports-panel .report-item-status.pending {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.15);
}

#reports-panel .report-item-status.pending::after {
    content: '●';
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

#reports-panel .report-item-status.resolved {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

#reports-panel .report-item-content {
    padding: 12px 14px;
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

#reports-panel .report-item-content p {
    margin: 0 0 10px 0;
    color: #e0e1dd;
    font-size: 12px;
    line-height: 1.5;
    background: rgba(42, 36, 56, 0.3);
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 2px solid rgba(103, 84, 169, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

#reports-panel .report-item-content p:last-child {
    margin-bottom: 0;
}

#reports-panel .report-item-content strong {
    color: #6754a9;
    margin-right: 6px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

#reports-panel .report-item-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 10px 14px;
    border-top: 1px solid rgba(42, 36, 56, 0.5);
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.6) 0%, rgba(26, 23, 38, 0.4) 100%);
    position: relative;
    z-index: 2;
}

#reports-panel .report-btn {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    background: transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

#reports-panel .report-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#reports-panel .report-btn:hover::before {
    width: 300px;
    height: 300px;
}

#reports-panel .report-btn i {
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 1;
}

#reports-panel .report-btn span {
    position: relative;
    z-index: 1;
}

#reports-panel .report-btn-resolve {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.35);
    color: #22c55e;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

#reports-panel .report-btn-resolve:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
    border-color: #22c55e;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

#reports-panel .report-btn-resolve:active {
    transform: translateY(-1px) scale(1);
}

#reports-panel .report-btn-view {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

#reports-panel .report-btn-view:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: #3b82f6;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

#reports-panel .report-btn-view:active {
    transform: translateY(-1px) scale(1);
}

#reports-panel .report-btn-delete {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.35);
    color: #ef4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

#reports-panel .report-btn-delete:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: #ef4444;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

#reports-panel .report-btn-delete:active {
    transform: translateY(-1px) scale(1);
}

@media (max-width: 768px) {
    #reports-panel .reports-tabs {
        flex-direction: column;
        gap: 4px;
        padding: 4px;
    }
    
    #reports-panel .report-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
    
    #reports-panel .reports-content {
        padding: 16px;
    }
    
    #reports-panel .reports-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    #reports-panel .reports-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    #reports-panel .report-item {
        border-radius: 14px;
    }
    
    #reports-panel .report-item-header {
        padding: 16px 16px 12px 16px;
    }
    
    #reports-panel .report-item-content {
        padding: 14px 16px;
    }
    
    #reports-panel .report-item-actions {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }
    
    #reports-panel .report-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
    }
    
    #reports-panel .report-item-title {
        font-size: 15px;
    }
    
    #reports-panel .report-item-meta {
        gap: 8px;
        font-size: 11px;
    }
    
    #reports-panel .reports-empty {
        padding: 60px 20px;
    }
    
    #reports-panel .reports-empty i {
        width: 56px;
        height: 56px;
    }
}

/* Rapor Screenshot Görüntüleme */
.report-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.report-screenshot-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #0f0d17;
    border: 1px solid #2a2438;
    aspect-ratio: 1;
}

.report-screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .report-screenshots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px;
    }
}

/* === BÖLÜM RAPOR PANELİ (OKU.PHP) === */
.btn-report-error {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-report-error:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-report-error i {
    width: 16px;
    height: 16px;
}

/* Mobilde hata bildir butonu gizli */
@media (max-width: 768px) {
    .btn-report-error {
        display: none !important;
    }
}

.report-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.report-panel-container {
    width: 100%;
    max-width: 1800px;
    height: 90vh;
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.98) 0%, rgba(15, 13, 23, 0.98) 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.report-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(15, 13, 23, 0.95) 50%, rgba(26, 23, 38, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.report-panel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6754a9 0%, #4f46e5 50%, #8b5cf6 100%);
}

.report-panel-header h3 {
    margin: 0;
    color: #e0e1dd;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.report-panel-header h3 i {
    width: 24px;
    height: 24px;
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.report-panel-close {
    background: linear-gradient(135deg, rgba(42, 36, 56, 0.6) 0%, rgba(26, 23, 38, 0.8) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    color: #e0e1dd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.report-panel-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.report-panel-close:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    transform: scale(1.05);
}

.report-panel-close:hover::before {
    width: 100px;
    height: 100px;
}

.report-panel-close i {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.report-panel-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.report-panel-left {
    flex: 1;
    display: flex;
    flex-direction: row;
    border-right: 1px solid #2a2438;
    overflow: hidden;
    background: rgba(15, 13, 23, 0.5);
}

.report-thumbnails-sidebar {
    width: 120px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.9) 0%, rgba(26, 23, 38, 0.7) 100%);
    overflow-y: auto;
    overflow-x: hidden;
}

.thumbnails-header {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, transparent 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.thumbnails-header h5 {
    margin: 0;
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.thumbnails-header h5 i {
    width: 16px;
    height: 16px;
    color: #6754a9;
}

.thumbnails-list {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(103, 84, 169, 0.2);
    background: rgba(26, 23, 38, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 3/4;
}

.thumbnail-item:hover {
    border-color: rgba(103, 84, 169, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
    background: rgba(26, 23, 38, 0.8);
}

.thumbnail-item.active {
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.3), 0 4px 16px rgba(103, 84, 169, 0.4);
    background: rgba(103, 84, 169, 0.15);
}

.thumbnail-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay,
.thumbnail-item.active .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-number {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.9) 0%, rgba(79, 70, 229, 0.8) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 24px;
    text-align: center;
}

.report-images-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.report-images-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.12) 0%, rgba(15, 13, 23, 0.85) 50%, rgba(26, 23, 38, 0.8) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.report-images-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 84, 169, 0.3), transparent);
}

.report-header-info {
    flex: 1;
}

.report-header-info h4 {
    margin: 0 0 4px 0;
    color: #e0e1dd;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-header-info h4 i {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.report-header-info p {
    margin: 0;
    color: #7f8ea3;
    font-size: 12px;
}

.report-image-size-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.8) 0%, rgba(15, 13, 23, 0.9) 100%);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(103, 84, 169, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.report-image-size-controls label {
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.report-image-size-controls label i {
    width: 14px;
    height: 14px;
    color: #6754a9;
}

.report-image-size-controls input[type="range"] {
    width: 120px;
    height: 6px;
    background: #2a2438;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.report-image-size-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #6754a9;
    border-radius: 50%;
    cursor: pointer;
}

.report-image-size-controls input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #6754a9;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.report-image-size-controls span {
    color: #e0e1dd;
    font-size: 13px;
    font-weight: 500;
    min-width: 45px;
}

.report-images-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Hardware acceleration ve scroll performansı */
    will-change: scroll-position;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
    /* Scroll performansı için */
    contain: layout style paint;
}

/* Scroll Bar Stilleri - Report Panel */
.report-images-wrapper::-webkit-scrollbar,
.report-panel-right::-webkit-scrollbar,
.selections-list::-webkit-scrollbar,
.report-thumbnails-sidebar::-webkit-scrollbar {
    width: 10px;
}

.report-images-wrapper::-webkit-scrollbar-track,
.report-panel-right::-webkit-scrollbar-track,
.selections-list::-webkit-scrollbar-track,
.report-thumbnails-sidebar::-webkit-scrollbar-track {
    background: rgba(15, 13, 23, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(42, 36, 56, 0.3);
}

.report-images-wrapper::-webkit-scrollbar-thumb,
.report-panel-right::-webkit-scrollbar-thumb,
.selections-list::-webkit-scrollbar-thumb,
.report-thumbnails-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.6) 0%, rgba(79, 70, 229, 0.5) 100%);
    border-radius: 10px;
    border: 2px solid rgba(15, 13, 23, 0.5);
    transition: all 0.3s ease;
}

.report-images-wrapper::-webkit-scrollbar-thumb:hover,
.report-panel-right::-webkit-scrollbar-thumb:hover,
.selections-list::-webkit-scrollbar-thumb:hover,
.report-thumbnails-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.8) 0%, rgba(79, 70, 229, 0.7) 100%);
    border-color: rgba(103, 84, 169, 0.3);
    box-shadow: 0 0 8px rgba(103, 84, 169, 0.4);
}

.report-images-wrapper::-webkit-scrollbar-thumb:active,
.report-panel-right::-webkit-scrollbar-thumb:active,
.selections-list::-webkit-scrollbar-thumb:active,
.report-thumbnails-sidebar::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 100%);
}

/* Firefox Scroll Bar */
.report-images-wrapper,
.report-panel-right,
.selections-list,
.report-thumbnails-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 84, 169, 0.6) rgba(15, 13, 23, 0.5);
}

.report-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Hardware acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.report-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    /* Hardware acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.report-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid #2a2438;
    border-radius: 8px;
    cursor: crosshair;
    transition: all 0.3s ease;
    object-fit: contain;
    /* Hardware acceleration ve image rendering optimizasyonu */
    will-change: transform;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* GPU acceleration */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.report-image-label {
    color: #7f8ea3;
    font-size: 12px;
    font-weight: 500;
}

.selection-box {
    position: absolute;
    border: 2px dashed #ef4444;
    background: rgba(239, 68, 68, 0.15);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.report-instructions {
    padding: 12px 20px;
    border-top: 1px solid #2a2438;
    background: rgba(15, 13, 23, 0.8);
    text-align: center;
    color: #7f8ea3;
    font-size: 13px;
}

.report-instructions i {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: middle;
}

.report-panel-right {
    width: 420px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.7) 0%, rgba(26, 23, 38, 0.5) 100%);
    overflow-y: auto;
    border-left: 1px solid rgba(42, 36, 56, 0.5);
}

.report-right-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.report-selections-preview {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(103, 84, 169, 0.2);
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(15, 13, 23, 0.6) 50%, rgba(26, 23, 38, 0.4) 100%);
    position: relative;
}

.report-selections-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 84, 169, 0.3), transparent);
}

.selections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.selections-header h4 {
    margin: 0;
    color: #e0e1dd;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selections-header h4 i {
    width: 18px;
    height: 18px;
    color: #6754a9;
}

.selection-badge {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    color: #6754a9;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.selections-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selections-empty {
    text-align: center;
    padding: 50px 20px;
    color: #7f8ea3;
    background: rgba(26, 23, 38, 0.3);
    border-radius: 10px;
    border: 2px dashed rgba(103, 84, 169, 0.2);
}

.selections-empty i {
    width: 56px;
    height: 56px;
    color: #6754a9;
    margin-bottom: 16px;
    opacity: 0.5;
}

.selections-empty p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #7f8ea3;
}

.selection-item {
    background: rgba(26, 23, 38, 0.6);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s ease;
}

.selection-item:hover {
    border-color: rgba(103, 84, 169, 0.4);
    background: rgba(26, 23, 38, 0.8);
}

.selection-preview {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #0f0d17;
    border: 1px solid #2a2438;
}

.selection-preview img {
    width: 100%;
    height: auto;
    display: block;
}

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

.selection-info span {
    color: #7f8ea3;
    font-size: 12px;
    font-weight: 500;
}

.remove-selection {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    color: #ef4444;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.remove-selection:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.remove-selection i {
    width: 14px;
    height: 14px;
}

.report-form-section {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.6) 0%, rgba(26, 23, 38, 0.4) 100%);
    border-top: 1px solid rgba(103, 84, 169, 0.15);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.form-group label i {
    width: 18px;
    height: 18px;
    color: #6754a9;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    padding: 6px;
    border-radius: 6px;
    border: 1px solid rgba(103, 84, 169, 0.2);
}

.form-group label .required {
    color: #ef4444;
    margin-left: 4px;
    font-weight: 700;
}

.form-hint {
    display: block;
    margin-top: 8px;
    color: #7f8ea3;
    font-size: 12px;
    font-style: italic;
    padding-left: 28px;
}

.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.9) 0%, rgba(26, 23, 38, 0.7) 100%);
    border: 1px solid rgba(103, 84, 169, 0.25);
    border-radius: 12px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    resize: vertical;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 1.6;
}

.form-group textarea::placeholder {
    color: #7f8ea3;
    opacity: 0.7;
}

.form-group textarea:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 4px rgba(103, 84, 169, 0.15), 0 4px 12px rgba(103, 84, 169, 0.1);
    background: linear-gradient(135deg, rgba(15, 13, 23, 1) 0%, rgba(26, 23, 38, 0.9) 100%);
    transform: translateY(-1px);
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.captcha-display {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.8) 0%, rgba(15, 13, 23, 0.9) 100%);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 12px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-math .captcha-question {
    font-size: 24px;
    font-weight: 700;
    color: #e0e1dd;
    text-align: center;
    letter-spacing: 2px;
}

.captcha-color .captcha-question {
    text-align: center;
    color: #e0e1dd;
    font-size: 14px;
    margin-bottom: 16px;
}

.captcha-color .captcha-question strong {
    color: #6754a9;
    font-weight: 700;
}

.captcha-colors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.captcha-color-btn {
    background: transparent;
    border: 2px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.captcha-color-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.captcha-color-btn span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.captcha-color-btn:hover {
    border-color: rgba(103, 84, 169, 0.6);
    transform: scale(1.05);
}

.captcha-color-btn.selected {
    border-color: #6754a9;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}

.captcha-shape .captcha-question {
    text-align: center;
    color: #e0e1dd;
    font-size: 14px;
    margin-bottom: 16px;
}

.captcha-shape .captcha-question strong {
    color: #6754a9;
    font-weight: 700;
}

.captcha-shapes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.captcha-shape-btn {
    background: rgba(26, 23, 38, 0.6);
    border: 2px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.captcha-shape-btn:hover {
    border-color: rgba(103, 84, 169, 0.6);
    background: rgba(26, 23, 38, 0.8);
    transform: translateY(-2px);
}

.captcha-shape-btn.selected {
    border-color: #6754a9;
    background: rgba(103, 84, 169, 0.15);
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.2);
}

.shape-symbol {
    font-size: 32px;
    color: #6754a9;
    line-height: 1;
}

.shape-name {
    font-size: 11px;
    color: #e0e1dd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.captcha-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.captcha-input-group input:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.15);
    background: rgba(15, 13, 23, 0.9);
}

.captcha-refresh {
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 10px;
    color: #6754a9;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
    transform: rotate(180deg);
}

.captcha-refresh i {
    width: 18px;
    height: 18px;
}

.form-actions {
    margin-top: auto;
    padding-top: 20px;
}

.btn-submit-report {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6754a9 0%, #4f46e5 50%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.3);
}

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

.btn-submit-report:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(103, 84, 169, 0.5);
    background: linear-gradient(135deg, #7c6ab8 0%, #5b52d6 50%, #9d6ff8 100%);
}

.btn-submit-report:hover:not(:disabled)::before {
    left: 100%;
}

.btn-submit-report:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(103, 84, 169, 0.4);
}

.btn-submit-report:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit-report i {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.btn-submit-report span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .report-panel-right {
        width: 360px;
    }
}

@media (max-width: 768px) {
    .report-panel-overlay {
        padding: 0;
    }
    
    .report-panel-container {
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
    }
    
    .report-panel-content {
        flex-direction: column;
    }
    
    .report-panel-left {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid #2a2438;
        min-height: 0;
    }
    
    .report-thumbnails-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: 150px;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(103, 84, 169, 0.2);
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .thumbnails-header {
        position: sticky;
        left: 0;
        top: 0;
        min-width: 80px;
        border-right: 1px solid rgba(103, 84, 169, 0.2);
        border-bottom: none;
        z-index: 100;
    }
    
    .thumbnails-list {
        flex-direction: row;
        padding: 8px;
        gap: 8px;
    }
    
    .thumbnail-item {
        min-width: 80px;
        flex-shrink: 0;
    }
    
    .report-images-main {
        flex: 1;
        min-height: 0;
    }
    
    .report-panel-right {
        width: 100%;
        max-height: 50vh;
        border-left: none;
    }
    
    .report-images-header {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
    
    .report-header-info h4 {
        font-size: 14px;
    }
    
    .report-header-info p {
        font-size: 11px;
    }
    
    .report-image-size-controls {
        width: 100%;
        padding: 6px 10px;
    }
    
    .report-image-size-controls input[type="range"] {
        flex: 1;
        width: 100px;
    }
    
    .report-selections-preview {
        padding: 16px;
    }
    
    .captcha-colors,
    .captcha-shapes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .captcha-display {
        padding: 16px;
        min-height: 100px;
    }
    
    .btn-report-error span {
        display: none;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-actions {
        padding-top: 16px;
    }
    
    /* Bölüm Ekleme - Responsive */
    .chapter-upload-layout {
        grid-template-columns: 1fr;
    }
    
    .chapter-series-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .panel-header-with-back {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-back-to-series {
        width: 100%;
        justify-content: center;
    }
    
    /* Yorum Yönetimi - Responsive */
    .comments-table-header {
        display: none;
    }
    
    .table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .table-cell {
        width: 100%;
        padding: 4px 0;
    }
    
    .comments-stats {
        grid-template-columns: 1fr;
    }
    
    .comments-filters {
        flex-direction: column;
    }
    
    .comments-filters .filter-group {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .report-panel-container {
        max-width: 95%;
        height: 95vh;
    }
    
    .report-panel-right {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .report-panel-overlay {
        padding: 0;
    }
    
    .report-panel-container {
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
    }
    
    .report-panel-content {
        flex-direction: column;
    }
    
    .report-panel-left {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid #2a2438;
        min-height: 0;
    }
    
    .report-thumbnails-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: 150px;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(103, 84, 169, 0.2);
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .thumbnails-header {
        position: sticky;
        left: 0;
        top: 0;
        min-width: 80px;
        border-right: 1px solid rgba(103, 84, 169, 0.2);
        border-bottom: none;
        z-index: 100;
    }
    
    .thumbnails-list {
        flex-direction: row;
        padding: 8px;
        gap: 8px;
    }
    
    .thumbnail-item {
        min-width: 80px;
        flex-shrink: 0;
    }
    
    .report-images-main {
        flex: 1;
        min-height: 0;
    }
    
    .report-panel-right {
        width: 100%;
        max-height: 50vh;
        border-left: none;
    }
    
    .report-images-header {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
    
    .report-header-info h4 {
        font-size: 14px;
    }
    
    .report-header-info p {
        font-size: 11px;
    }
    
    .report-image-size-controls {
        width: 100%;
        padding: 6px 10px;
    }
    
    .report-image-size-controls input[type="range"] {
        flex: 1;
        width: 100px;
    }
    
    .report-selections-preview {
        padding: 16px;
    }
    
    .captcha-colors,
    .captcha-shapes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .captcha-display {
        padding: 16px;
        min-height: 100px;
    }
    
    .btn-report-error span {
        display: none;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-actions {
        padding-top: 16px;
    }
    
    /* Bölüm Ekleme - Responsive */
    .chapter-upload-layout {
        grid-template-columns: 1fr;
    }
    
    .chapter-series-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .panel-header-with-back {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-back-to-series {
        width: 100%;
        justify-content: center;
    }
    
    /* Yorum Yönetimi - Responsive */
    .comments-table-header {
        display: none;
    }
    
    .table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .table-cell {
        width: 100%;
        padding: 4px 0;
    }
    
    .comments-stats {
        grid-template-columns: 1fr;
    }
    
    .comments-filters {
        flex-direction: column;
    }
    
    .comments-filters .filter-group {
        width: 100%;
    }
}


/* === AYARLAR SAYFASI - FİLTRE YÖNETİMİ === */
.settings-section {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.6) 0%, rgba(15, 13, 23, 0.8) 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2438;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e0e1dd;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header p {
    color: #7f8ea3;
    margin: 0;
    font-size: 14px;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.filter-card {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(15, 13, 23, 0.98) 100%);
    border: 1px solid rgba(103, 84, 169, 0.2);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}

.filter-card:hover {
    border-color: rgba(103, 84, 169, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.2);
}

.filter-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.filter-card-title {
    flex: 1;
}

.filter-card-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e0e1dd;
    margin: 0 0 6px 0;
}

.filter-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.filter-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.filter-status.inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.filter-card-actions {
    display: flex;
    gap: 8px;
}

.btn-edit-filter,
.btn-delete-filter {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #e0e1dd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit-filter:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
    color: #6754a9;
}

.btn-delete-filter:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-edit-filter i,
.btn-delete-filter i {
    width: 16px;
    height: 16px;
}

.filter-card-content {
    margin-top: 12px;
}

.filter-keywords-preview {
    color: #e0e1dd;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.filter-keywords-count {
    color: #7f8ea3;
    font-size: 11px;
}

.filter-actions {
    margin-top: 20px;
}

.btn-add-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    color: #6754a9;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-filter:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.25) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
}

.btn-add-filter i {
    width: 18px;
    height: 18px;
}

.filters-loading,
.filters-empty,
.filters-error {
    text-align: center;
    padding: 40px 20px;
    color: #7f8ea3;
}

.filters-error {
    color: #ef4444;
}

/* Filtre Modal */
.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.filter-modal {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2a2438;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e1dd;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #e0e1dd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.modal-content {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: #0f0d17;
    border: 1px solid #2a2438;
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6754a9;
    box-shadow: 0 0 0 3px rgba(103, 84, 169, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    display: block;
    color: #7f8ea3;
    font-size: 12px;
    margin-top: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-actions {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #2a2438;
    justify-content: flex-end;
}

.btn-save,
.btn-cancel {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
}

.btn-save {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.btn-save:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-cancel {
    background: rgba(42, 36, 56, 0.5);
    border-color: #2a2438;
    color: #7f8ea3;
}

.btn-cancel:hover {
    background: rgba(42, 36, 56, 0.7);
    border-color: #2a2438;
    color: #e0e1dd;
}

@media (max-width: 768px) {
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .filter-modal {
        max-width: 100%;
        margin: 10px;
    }
}


/* === YORUM BİLDİRİMLERİ === */
.comment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.3s ease;
    transition: all 0.3s ease;
}

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

.comment-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.comment-notification .notification-content i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comment-notification .notification-content span {
    color: #e0e1dd;
    font-size: 14px;
    line-height: 1.5;
}

.comment-notification .notification-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 6px;
    color: #7f8ea3;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.comment-notification .notification-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.comment-notification .notification-close i {
    width: 14px;
    height: 14px;
}


.comment-notification-success {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.comment-notification-success .notification-content i {
    color: #22c55e;
}

.comment-notification-info {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.95) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.comment-notification-info .notification-content i {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .comment-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: 100%;
    }
}

/* === GİRİŞ GEREKLİ MODAL === */
.login-required-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 13, 23, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.login-required-modal {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.98) 0%, rgba(34, 28, 51, 0.98) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-required-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(103, 84, 169, 0.8) 50%, 
        transparent 100%);
    border-radius: 16px 16px 0 0;
}

.login-required-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 16px;
    border: 2px solid rgba(103, 84, 169, 0.3);
    box-shadow: 0 8px 24px rgba(103, 84, 169, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-required-icon i {
    width: 40px;
    height: 40px;
    color: #6754a9;
}

.login-required-title {
    color: #e0e1dd;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.login-required-message {
    color: #7f8ea3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.login-required-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-login-required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.95) 0%, rgba(79, 70, 229, 0.95) 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(103, 84, 169, 0.3);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-login-required:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 1) 0%, rgba(79, 70, 229, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(103, 84, 169, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(103, 84, 169, 0.5);
}

.btn-login-required:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(103, 84, 169, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-login-required i {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.btn-close-modal {
    background: transparent;
    color: #7f8ea3;
    padding: 10px 20px;
    border: 1px solid rgba(42, 36, 56, 0.5);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(42, 36, 56, 0.5);
    color: #e0e1dd;
    border-color: rgba(103, 84, 169, 0.3);
}

@media (max-width: 768px) {
    .login-required-modal {
        padding: 36px 28px;
        max-width: 90%;
    }
    
    .login-required-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .login-required-icon i {
        width: 32px;
        height: 32px;
    }
    
    .login-required-title {
        font-size: 20px;
    }
    
    .login-required-message {
        font-size: 14px;
    }
}

/* === BÖLÜM GİRİŞ GEREKLİ UYARISI === */
.chapter-login-required {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(15, 13, 23, 0.95) 0%, rgba(26, 23, 38, 0.95) 100%);
    border-radius: 16px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.chapter-login-required::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(103, 84, 169, 0.8) 50%, 
        transparent 100%);
}

.chapter-login-required::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(103, 84, 169, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.chapter-login-required-content {
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chapter-login-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 20px;
    border: 2px solid rgba(103, 84, 169, 0.3);
    box-shadow: 0 12px 40px rgba(103, 84, 169, 0.25),
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.chapter-login-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.4), rgba(79, 70, 229, 0.4));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chapter-login-icon:hover::before {
    opacity: 1;
}

.chapter-login-icon i {
    width: 48px;
    height: 48px;
    color: #6754a9;
    filter: drop-shadow(0 2px 8px rgba(103, 84, 169, 0.3));
}

.chapter-login-title {
    color: #e0e1dd;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chapter-login-message {
    color: #7f8ea3;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.chapter-login-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-chapter-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.95) 0%, rgba(79, 70, 229, 0.95) 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(103, 84, 169, 0.3);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(103, 84, 169, 0.35),
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

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

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

.btn-chapter-login:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 1) 0%, rgba(79, 70, 229, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(103, 84, 169, 0.45),
                0 0 0 1px rgba(103, 84, 169, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(103, 84, 169, 0.5);
}

.btn-chapter-login:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.3),
                0 0 0 1px rgba(103, 84, 169, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-chapter-login i {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .chapter-login-required {
        min-height: 60vh;
        padding: 40px 16px;
    }
    
    .chapter-login-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .chapter-login-icon i {
        width: 40px;
        height: 40px;
    }
    
    .chapter-login-title {
        font-size: 22px;
    }
    
    .chapter-login-message {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .btn-chapter-login {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Ayarlar Modal */
.settings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.settings-modal {
    background: linear-gradient(135deg, #1a1726 0%, #221c33 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.settings-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #2a2438;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.settings-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-modal-header h3 i {
    width: 22px;
    height: 22px;
    color: #6754a9;
}

.settings-modal-close {
    background: transparent;
    border: none;
    color: #7f8ea3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.settings-modal-close:hover {
    color: #6754a9;
    background-color: rgba(103, 84, 169, 0.1);
}

.settings-modal-close i {
    width: 20px;
    height: 20px;
}

.settings-modal-content {
    padding: 24px;
}

.settings-modal-content .form-group {
    margin-bottom: 24px;
}

.settings-modal-content .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #e0e1dd;
}

.settings-modal-content .form-group label i {
    width: 16px;
    height: 16px;
    color: #6754a9;
}

.settings-modal-content .form-group label span {
    flex: 1;
}

.session-duration-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.session-duration-presets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.preset-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.12) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1.5px solid rgba(103, 84, 169, 0.25);
    border-radius: 10px;
    color: #e0e1dd;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.preset-btn i {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.preset-btn:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.22) 0%, rgba(79, 70, 229, 0.18) 100%);
    border-color: #6754a9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
}

.preset-btn.active {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #6754a9;
    color: #fff;
    box-shadow: 0 4px 16px rgba(103, 84, 169, 0.4);
}

.preset-btn:active {
    transform: translateY(0);
}

.session-duration-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    margin-top: 8px;
}

.session-duration-display #session-duration-value {
    color: #6754a9;
    font-size: 28px;
    min-width: 50px;
    text-align: center;
    font-weight: 700;
}

.session-duration-display .session-duration-unit {
    color: #7f8ea3;
    font-size: 16px;
    font-weight: 500;
}

/* Checkbox Stilleri */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.08) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1.5px solid rgba(103, 84, 169, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.checkbox-label:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-color: rgba(103, 84, 169, 0.4);
}

.session-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #6754a9;
    flex-shrink: 0;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #e0e1dd;
    transition: color 0.3s ease;
}

.checkbox-text i {
    width: 20px;
    height: 20px;
    color: #6754a9;
    transition: color 0.3s ease;
}

.checkbox-label:hover .checkbox-text {
    color: #fff;
}

.checkbox-label:hover .checkbox-text i {
    color: #6754a9;
}

.session-checkbox:checked ~ .checkbox-text {
    color: #fff;
}

.session-checkbox:checked ~ .checkbox-text i {
    color: #fff;
}

.form-help-text {
    margin-top: 8px;
    padding-left: 16px;
    font-size: 12px;
    color: #7f8ea3;
    line-height: 1.5;
}

.btn-cancel-settings,
.btn-submit-settings {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.btn-cancel-settings {
    background: linear-gradient(135deg, rgba(127, 142, 163, 0.1) 0%, rgba(95, 106, 120, 0.05) 100%);
    border: 1px solid rgba(127, 142, 163, 0.3);
    color: #7f8ea3;
}

.btn-cancel-settings:hover {
    background: linear-gradient(135deg, rgba(127, 142, 163, 0.2) 0%, rgba(95, 106, 120, 0.15) 100%);
    border-color: #7f8ea3;
    color: #e0e1dd;
}

.btn-submit-settings {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    border: 1px solid rgba(103, 84, 169, 0.4);
    color: #6754a9;
}

.btn-submit-settings:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.3) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #6754a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.3);
}

.btn-submit-settings:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cancel-settings i,
.btn-submit-settings i {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .settings-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .settings-modal-header {
        padding: 16px 20px;
    }
    
    .settings-modal-header h3 {
        font-size: 18px;
    }
    
    .settings-modal-content {
        padding: 20px;
    }
    
    .session-duration-presets {
        flex-direction: column;
    }
    
    .preset-btn {
        width: 100%;
        min-width: 100%;
    }
    
    .session-duration-display {
        padding: 14px 20px;
    }
    
    .session-duration-display #session-duration-value {
        font-size: 24px;
    }
    
    .checkbox-label {
        padding: 14px;
        gap: 10px;
    }
    
    .checkbox-custom {
        width: 22px;
        height: 22px;
    }
    
    .checkbox-text {
        font-size: 14px;
        gap: 8px;
    }
    
    .checkbox-text i {
        width: 18px;
        height: 18px;
    }
    
    .form-help-text {
        font-size: 11px;
        padding-left: 14px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel-settings,
    .btn-submit-settings {
        width: 100%;
        justify-content: center;
    }
}

/* === CEZA BİLDİRİMLERİ === */
.punishment-notifications {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.punishment-notifications.visible {
    opacity: 1;
    pointer-events: auto;
}

.punishment-notification {
    background: rgba(30, 30, 46, 0.95);
    border: 2px solid rgba(103, 84, 169, 0.3);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: slideInRight 0.4s ease-out;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.punishment-notification.punishment-warning {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(30, 30, 46, 0.95);
}

.punishment-notification.punishment-mute {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(30, 30, 46, 0.95);
}

.punishment-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.punishment-notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.punishment-notification-icon i {
    width: 20px;
    height: 20px;
}

.punishment-notification-text {
    flex: 1;
    min-width: 0;
}

.punishment-notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 4px;
}

.punishment-notification-reason {
    font-size: 13px;
    color: #b8bcc8;
    line-height: 1.4;
    margin-bottom: 4px;
}

.punishment-notification-expires {
    font-size: 12px;
    color: #7f8ea3;
    margin-top: 4px;
}

.punishment-notification-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #b8bcc8;
}

.punishment-notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e1dd;
}

.punishment-notification-close i {
    width: 14px;
    height: 14px;
}

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

@media (max-width: 768px) {
    .punishment-notifications {
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
    
    .punishment-notification {
        padding: 12px;
    }
    
    .punishment-notification-icon {
        width: 36px;
        height: 36px;
    }
    
    .punishment-notification-title {
        font-size: 13px;
    }
    
    .punishment-notification-reason {
        font-size: 12px;
    }
}

/* === CEZA DETAY PANELİ === */
.punishment-detail-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.punishment-detail-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.punishment-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.punishment-panel-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.98) 0%, rgba(26, 23, 38, 0.98) 100%);
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(251, 191, 36, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

.punishment-detail-panel.active .punishment-panel-content {
    transform: scale(1) translateY(0);
}

.punishment-panel-header {
    padding: 24px 28px;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.punishment-panel-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #e0e1dd;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.punishment-panel-header h3 i {
    width: 22px;
    height: 22px;
    color: #fbbf24;
}

.punishment-panel-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #b8bcc8;
}

.punishment-panel-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e1dd;
    transform: rotate(90deg);
}

.punishment-panel-close i {
    width: 20px;
    height: 20px;
}

.punishment-panel-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
    background: linear-gradient(180deg, rgba(15, 13, 23, 0.3) 0%, rgba(15, 13, 23, 0.1) 100%);
}

.punishment-panel-body::-webkit-scrollbar {
    width: 10px;
}

.punishment-panel-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.punishment-panel-body::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.3);
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.punishment-panel-body::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 191, 36, 0.5);
}

.punishment-panel-empty {
    text-align: center;
    color: #7f8ea3;
    font-size: 15px;
    padding: 60px 20px;
    font-style: italic;
}

.punishment-panel-item {
    background: rgba(20, 20, 30, 0.6);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.punishment-panel-item:hover {
    background: rgba(25, 25, 35, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.punishment-panel-item-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.punishment-panel-item-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.punishment-panel-item-type i {
    width: 16px;
    height: 16px;
}

.punishment-panel-item-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7f8ea3;
    font-size: 12px;
    font-weight: 500;
}

.punishment-panel-item-date i {
    width: 14px;
    height: 14px;
}

.punishment-panel-item-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.punishment-reason-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.punishment-reason-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.punishment-reason-box {
    padding: 12px 14px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 8px;
    color: #e0e1dd;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.punishment-admin-box {
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 8px;
}

.punishment-admin-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.punishment-admin-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(239, 68, 68, 0.4);
    flex-shrink: 0;
}

.punishment-admin-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.punishment-admin-name {
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.1px;
}

.punishment-admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.punishment-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid rgba(251, 191, 36, 0.3);
}

.punishment-date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.punishment-date-item i {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

.date-label {
    color: #9ca3af;
    font-weight: 500;
    min-width: 140px;
    font-size: 12px;
}

.date-value {
    color: #e0e1dd;
    font-weight: 600;
    font-size: 13px;
}

@media (max-width: 768px) {
    .punishment-panel-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .punishment-panel-header {
        padding: 20px;
    }
    
    .punishment-panel-header h3 {
        font-size: 18px;
    }
    
    .punishment-panel-body {
        padding: 20px;
    }
    
    .punishment-panel-item {
        padding: 20px;
    }
    
    .punishment-panel-item {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .punishment-panel-item-header {
        margin-bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .punishment-panel-item-type {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .punishment-panel-item-type i {
        width: 14px;
        height: 14px;
    }
    
    .punishment-reason-box {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .punishment-admin-box {
        padding: 10px 12px;
    }
    
    .punishment-admin-content {
        flex-wrap: wrap;
    }
    
    .punishment-admin-avatar {
        width: 28px;
        height: 28px;
    }
    
    .punishment-admin-name {
        font-size: 13px;
    }
    
    .punishment-admin-badge {
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .punishment-admin-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .punishment-dates {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .punishment-date-item {
        font-size: 12px;
        gap: 6px;
    }
    
    .punishment-date-item i {
        width: 12px;
        height: 12px;
    }
    
    .date-label {
        min-width: 120px;
        font-size: 11px;
    }
    
    .date-value {
        font-size: 12px;
    }
    
    .user-punishment-btn {
        width: 26px;
        height: 26px;
    }
    
    .user-punishment-btn i {
        width: 14px;
        height: 14px;
    }
    
    .punishment-badge-count {
        min-width: 16px;
        height: 16px;
        font-size: 8px;
        padding: 0 4px;
        top: -3px;
        right: -3px;
    }
}

/* === SUSTURULMUŞ KULLANICI UYARI PANELİ === */
.mute-warning-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mute-warning-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mute-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.mute-panel-content {
    position: relative;
    background: rgba(30, 30, 46, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.mute-warning-panel.active .mute-panel-content {
    transform: scale(1) translateY(0);
}

.mute-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mute-panel-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mute-panel-icon i {
    width: 24px;
    height: 24px;
    color: #f59e0b;
    stroke-width: 2;
}

.mute-panel-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #e0e1dd;
    flex: 1;
}

.mute-panel-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #b8bcc8;
}

.mute-panel-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e1dd;
    transform: rotate(90deg);
}

.mute-panel-close i {
    width: 18px;
    height: 18px;
}

.mute-panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mute-panel-message {
    margin: 0;
    font-size: 15px;
    color: #e0e1dd;
    line-height: 1.6;
    text-align: center;
    padding: 12px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
}

.mute-panel-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mute-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mute-detail-item i {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

.mute-detail-label {
    color: #9ca3af;
    font-weight: 600;
    font-size: 13px;
    min-width: 100px;
}

.mute-detail-value {
    color: #e0e1dd;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    word-break: break-word;
}

@media (max-width: 768px) {
    .mute-panel-content {
        width: 95%;
    }

    .mute-panel-header {
        padding: 16px 20px;
        gap: 10px;
    }

    .mute-panel-icon {
        width: 36px;
        height: 36px;
    }

    .mute-panel-icon i {
        width: 20px;
        height: 20px;
    }

    .mute-panel-header h3 {
        font-size: 18px;
    }

    .mute-panel-close {
        width: 30px;
        height: 30px;
    }

    .mute-panel-close i {
        width: 16px;
        height: 16px;
    }

    .mute-panel-body {
        padding: 20px;
        gap: 16px;
    }

    .mute-panel-message {
        font-size: 14px;
        padding: 10px;
    }

    .mute-panel-details {
        gap: 12px;
    }

    .mute-detail-item {
        padding: 10px 12px;
        gap: 8px;
    }

    .mute-detail-item i {
        width: 16px;
        height: 16px;
    }

    .mute-detail-label {
        font-size: 12px;
        min-width: 90px;
    }

    .mute-detail-value {
        font-size: 13px;
    }
}

/* === DASHBOARD PANELİ === */
.dashboard-panel {
    padding: 30px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* İstatistik Kartları Grid */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.dashboard-stat-card {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.8) 0%, rgba(15, 13, 23, 0.9) 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6754a9 0%, #4f46e5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    border-color: #6754a9;
    box-shadow: 0 8px 24px rgba(103, 84, 169, 0.2);
}

.dashboard-stat-card:hover::before {
    opacity: 1;
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    width: 28px;
    height: 28px;
}

.stat-trend {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.stat-trend-warning {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
}

.stat-trend-warning i {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.stat-trend-warning .stat-trend-label {
    color: #fbbf24;
    font-size: 12px;
    font-weight: 600;
}

.stat-trend-value {
    font-size: 20px;
    font-weight: 700;
    color: #22c55e;
}

.stat-trend-label {
    font-size: 11px;
    color: #7f8ea3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-body {
    margin-bottom: 20px;
}

.stat-card-body .stat-value {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: #e0e1dd;
}

.stat-card-body .stat-label {
    font-size: 14px;
    color: #7f8ea3;
    font-weight: 500;
}

.stat-card-footer {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #2a2438;
    justify-content: space-between;
}

.stat-sub-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #a0aec0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    justify-content: center;
}

.stat-sub-item i {
    width: 16px;
    height: 16px;
    color: #7f8ea3;
}

.stat-sub-item span:first-of-type {
    font-weight: 600;
    color: #e0e1dd;
    margin-right: 2px;
}

.stat-sub-label {
    font-size: 12px;
    color: #7f8ea3;
    white-space: nowrap;
}

/* Stat Card Renkleri */
.stat-users .stat-icon {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.2) 0%, rgba(79, 70, 229, 0.15) 100%);
    color: #6754a9;
}

.stat-users .stat-card-body .stat-value {
    color: #6754a9;
}

.stat-series .stat-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.15) 100%);
    color: #22c55e;
}

.stat-series .stat-card-body .stat-value {
    color: #22c55e;
}

.stat-chapters .stat-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
}

.stat-chapters .stat-card-body .stat-value {
    color: #3b82f6;
}

.stat-comments .stat-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
}

.stat-comments .stat-card-body .stat-value {
    color: #fbbf24;
}

.stat-comments .stat-sub-item.stat-pending {
    color: #fbbf24;
}

.stat-comments .stat-sub-item.stat-pending i {
    color: #fbbf24;
}

/* Yorumlar Uyarı Kartı - Modern Tasarım */
.comment-warning-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.comment-warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.comment-warning-card:hover::before {
    transform: scaleX(1);
}

.comment-warning-card:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2), 0 0 0 1px rgba(251, 191, 36, 0.1);
}

.comment-warning-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.comment-warning-icon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
}

.comment-warning-card:hover .comment-warning-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
    border-color: rgba(251, 191, 36, 0.5);
}

.comment-warning-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.comment-warning-card:hover .comment-warning-icon i {
    transform: scale(1.1);
}

.comment-warning-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.comment-warning-title {
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.4;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.1);
}

.comment-warning-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(251, 191, 36, 0.75);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.comment-warning-card:hover .comment-warning-title {
    color: #f59e0b;
    transform: translateY(-2px);
}

.comment-warning-card:hover .comment-warning-subtitle {
    color: rgba(251, 191, 36, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .comment-warning-card {
        padding: 32px 24px;
    }
    
    .comment-warning-center {
        gap: 16px;
    }
    
    .comment-warning-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }
    
    .comment-warning-icon i {
        width: 32px;
        height: 32px;
    }
    
    .comment-warning-title {
        font-size: 16px;
    }
    
    .comment-warning-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .comment-warning-card {
        padding: 28px 20px;
    }
    
    .comment-warning-icon {
        width: 56px;
        height: 56px;
    }
    
    .comment-warning-icon i {
        width: 28px;
        height: 28px;
    }
    
    .comment-warning-title {
        font-size: 17px;
    }
    
    .comment-warning-subtitle {
        font-size: 12px;
    }
}

.stat-reports .stat-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
}

.stat-reports .stat-card-body .stat-value {
    color: #ef4444;
}

/* Dashboard Detay Kartları */
.dashboard-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.dashboard-detail-card {
    background: linear-gradient(135deg, rgba(26, 23, 38, 0.8) 0%, rgba(15, 13, 23, 0.9) 100%);
    border: 1px solid #2a2438;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.dashboard-detail-card:hover {
    border-color: #6754a9;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.15);
}

.dashboard-warning-card {
    border-left: 4px solid #fbbf24;
}

.detail-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2438;
}

.detail-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e1dd;
}

.detail-card-header h3 i {
    width: 20px;
    height: 20px;
    color: #6754a9;
}

.detail-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6754a9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.detail-card-link:hover {
    color: #7c6bb8;
    gap: 8px;
}

.detail-card-link i {
    width: 16px;
    height: 16px;
}

.detail-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-loading {
    text-align: center;
    padding: 20px;
    color: #7f8ea3;
    font-size: 14px;
}

.dashboard-empty {
    text-align: center;
    padding: 20px;
    color: #7f8ea3;
    font-size: 14px;
}

.dashboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dashboard-item:hover {
    background: rgba(103, 84, 169, 0.1);
    border-color: #6754a9;
}

.dashboard-item-warning {
    border-left: 3px solid #fbbf24;
}

.dashboard-item-image {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.dashboard-item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dashboard-item-content {
    flex: 1;
    min-width: 0;
}

.dashboard-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-item-subtitle {
    font-size: 12px;
    color: #7f8ea3;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #7f8ea3;
    flex-wrap: wrap;
}

.dashboard-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dashboard-item-meta i {
    width: 14px;
    height: 14px;
}

.comment-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-status-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.comment-status-badge.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.comment-status-badge i {
    width: 12px;
    height: 12px;
}

/* Takvim İstatistikleri */
.dashboard-calendar-section {
    margin-top: 30px;
}

.calendar-card {
    width: 100%;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    color: #e0e1dd;
    min-width: 150px;
    text-align: center;
}

.calendar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(103, 84, 169, 0.1);
    border: 1px solid rgba(103, 84, 169, 0.3);
    border-radius: 8px;
    color: #6754a9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(103, 84, 169, 0.2);
    border-color: #6754a9;
    transform: scale(1.05);
}

.calendar-nav-btn i {
    width: 20px;
    height: 20px;
}

.calendar-grid {
    margin-top: 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.calendar-weekday {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #7f8ea3;
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    min-height: 100px;
    padding: 10px;
    background: rgba(42, 36, 56, 0.5);
    border: 1px solid #2a2438;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.calendar-day:hover {
    background: rgba(103, 84, 169, 0.1);
    border-color: #6754a9;
    transform: translateY(-2px);
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
}

.calendar-day.has-chapters {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.15) 0%, rgba(42, 36, 56, 0.6) 100%);
    border-color: rgba(103, 84, 169, 0.4);
}

.calendar-day.has-chapters:hover {
    background: linear-gradient(135deg, rgba(103, 84, 169, 0.25) 0%, rgba(42, 36, 56, 0.7) 100%);
    border-color: #6754a9;
    box-shadow: 0 4px 12px rgba(103, 84, 169, 0.2);
}

.calendar-day-number {
    font-size: 14px;
    font-weight: 600;
    color: #e0e1dd;
    margin-bottom: 6px;
}

.calendar-day-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-chapter-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6754a9;
    background: rgba(103, 84, 169, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
}

.calendar-chapter-count i {
    width: 14px;
    height: 14px;
}

.calendar-series-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    max-height: 100%;
    overflow-y: auto;
}

.calendar-series-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    background: rgba(15, 13, 23, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(42, 36, 56, 0.6);
    transition: all 0.2s ease;
}

.calendar-series-item:hover {
    background: rgba(103, 84, 169, 0.15);
    border-color: rgba(103, 84, 169, 0.4);
}

.calendar-series-cover {
    width: 28px;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid rgba(42, 36, 56, 0.5);
}

.calendar-series-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.calendar-series-name {
    font-size: 10px;
    font-weight: 600;
    color: #e0e1dd;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.calendar-series-chapters {
    font-size: 9px;
    color: #6754a9;
    font-weight: 600;
    line-height: 1.2;
}

.calendar-series-more {
    font-size: 10px;
    color: #7f8ea3;
    font-style: italic;
    text-align: center;
    padding: 4px 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-panel {
        padding: 20px 16px;
    }
    
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dashboard-stat-card {
        padding: 20px;
    }
    
    .stat-card-body .stat-value {
        font-size: 28px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-icon i {
        width: 24px;
        height: 24px;
    }
    
    .stat-card-footer {
        gap: 12px;
    }
    
    .stat-sub-item {
        flex: 1;
        font-size: 12px;
        gap: 6px;
        padding: 6px 8px;
    }
    
    .stat-sub-item i {
        width: 16px;
        height: 16px;
    }
    
    .stat-sub-label {
        font-size: 11px;
    }
    
    .dashboard-details-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 4px;
    }
    
    .calendar-day {
        min-height: 80px;
        padding: 6px;
    }
    
    .calendar-day-number {
        font-size: 12px;
    }
    
    .calendar-chapter-count {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .calendar-series-item {
        padding: 3px;
        gap: 4px;
    }
    
    .calendar-series-cover {
        width: 24px;
        height: 32px;
    }
    
    .calendar-series-name {
        font-size: 9px;
    }
    
    .calendar-series-chapters {
        font-size: 8px;
    }
    
    .calendar-series-list {
        gap: 4px;
    }
    
    .calendar-month-year {
        font-size: 16px;
        min-width: 120px;
    }
    
    .dashboard-detail-card {
        padding: 20px;
    }
    
    .detail-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .dashboard-item {
        padding: 10px;
    }
    
    .dashboard-item-image {
        width: 40px;
        height: 56px;
    }
    
    .dashboard-item-avatar {
        width: 36px;
        height: 36px;
    }
}
