* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Renk değişkenleri tema dosyalarında tanımlanıyor */
:root {
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}

.hero-container {
  width: 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 19 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-fit: cover;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  margin-top: 50px;
}

.hero-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 300;
  font-style: normal;
  margin: 0 0 0 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-author {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  text-align: center;
  opacity: 0.85;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
  background: transparent;
  padding: 15px 20px;
}

header.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 20px;
}

.hero-header .header-container {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  display: block;
  max-height: 100%;
  object-fit: contain;
}

.header-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo:hover {
  opacity: 0.8;
}

/* Full Screen Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-modal.active {
  display: flex;
  opacity: 1;
}

.search-modal-content {
  width: 100%;
  max-width: 800px;
  padding: 40px;
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s;
  z-index: 10;
}

.search-modal-close:hover {
  opacity: 0.7;
}

.search-modal-form {
  width: 100%;
}

.search-modal-input {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 32px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.search-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-modal-input:focus {
  border-bottom-color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

.header-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  background: var(--bg-card);
  color: var(--text-primary);
}

.header-btn:hover {
  background: var(--muted);
}

.header-btn-primary {
  background: var(--primary);
  color: white;
  border: none;
}

.header-btn-primary:hover {
  background: var(--primary-hover, var(--primary));
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-btn:hover {
  color: var(--primary);
}

.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.header-icon-btn button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.header-icon-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(166, 139, 111, 0.2);
}

.header-icon-btn i {
  font-size: 16px;
}

.notification-wrapper,
.user-wrapper {
  position: relative;
  z-index: 201;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

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

.user-avatar:hover {
  box-shadow: 0 4px 12px rgba(166, 139, 111, 0.2);
  transform: scale(1.05);
}

.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 201;
  overflow: hidden;
}

.user-menu.active {
  display: block;
  animation: slideDown 0.2s ease-out;
}

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

.user-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  font-size: 14px;
}

.user-menu a i {
  width: 16px;
  text-align: center;
  color: var(--text-secondary);
}

.user-menu a:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.user-menu a:last-child {
  border-bottom: none;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.user-menu a:hover {
  background: var(--muted);
  color: var(--primary);
}

/* Notification List */
.notification-list {
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.notification-item:hover {
  background: var(--muted);
}

.notification-item.unread {
  background: var(--primary-light);
  font-weight: 500;
}

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

.notification-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-message {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.notification-time {
  font-size: 12px;
  color: var(--text-secondary);
}

.mark-all-read-btn {
  width: 100%;
  padding: 8px 16px;
  background: #fff9e6;
  color: #8b6914;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: none;
}

.mark-all-read-btn:active {
  background: #fff4cc;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 300px;
  max-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 200;
}

.notification-dropdown.active {
  display: block;
  animation: slideDown 0.2s ease-out;
}

/* Main Container */
main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.42857fr 1fr;
  gap: 30px;
}

/* Left Container */
.left-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: none;
}

.topics-header > div:last-child {
  display: flex;
  align-items: center;
  gap: 0;
}

.sort-btn-wrapper {
  position: relative;
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
  user-select: none;
}

.sort-label:hover {
  color: var(--primary);
}

.sort-value {
  color: var(--primary);
  font-weight: 500;
}

/* Primary color variations for better contrast */
.header-btn-primary:hover {
  background: var(--primary-hover, var(--primary));
}

.refresh-icon-btn:hover {
  background: transparent;
}

.new-topic-btn:hover {
  background: transparent;
}

.topic-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(143, 112, 88, 0.15);
}

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

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

.sort-arrow {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.3s, color 0.3s;
}

.sort-label:hover .sort-arrow {
  color: var(--primary);
}

.sort-btn-wrapper.active .sort-arrow {
  color: var(--primary);
  transform: rotate(180deg);
}

.sort-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  margin-top: 8px;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.sort-dropdown.active {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.sort-dropdown a {
  display: block;
  padding: 10px 15px;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  font-size: 14px;
}

.sort-dropdown a:last-child {
  border-bottom: none;
}

.sort-dropdown a:hover,
.sort-dropdown a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.refresh-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius);
  transition: background 0.3s;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.refresh-icon-btn:hover {
  background: transparent;
}

.refresh-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.6s ease;
  filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(800%) hue-rotate(10deg) brightness(95%) contrast(90%);
}


.refresh-icon-btn.rotating .refresh-icon {
  animation: rotate360 0.6s ease;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.new-topic-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: none;
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.new-topic-btn:hover {
  background: transparent;
}

.new-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(800%) hue-rotate(10deg) brightness(95%) contrast(90%);
}

.new-topic-btn span {
  color: var(--text-primary);
}

/* Topic Item */
.topic-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.topic-item:first-of-type {
  margin-top: 0;
}

.topic-item.topic-pinned {
  position: relative;
  overflow: hidden;
}

.topic-item.topic-pinned::before {
  content: 'SABİT';
  position: absolute;
  top: 12px;
  right: -30px;
  width: 120px;
  height: 24px;
  background: #5aa4b0;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 24px;
  transform: rotate(45deg);
  z-index: 1;
}

/* Kilitlenen konu - Siyah beyaz */
.topic-item.topic-locked-item {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.topic-item.topic-locked-item img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* Kilitlenen konularda topic-content'e glitch efekti */
.topic-item.topic-locked-item .topic-content {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  pointer-events: none;
  user-select: none;
  position: relative;
  animation: glitchEffect 3s infinite;
}

.topic-item.topic-locked-item .topic-content::before,
.topic-item.topic-locked-item .topic-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.topic-item.topic-locked-item .topic-content::before {
  background: rgba(255, 0, 0, 0.1);
  clip-path: inset(0 0 0 0);
  animation: glitchRed 3s infinite;
}

.topic-item.topic-locked-item .topic-content::after {
  background: rgba(0, 255, 255, 0.1);
  clip-path: inset(0 0 0 0);
  animation: glitchCyan 3s infinite;
}

@keyframes glitchEffect {
  0%, 90%, 100% {
    transform: translate(0);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  91% {
    transform: translate(-2px, 1px);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  92% {
    transform: translate(2px, -1px);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  93% {
    transform: translate(-1px, 2px);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  94% {
    transform: translate(1px, -2px);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  95% {
    transform: translate(0);
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
}

@keyframes glitchRed {
  0%, 90%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  91% {
    opacity: 0.3;
    transform: translate(-2px, 1px);
  }
  92% {
    opacity: 0;
    transform: translate(2px, -1px);
  }
  93% {
    opacity: 0.2;
    transform: translate(-1px, 2px);
  }
  94% {
    opacity: 0;
    transform: translate(1px, -2px);
  }
  95% {
    opacity: 0;
    transform: translate(0);
  }
}

@keyframes glitchCyan {
  0%, 90%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  91% {
    opacity: 0;
    transform: translate(2px, -1px);
  }
  92% {
    opacity: 0.3;
    transform: translate(-2px, 1px);
  }
  93% {
    opacity: 0;
    transform: translate(1px, -2px);
  }
  94% {
    opacity: 0.2;
    transform: translate(-1px, 2px);
  }
  95% {
    opacity: 0;
    transform: translate(0);
  }
}


.topic-lock-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--text-secondary);
  z-index: 2;
  font-size: 14px;
  opacity: 0.7;
}

.topic-item.topic-pinned .topic-lock-icon {
  top: 40px;
}

.topic-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(166, 139, 111, 0.12);
  transform: translateY(-2px);
}


.topic-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  overflow: hidden;
}

/* Desktop'ta topic-footer-mobile göster */
.topic-footer-mobile {
  display: flex;
}

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

.topic-content {
  flex: 1;
  min-width: 0;
  width: 100%;
  background: var(--bg);
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 0;
  order: 1;
}

.topic-header {
  display: none;
}

.topic-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.topic-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.4;
}

.topic-excerpt {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.topic-meta {
  display: none;
}

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

.topic-meta i {
  font-size: 11px;
}

.category-badge {
  /* Styles inherited from unified category badge above */
}

/* View & Comment Count Badge - Unified Style */
.comment-count,
.comment-count-mobile,
.topic-view-count,
.topic-view-count-mobile,
.topic-reply-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.comment-count i,
.comment-count-mobile i,
.topic-view-count i,
.topic-view-count-mobile i,
.topic-reply-count i {
  font-size: 11px;
}

.topic-sidebar {
  display: none;
}

/* Desktop Avatar'ı gizle */
.topic-item > .topic-avatar:first-child {
  display: none;
}

/* Topic Footer - Desktop: Avatar, isim, tarih, butonlar */
.topic-footer-mobile {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.topic-user-info-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.topic-user-details-mobile {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topic-author-mobile {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.topic-date-mobile {
  font-size: 11px;
  color: var(--text-secondary);
}

.topic-actions-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.category-badge-mobile {
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.category-count-mobile {
  padding: 4px 10px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.comment-count-mobile {
  /* Styles inherited from unified view & comment count badge above */
}

.topic-footer-mobile .topic-avatar {
  width: 40px;
  height: 40px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Right Container */
.right-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Announcement Card */
.announcement-wrapper {
  margin-bottom: 20px;
  padding: 4px;
  background: repeating-linear-gradient(
    45deg,
    #5aa4b0 0px,
    #5aa4b0 10px,
    #e8f4f7 10px,
    #e8f4f7 20px
  );
  border-radius: var(--radius);
}

.announcement-card {
  background: var(--bg-card);
  border-radius: calc(var(--radius) - 2px);
  padding: 16px;
  flex-direction: column;
  gap: 12px;
}

.announcement-header {
  margin-bottom: 0;
}

.announcement-title {
  font-size: 18px;
  font-weight: 700;
  color: #5aa4b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.announcement-content {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
}

.announcement-content p {
  margin: 0;
}

.all-topics-btn {
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
}

.all-topics-btn:hover {
  background: #957d65;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 139, 111, 0.2);
}

.all-topics-btn:active {
  transform: translateY(0);
}

.categories-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.tags-grid .tag-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  color: var(--text-primary);
  text-decoration: none;
}

.tags-grid .tag-btn:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.tag-name {
  font-size: 17px;
  font-weight: 500;
}

.tag-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.tag-btn-active {
  background: var(--primary-light);
  border: 1px solid var(--primary);
}

.tag-btn-active .tag-name {
  color: var(--primary);
  font-weight: 600;
}

.tag-btn-active .tag-count {
  color: var(--primary);
  font-weight: 500;
}

.tags-grid .tag-btn:hover .tag-count {
  color: var(--primary);
}

/* Tema Seçimi Swatches */
.theme-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.theme-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-swatch:hover {
  transform: scale(1.1);
  box-shadow: none;
}

.theme-swatch.active {
  border: 3px solid transparent;
  box-shadow: none;
  transform: scale(1);
}

.theme-swatch.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.categories-grid .category-btn {
  padding: 12px;
  margin: 0;
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.categories-grid .category-btn:not(:nth-child(2n))::after {
  display: none;
}

.categories-grid .category-btn:nth-child(n+3)::before {
  display: none;
}

.categories-section h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.category-btn i {
  font-size: 14px;
  color: var(--primary);
  min-width: 20px;
  transition: transform 0.5s ease;
}

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

.categories-grid .category-btn:hover,
.categories-grid .category-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}


.category-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.category-name {
  font-weight: 500;
}

.category-counter {
  background: transparent;
  color: var(--text-secondary);
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

.category-btn:hover .category-counter {
  background: transparent;
  color: var(--primary);
}

/* Footer */
footer {
  margin-top: 40px;
  margin-bottom: 30px;
}

.footer-bar {
  background: var(--footer-bg, #3d2817);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

.footer-content {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-logo img,
.footer-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 600;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-menu a:hover {
  color: #fff;
}

/* Mobile Menu - Desktop'ta gizle */
.footer-mobile-menu {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr 0.5fr;
    gap: 20px;
    padding: 20px 15px;
  }

  .header-container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .header-container {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .logo {
    flex-basis: 100%;
    text-align: center;
  }

  .search-area {
    flex-basis: 100%;
    max-width: 100%;
    order: 3;
    margin-top: 10px;
  }

  .header-right {
    gap: 10px;
    flex-basis: 100%;
    justify-content: center;
  }

  .search-area input {
    font-size: 16px;
  }

  .topic-item {
    gap: 12px;
    padding: 12px;
  }

  .sort-btn,
  .refresh-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .topics-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sort-btn-wrapper,
  .refresh-btn {
    width: 100%;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .categories-grid .category-btn:not(:nth-child(2n))::after {
    display: none;
  }
  
  .categories-grid .category-btn:nth-child(n+3)::before {
    display: none;
  }
}

/* Topic Create Form */
.topic-create-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.topic-create-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.topic-create-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

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

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

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(166, 139, 111, 0.1);
}

/* Kategori Seçici Stilleri */
.category-selector {
  margin-bottom: 0;
}

.category-search-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.category-search-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.2s;
  font-family: inherit;
}

.category-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(166, 139, 111, 0.1);
}

.category-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.category-checkbox-item {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease, cursor 0.2s ease;
}

.category-checkbox-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.category-checkbox:disabled {
  cursor: not-allowed;
}

.category-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.category-checkbox-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.category-checkbox-content i {
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  width: 20px;
  text-align: center;
}

.category-checkbox-content span {
  flex: 1;
}

.category-checkbox-item:hover:not(.disabled) .category-checkbox-content {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-checkbox-item:hover:not(.disabled) .category-checkbox-content i {
  color: var(--primary);
  transform: scale(1.1);
}

.category-checkbox-item.disabled:hover .category-checkbox-content {
  transform: none;
  box-shadow: none;
}

.category-checkbox:checked ~ .category-checkbox-content {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(166, 139, 111, 0.3);
}

.category-checkbox:checked ~ .category-checkbox-content i {
  color: #fff;
}

.category-checkbox:checked ~ .category-checkbox-content::before {
  content: '✓';
  position: absolute;
  right: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.category-checkbox-item:active .category-checkbox-content {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .category-checkboxes-grid {
    grid-template-columns: 1fr;
  }
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
  line-height: 1.6;
}

/* BBCode Editor Wrapper */
.bbcode-editor-wrapper {
  width: 100%;
  margin-bottom: 0;
}

/* BBCode Toolbar */
.bbcode-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
}

/* WYSIWYG Editor */
.bbcode-editor {
  min-height: 200px;
  max-height: 600px;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.6;
  outline: none;
  transition: all 0.2s;
}

.bbcode-editor:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(166, 139, 111, 0.1);
}

.bbcode-editor-empty::before {
  content: attr(data-placeholder);
  color: var(--text-secondary);
  pointer-events: none;
  position: absolute;
}

.bbcode-editor-empty {
  position: relative;
}

/* Textarea ile toolbar birleşik görünüm (eski sistem için) */
.bbcode-toolbar + .form-textarea,
.bbcode-toolbar + textarea {
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 0;
}

.bbcode-toolbar-group {
  display: flex;
  gap: 4px;
  align-items: center;
}

.bbcode-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
}

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

.bbcode-btn i {
  font-size: 13px;
}

/* BBCode Dropdown */
.bbcode-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.bbcode-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 120px;
  max-height: 250px;
  overflow-y: auto;
}

.bbcode-color-menu {
  min-width: 200px;
  max-height: none;
  padding: 12px;
}

.bbcode-size-menu {
  padding: 0;
}

.bbcode-dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

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

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

.bbcode-dropdown-item:active {
  background: var(--primary-light);
}

/* Color Picker */
.bbcode-color-picker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bbcode-color-picker {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  padding: 0;
}

.bbcode-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.bbcode-color-picker::-webkit-color-swatch {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bbcode-color-presets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.bbcode-color-preset {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, border-color 0.2s;
}

.bbcode-color-preset:hover {
  transform: scale(1.1);
  border-color: var(--primary);
  z-index: 1;
  position: relative;
}

/* BBCode çıktı stilleri */
.comment-content pre,
.topic-description pre {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  overflow-x: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
}

.comment-content code,
.topic-description code {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: var(--primary);
}

.comment-content pre code,
.topic-description pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-primary);
}

.comment-content ul,
.comment-content ol,
.topic-description ul,
.topic-description ol {
  margin: 12px 0;
  padding-left: 24px;
}

.comment-content li,
.topic-description li {
  margin: 6px 0;
  line-height: 1.6;
}

.comment-content img,
.topic-description img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 12px 0;
  display: block;
}

/* Post resimleri - küçük görünüm ve lightbox (genel img stillerini override eder) */
.post-image-link {
  display: block !important;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 12px 0 !important;
  line-height: 0;
  width: fit-content;
}

.post-image-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.comment-content .post-image,
.topic-description .post-image,
.post-image {
  height: 150px !important;
  width: auto !important;
  max-width: 250px !important;
  border-radius: 4px;
  display: block !important;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border);
  margin: 0 !important;
}

/* Mobilde resimler daha küçük */
@media (max-width: 768px) {
  .comment-content .post-image,
  .topic-description .post-image,
  .post-image {
    height: 120px !important;
    max-width: 200px !important;
  }
}

.comment-content span[style*="color"],
.topic-description span[style*="color"] {
  display: inline;
}

.comment-content span[style*="font-size"],
.topic-description span[style*="font-size"] {
  display: inline;
}

/* BBCode Editor içi stiller */
.bbcode-editor strong {
  font-weight: 600;
}

.bbcode-editor em {
  font-style: italic;
}

.bbcode-editor u {
  text-decoration: underline;
}

.bbcode-editor s {
  text-decoration: line-through;
}

.bbcode-editor pre {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  overflow-x: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
}

.bbcode-editor code {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: var(--primary);
}

.bbcode-editor pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-primary);
}

.bbcode-editor ul,
.bbcode-editor ol {
  margin: 12px 0;
  padding-left: 24px;
}

.bbcode-editor li {
  margin: 6px 0;
  line-height: 1.6;
}

.bbcode-editor img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 12px 0;
  display: block;
}

.bbcode-editor a {
  color: var(--primary);
  text-decoration: none;
}

.bbcode-editor a:hover {
  text-decoration: underline;
}

.bbcode-editor .mention-preview {
  color: var(--primary);
  font-weight: 600;
}

.bbcode-editor .hashtag-preview {
  color: var(--primary);
  font-weight: 600;
}

.form-select {
  cursor: pointer;
}

.form-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-hover, var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--muted);
  color: var(--text-primary);
  border-color: var(--primary);
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 10px;
  }

  .logo {
    font-size: 20px;
  }

  .search-area {
    width: 100%;
  }

  .topic-item {
    flex-direction: column;
  }

  .topic-sidebar {
    text-align: left;
  }

  .container {
    padding: 10px;
    gap: 15px;
  }
  
  .topic-create-card {
    padding: 16px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Rank Badge - New Generation Style */
.rank-badge,
.profile-rank,
.author-rank,
.topic-author-rank,
.topic-post-user-rank,
.comment-rank {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  white-space: nowrap;
  line-height: 1.4;
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
  text-shadow: none !important;
}

.rank-badge::before,
.profile-rank::before,
.author-rank::before,
.topic-author-rank::before,
.topic-post-user-rank::before,
.comment-rank::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.rank-badge:hover::before,
.profile-rank:hover::before,
.author-rank:hover::before,
.topic-author-rank:hover::before,
.topic-post-user-rank:hover::before,
.comment-rank:hover::before {
  left: 100%;
}

.rank-badge:hover,
.profile-rank:hover,
.author-rank:hover,
.topic-author-rank:hover,
.topic-post-user-rank:hover,
.comment-rank:hover {
  transform: translateY(-1px);
}

/* Category Badge - Unified Style */
.category-badge,
.category-badge-mobile,
.topic-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

.category-badge:hover,
.category-badge-mobile:hover,
.topic-category-badge:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.category-badge i,
.category-badge-mobile i,
.topic-category-badge i {
  font-size: 11px;
}

.topic-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.topic-categories-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.topic-stats {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topic-stats-mobile {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Page Content Box */
.page-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}

.page-content-box h1 {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  font-weight: 600;
}

.page-content-box h2 {
  font-size: 20px;
  color: var(--text-primary);
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.page-content-box p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0 0 15px 0;
}

.page-content-box p:last-child {
  margin-bottom: 0;
}

/* Instagram Embed Styles */
.instagram-embed-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.instagram-media {
  margin: 0 auto !important;
}

/* Instagram embed responsive */
@media (max-width: 658px) {
  .instagram-media {
    min-width: 100% !important;
    width: 100% !important;
  }
}

/* Simple Lightbox - Altyazı ve siyah bar'ı gizle */
.sl-wrapper .sl-image .sl-caption,
.sl-wrapper .sl-image .sl-caption-wrapper {
  display: none !important;
}

