/* Custom Styles */

/* Genel */
:root {
  --card-header-bg: #2D2D2D;
  --card-header-border: #2D2D2D;
  --card-header-text: #FFFFFF;
  --card-header-badge-bg: rgba(255,255,255,0.2);
  --card-header-badge-text: #FFFFFF;
  --primary: #2D2D2D;
}

body {
  background: #F5F7FA;
}

/* Primary renk override */
.btn-primary {
  background-color: #2D2D2D !important;
  border-color: #2D2D2D !important;
}

.btn-primary:hover {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}

.btn-outline-primary {
  color: #2D2D2D !important;
  border-color: #2D2D2D !important;
}

.btn-outline-primary:hover {
  background-color: #2D2D2D !important;
  border-color: #2D2D2D !important;
  color: #fff !important;
}

/* Sidebar aktif menü */
.sidebar-item.selected > .sidebar-link {
  background-color: #2D2D2D !important;
  color: #fff !important;
}

.sidebar-item.selected > .sidebar-link i {
  color: #fff !important;
}

/* Sidebar hover */
.sidebar-link:hover {
  background-color: #F0F0F0 !important;
  color: #2D2D2D !important;
}

.sidebar-link:hover i {
  color: #2D2D2D !important;
}

/* Sidebar focus/active state */
.sidebar-link:focus,
.sidebar-link:active,
.sidebar-link.active {
  background-color: #2D2D2D !important;
  color: #fff !important;
}

.sidebar-link:focus i,
.sidebar-link:active i,
.sidebar-link.active i {
  color: #fff !important;
}

/* Badge primary */
.bg-primary-subtle {
  background-color: #F0F0F0 !important;
}

.text-primary {
  color: #2D2D2D !important;
}

.bg-primary {
  background-color: #2D2D2D !important;
}

/* Form check/switch primary */
.form-check-input:checked {
  background-color: #2D2D2D;
  border-color: #2D2D2D;
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #2D2D2D;
  border-color: #2D2D2D;
}

/* Bootstrap primary renk tam override */
:root {
  --bs-primary: #2D2D2D;
  --bs-primary-rgb: 45, 45, 45;
  --bs-link-color: #2D2D2D;
  --bs-link-color-rgb: 45, 45, 45;
  --bs-link-hover-color: #1a1a1a;
}

a:hover {
  color: #2D2D2D;
}

/* Nav pills */
.nav-pills {
  --bs-nav-pills-link-active-bg: #2D2D2D;
}

/* Pagination */
.pagination {
  --bs-pagination-active-bg: #2D2D2D;
  --bs-pagination-active-border-color: #2D2D2D;
}

/* Progress bar */
.progress {
  --bs-progress-bar-bg: #2D2D2D;
}

/* List group */
.list-group {
  --bs-list-group-active-bg: #2D2D2D;
  --bs-list-group-active-border-color: #2D2D2D;
}

/* Navbar hover */
.navbar {
  --bs-navbar-hover-color: #2D2D2D;
}

/* Focus ring */
.form-control:focus,
.form-select:focus {
  border-color: #2D2D2D;
  box-shadow: 0 0 0 0.25rem rgba(45, 45, 45, 0.15);
}

/* Select2 focus */
.select2-container--bootstrap-5 .select2-selection--single:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #2D2D2D;
  box-shadow: 0 0 0 0.25rem rgba(45, 45, 45, 0.15);
}

/* Select2 dropdown seçili/hover madde */
.select2-container--bootstrap-5 .select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #2D2D2D !important;
  color: #fff !important;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
  background-color: #F0F0F0 !important;
  color: #2A3547 !important;
}

/* Select2 multiple seçili tag */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
  background-color: #2D2D2D !important;
  border-color: #2D2D2D !important;
  color: #fff !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
}

/* Logo boyutları */
.brand-logo .logo-img img {
  width: 200px;
  height: 55px;
  object-fit: contain;
}

/* Mobil header logo */
.app-header .navbar img.nav-logo {
  width: 160px;
  height: 44px;
  object-fit: contain;
}

/* Topstrip yok - offset düzeltmeleri */
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .app-header {
  top: 0 !important;
}

.body-wrapper {
  margin-top: 0 !important;
}

/* Sidebar scroll yüksekliği - topstrip olmadığı için tam ekran */
.left-sidebar .scroll-sidebar {
  height: calc(100vh - 80px) !important;
  overflow-y: auto;
}

/* Sidebar beyaz alan kesilme sorunu — fixed + top:0 olduğu için height:100vh şart */
#main-wrapper[data-layout="vertical"][data-sidebar-position="fixed"] .left-sidebar {
  top: 0 !important;
  height: 100vh !important;
  background-color: #fff;
}

/* content-fade-in sadece body-wrapper'a uygulanır, sidebar etkilenmez */
.left-sidebar .content-fade-in {
  animation: none;
}

/* Card stilleri */
.card {
  border: 1px solid #E5ECF0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.card .card-header {
  background: var(--card-header-bg);
  border-bottom: 1px solid var(--card-header-border);
  border-radius: 12px 12px 0 0;
  padding: 14px 24px;
}

.card .card-header .card-title {
  color: var(--card-header-text);
}

.card .card-header .badge {
  background: var(--card-header-badge-bg) !important;
  color: var(--card-header-badge-text) !important;
}

/* Card header butonları - koyu arka planda belirgin olsun */
.card .card-header .btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 500;
  transition: all 0.2s ease;
}

.card .card-header .btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.card .card-header .btn-primary,
.card .card-header .btn-sm.btn-primary {
  background: #fff;
  border: 1px solid #fff;
  color: #2D2D2D;
  font-weight: 600;
}

.card .card-header .btn-primary:hover,
.card .card-header .btn-sm.btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #1a1a1a;
}

.card .card-header .destek-filter-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.card .card-header .destek-filter-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.card .card-header .destek-filter-btn.active {
  background: #fff;
  border-color: #fff;
  color: #2D2D2D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card .card-body {
  padding: 30px 30px 15px 30px;
}

/* Anasayfa Platform Kartlari - Elegant Minimalist Glow */
.platform-kart {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 30px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  color: #2D2D2D !important;
}

.platform-kart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-color, #5D87FF);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.platform-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.platform-kart:hover::before {
  opacity: 1;
  height: 6px;
}

.platform-kart .m-renk-koyu, .platform-kart span {
  color: #1a1e27 !important;
  text-shadow: none;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.platform-kart-ikon {
  background: rgba(0, 0, 0, 0.03) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-kart:hover .platform-kart-ikon {
  transform: scale(1.15) rotate(5deg);
}

.platform-kart-ikon i {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Notification dot */
.notification {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 12px;
  right: 6px;
}

/* Responsive */
@media (max-width: 767px) {
  .platform-kart {
    padding: 14px 8px;
  }

  .platform-kart-ikon {
    width: 40px;
    height: 40px;
  }

  .platform-kart-ikon i {
    font-size: 20px;
  }

  .hizmet-kart {
    padding: 16px;
  }
}

/* Bize Ulaşın kartları */
.contact-card {
  background: #F5F7FA;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Gelişmiş Ayarlar card-body */
.advanced-settings-body {
  padding: 30px 30px 25px 30px !important;
}

/* ===== Card Header İçindeki Form Elemanları ===== */
.card .card-header .input-group-text {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.card .card-header .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.card .card-header .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.card .card-header .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

/* ===== Fiyat Listesi & Populer Hizmetler ===== */
.hizmet-kart {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--card-color, #5D87FF);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.hizmet-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  border-left-color: var(--card-color, #5D87FF);
  z-index: 2;
}

.hizmet-kart .m-renk-koyu {
  color: #1a1e27 !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: none;
}

.hizmet-kart .m-renk-soluk {
  color: #5a6a85 !important;
}

.hizmet-kart-fiyat {
  font-size: 22px;
  font-weight: 900;
  color: #2a3547; /* Elegant dark fallback */
  margin-bottom: 2px;
  text-shadow: none;
}

.hizmet-kart-baslik {
  line-height: 1.4;
  word-break: break-word;
}

.hizmet-kart-aciklama {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.hizmet-kart-fiyat {
  font-size: 18px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 2px;
}

.price-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #E5ECF0;
  background: #fff;
  color: #5A6A85;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.price-cat-btn:hover {
  border-color: #2D2D2D;
  color: #2D2D2D;
  background: #F5F5F5;
}

.price-cat-btn.active {
  background: #2D2D2D;
  color: #fff;
  border-color: #2D2D2D;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.25);
}

.price-cat-btn.active i {
  color: #fff !important;
}

/* Detay Modal */
#detailModal .modal-content {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== Hesabım Sayfası ===== */
.account-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #E5ECF0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.account-nav-btn:hover {
  border-color: #2D2D2D;
  background: #F5F5F5;
}

.account-nav-btn.active {
  border-color: #2D2D2D;
  background: #F5F5F5;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.1);
}

.account-nav-btn.active .ti-chevron-right {
  color: #2D2D2D !important;
}

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

.account-nav-icon i {
  font-size: 20px;
}

/* Nav ikon arka planları */
.acc-icon-personal { background: #E8EFF9; }
.acc-icon-personal i { color: #2D2D2D; }
.acc-icon-billing { background: #FFF3E0; }
.acc-icon-billing i { color: #FFAE1F; }
.acc-icon-password { background: #FCE4EC; }
.acc-icon-password i { color: #E91E63; }
.acc-icon-verify { background: #E6F4EA; }
.acc-icon-verify i { color: #13DEB9; }

/* Profil rozet */
.acc-profil-img { border: 2px solid #E5ECF0; }
.acc-dogrulama-rozet {
  width: 16px;
  height: 16px;
  background: #13DEB9;
  border: 2px solid #fff;
}
.acc-dogrulama-ikon { color: #fff; font-size: 9px; }

/* Doğrulama ikon dairesi */
.acc-verify-ikon-daire {
  width: 72px;
  height: 72px;
  background: #E6F4EA;
}
.acc-verify-ikon { font-size: 32px; color: #13DEB9; }

/* Şifre gereksinim ikonları */
.acc-req-ikon-pasif { color: #E5ECF0; }

/* OTP inputlar */
.otp-input { width: 48px; height: 48px; }

/* ===== Sayfa Loader ===== */
.page-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5F7FA;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.page-loader .loader-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #E5ECF0;
  border-top-color: #2D2D2D;
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
}

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

/* İçerik fade-in animasyonu */
.content-fade-in {
  animation: contentFadeIn 0.4s ease forwards;
}

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

/* ===== Destek Merkezi ===== */
.destek-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #E5ECF0;
  background: #fff;
  color: #5A6A85;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.destek-filter-btn:hover {
  border-color: #2D2D2D;
  color: #2D2D2D;
  background: #F5F5F5;
}

.destek-filter-btn.active {
  background: #2D2D2D;
  color: #fff;
  border-color: #2D2D2D;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.25);
}

.destek-filter-btn.active i {
  color: #fff !important;
}

.destek-ticket-card {
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.destek-ticket-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.destek-ticket-card .card-body {
  padding: 20px 24px;
}

/* Chat balonları */
.destek-chat-bubble {
  max-width: 85%;
  padding: 16px 20px;
  border-radius: 16px;
}

.destek-chat-user {
  background: #F0F4FF;
  border: 1px solid #D8E2F4;
  border-bottom-right-radius: 4px;
}

.destek-chat-support {
  background: #FFFFFF;
  border: 1px solid #E5ECF0;
  border-bottom-left-radius: 4px;
}

@media (max-width: 767px) {
  .destek-chat-bubble {
    max-width: 95%;
  }
}

/* Chat alanı background */
.destek-chat-area {
  background: #EDF1F5;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #D9E0E8;
}

/* ===== Bakiye Yükle ===== */
.bakiye-amount-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid #E5ECF0;
  background: #fff;
  color: #2A3547;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bakiye-amount-btn:hover {
  border-color: #2D2D2D;
  background: #F5F5F5;
}

.bakiye-amount-btn.active {
  background: #2D2D2D;
  color: #fff;
  border-color: #2D2D2D;
  box-shadow: 0 4px 12px rgba(45, 45, 45, 0.2);
}

.bakiye-method-card {
  padding: 20px 24px;
  border-radius: 12px;
  border: 2px solid #E5ECF0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bakiye-method-card:hover {
  border-color: #B0B0B0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bakiye-method-card.active {
  border-color: #2D2D2D;
  box-shadow: 0 4px 16px rgba(45, 45, 45, 0.12);
}

/* ===== Görevlerim ===== */
.gorev-card {
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  cursor: default;
}

.gorev-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.gorev-card .card-body {
  padding: 16px 24px;
}

/* ===== Container Full-Width Override ===== */
.body-wrapper .container-fluid,
.body-wrapper .container-sm,
.body-wrapper .container-md,
.body-wrapper .container-lg,
.body-wrapper .container-xl,
.body-wrapper .container-xxl,
.app-header .container-fluid,
.app-header .container-sm,
.app-header .container-md,
.app-header .container-lg,
.app-header .container-xl,
.app-header .container-xxl {
  max-width: 100%;
}

/* ===== Mobil Responsive Düzeltmeleri ===== */

/* Genel overflow önleme */
.container-fluid {
  overflow-x: hidden;
}

.card-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  /* Container padding */
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Filtre/kategori butonları - mobilde kompakt */
  .price-cat-btn,
  .destek-filter-btn {
    padding: 6px 10px;
    font-size: 12px;
    gap: 4px;
    border-radius: 16px;
  }

  .price-cat-btn i,
  .destek-filter-btn i {
    font-size: 13px;
  }

  /* Destek kart içerikleri taşma önleme */
  .destek-ticket-card .card-body {
    padding: 14px 16px;
  }

  .destek-ticket-card .d-flex.flex-md-row {
    flex-direction: column !important;
  }

  /* Görev kartları mobil */
  .gorev-card .card-body {
    padding: 14px 16px;
  }



  /* Bakiye tutar butonları */
  .bakiye-amount-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Chat alanı */
  .destek-chat-area {
    padding: 16px;
  }

  /* İstatistik kartları metin */
  .col-6 .fs-5 {
    font-size: 16px !important;
  }

  /* Genel kart padding */
  .card .card-body {
    padding: 20px 16px 12px 16px;
  }

  .card .card-header {
    padding: 12px 16px;
  }

  /* Filtre butonları yatay scroll strip */
  #categoryFilters,
  #statusFilters {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  #categoryFilters::-webkit-scrollbar,
  #statusFilters::-webkit-scrollbar {
    display: none;
  }

  /* Arama kutusu full width */
  .search-wrapper {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  /* Görev progress kolonu mobilde tam genişlik */
  .gorev-progress-col {
    min-width: 100% !important;
    width: 100%;
  }
}

/* ===== Step Loader & Animasyonlar ===== */
.step-loader {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 247, 250, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.step-loader.active {
  display: flex;
}

.step-loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #E5ECF0;
  border-top-color: #2D2D2D;
  border-radius: 50%;
  animation: stepSpin 0.7s linear infinite;
}

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

.step-animate-in {
  animation: stepFadeSlideIn 0.4s ease forwards;
}

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

/* ===== Musteri Paneli Yardimci Siniflar ===== */
.m-renk-soluk { color: #5A6A85; }
.m-renk-koyu { color: #2A3547; }
.m-renk-marka { color: #2D2D2D; }
.m-renk-turuncu { color: #FFAE1F; }
.m-renk-mavi { color: #539BFF; }
.m-renk-yesil { color: #13DEB9; }
.m-renk-kirmizi { color: #FA896B; }

.m-bg-acik { background: #F5F7FA; }

.m-ikon-kutu {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-ikon-kutu-buyuk {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar kullanıcı bilgisi */
.sidebar-kullanici-kutu {
  background: #F5F7FA;
}

/* Duyuru alert tip sınıfları */
.duyuru-alert-info { }
.duyuru-alert-warning { }
.duyuru-alert-danger { }
.duyuru-alert-success { }

/* Mesaj balonları (destek detay) */
.mesaj-balon-ben {
  max-width: 75%;
  background: #2D2D2D;
  color: #fff;
}

.mesaj-balon-destek {
  max-width: 75%;
  background: #F5F7FA;
  color: #2A3547;
}

.mesaj-zaman {
  opacity: 0.7;
}

/* Banka hesap bilgi satırı */
.banka-bilgi-satir {
  background: #F5F7FA;
}

/* Uyarı kutuları */
.uyari-kutu-turuncu {
  background: #FFF3E0;
}

.uyari-kutu-yesil {
  background: #E6F4EA;
}

.uyari-kutu-mavi {
  background: #E8F5E9;
}

/* Bakiye yükle yeşil kart */
.bakiye-yukle-banner {
  background: #13DEB9;
}

/* İstatistik ikon kutuları */
.stat-ikon-mavi {
  background: #E8EFF9;
}

.stat-ikon-yesil {
  background: #E6F4EA;
}

.stat-ikon-turuncu {
  background: #FFF3E0;
}

.stat-ikon-kirmizi {
  background: #FDEDE8;
}

/* Anasayfa - platform service icon boyut */
.service-icon-box {
  width: 64px;
  height: 64px;
}

/* Anasayfa - bakiye banner açıklama opaklığı */
.bakiye-banner-aciklama {
  opacity: 0.85;
}

/* Anasayfa - boş görev ikonu */
.bos-ikon-soluk {
  color: #E5ECF0;
}

/* İletişim ikonları */
.iletisim-ikon {
  font-size: 32px;
}
.iletisim-ikon-whatsapp { color: #25D366; }
.iletisim-ikon-telegram { color: #0088CC; }
.iletisim-ikon-eposta { color: #FA896B; }

/* Kod bloğu (genel kullanım) */
.kod-blogu {
  background: #2D2D2D;
  color: #E5ECF0;
  overflow-x: auto;
}

/* HR ayırıcı */
.hr-acik {
  border-color: #E5ECF0;
}

/* Bakiye yükle banner */
.bakiye-yukle-banner {
  background: linear-gradient(135deg, #13DEB9, #0bb89a);
  border: none;
}

/* Duyuru slider - Neo-Cyberpunk Elegant Light */
.duyuru-slider-kart {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  height: 100%;
}
.duyuru-slider-kart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: #5D87FF;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.duyuru-slider-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.duyuru-slider-kart:hover::before {
  opacity: 1;
}
.duyuru-slider-kart .m-renk-koyu {
  color: #1a1e27 !important;
  font-weight: 800;
  text-shadow: none;
  letter-spacing: 0.5px;
}
.duyuru-slider-kart .m-renk-soluk {
  color: #5a6a85 !important;
}

.duyuru-slider-gorsel {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.duyuru-slider-gorsel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
}
.duyuru-slider-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.duyuru-slider-kart:hover .duyuru-slider-gorsel img {
  transform: scale(1.05);
}
.duyuru-slider-icerik {
  padding: 16px;
}
.duyuru-slider-ikon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.duyuru-slider-aciklama {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.duyuru-carousel .owl-nav {
  position: absolute;
  top: -40px;
  right: 0;
}
.duyuru-carousel .owl-dots {
  text-align: center;
  margin-top: 12px;
}

/* Bakiye yenile butonu */
.bakiye-yenile-btn {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
}
.bakiye-yenile-btn:hover {
  opacity: 1;
}
.bakiye-yenile-btn.bakiye-yukleniyor {
  opacity: 1;
  animation: bakiye-don 0.6s linear infinite;
}
@keyframes bakiye-don {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
