html,
body {
  height: 100%;
  background: #181929;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden !important;
  font-family: "Noto Sans", sans-serif !important;
}
body > .d-flex {
  min-height: 100vh;
}

.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /* Daha düşük z-index */
  background: #151522;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #2d2e4a;
  font-size: 1rem;
  font-weight: 500;
}

/* Ana kapsayıcı tam ekran yüksekliğinde */
.app-root {
  height: 100vh;
  overflow: hidden;
}

/* Sabit bar */
.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #151522;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #2d2e4a;
  font-size: 1rem;
  font-weight: 500;
}

.btn-gradient:hover,
.btn-gradient:focus {
  background: linear-gradient(90deg, #151522 0%, #ff003c 100%);
  color: #fff;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #2d2e4a !important;
  color: inherit !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

/* Chrome, Edge, Safari için */
body::-webkit-scrollbar,
.main-content-area::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
  width: 8px;
  background: #151522;
}

body::-webkit-scrollbar-thumb,
.main-content-area::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff003c 0%, #ff6a00 100%);
  border-radius: 8px;
}

body::-webkit-scrollbar-thumb:hover,
.main-content-area::-webkit-scrollbar-thumb:hover,
.sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff6a00 0%, #ff003c 100%);
}

/* Sabit üst bar */
.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #151522;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #2d2e4a;
  font-size: 1rem;
  font-weight: 500;
}

/* İçerik */
.main-content {
  flex: 1 1 auto;
  padding: 0 32px 100px 32px;
  background: #11131c;
  width: 100%;
  overflow: auto;
}

.btn-gradient {
  background: #ff003c;
  color: #fff;
  border: none;
  transition: background 0.3s, color 0.3s;
}
.btn-gradient:hover,
.btn-gradient:focus {
  background: linear-gradient(90deg, #151522 0%, #ff003c 100%);
  color: #fff;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #2d2e4a !important;
  color: inherit !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

/* Genel scrollbar tasarımı */
body,
.main-content-area,
.sidebar {
  scrollbar-width: thin; /* Firefox için ince scrollbar */
  scrollbar-color: #383646 #151522; /* Firefox için renkler */
}

/* Chrome, Edge, Safari için */
body::-webkit-scrollbar,
.main-content-area::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
  width: 8px;
  background: #151522;
}

/* Ana içerik alanı ve scrollbar */
.main-content-area {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #11131c;
  overflow: auto; /* Tüm alan birlikte kayar, scrollbar en sağda */
}

/* 3 sütunlu içerik alanı */
.content-3col {
  flex: 1 1 0%;
  min-height: 0;
  background: #11131c;
}

/* Reklam sütunları */
.ad-column {
  width: 120px;
  min-width: 120px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

/* Reklam görseli ortalama */
.ad-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  position: fixed;
}

/* Orta içerik sütunu */
.content-column {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  padding-top: 12px;
  background: #11131c;
}

/* Sabit üst bar */
.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #151522;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #2d2e4a;
  font-size: 1rem;
  font-weight: 500;
}

/* Mobilde reklam sütunlarını gizle */
@media (max-width: 991px) {
  .ad-column {
    display: none !important;
  }
}

/* Kayan Logolar */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 24px;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 16s linear infinite;
  gap: 50px; /* Boşluk olmasın */
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.marquee-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  border-radius: 25px;
  background-color: #000000;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1);
  margin-right: 0; /* Boşluk olmasın */
}

.marquee-logo:hover {
  transform: scale(1.15);
  z-index: 2;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.text-muted {
  color: #818181 !important; /* Açık gri ton */
}

/* Tolga Abi Güvenilir Casino Siteleri */
.casino-sites-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px; /* Aradaki boşluğu kaldır */
  width: 100%;
}

.casino-site-box {
  aspect-ratio: 2/3;
  border-radius: 20px;
  background: #181929;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  border: 0.5px solid transparent;
  width: 100%; /* Ekle */
  max-width: 100%; /* Ekle */
  margin: 0; /* Ekle */
  flex: none; /* Ekle */
}

.casino-site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  z-index: 1;
  position: relative;
}

@media (max-width: 480px) {
  .casino-sites-row {
    flex-wrap: wrap;
    gap: 4px;
  }
  .casino-site-box {
    max-width: 47%;
    flex-basis: 47%;
  }
}

/* Glow efekt katmanı */
.casino-site-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.mini-logo {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 150px; /* Kutunun genişliğine göre ayarlayabilirsin */
  max-width: 80%;
  height: auto;
  z-index: 3;
  transition: top 0.4s cubic-bezier(0.4, 2, 0.6, 1),
    transform 0.4s cubic-bezier(0.4, 2, 0.6, 1);
  pointer-events: none;
  display: block;
}

.casino-site-box:hover .mini-logo {
  top: 50%;
  transform: translateY(-50%) scale(1.2);
}

.casino-site-box:hover .casino-site-img {
  filter: blur(8px);
  transition: filter 0.4s cubic-bezier(0.4, 2, 0.6, 1);
}

/* Arama İnput ve Arama Çubuğu */

.casino-search-bar {
  width: 100%;
  display: flex;
  justify-content: center;
}

.casino-search-input-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.casino-search-input {
  width: 100%;
  background: #12121f;
  color: #fff;
  border: 0.5px solid #666666;
  border-radius: 24px;
  padding: 12px 20px 12px 44px;
  font-size: 1rem;
  transition: border-color 0.2s, border-width 0.2s;
  box-sizing: border-box;
}

.casino-search-input:focus {
  border-color: #ec24db;
  border-width: 1px;
  font-weight: 600;
  outline: none;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 
arama kutusu altı logolar */
.casino-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .casino-logos-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .casino-logos-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
}

.casino-logo-box {
  background: #191928;
  border: 0.5px solid #666666;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  min-height: 72px;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.casino-logo-box:hover {
  border-color: #dadada;
  background: #2d2e4a;
}

.casino-logo-img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1);
}

.casino-logo-box:hover .casino-logo-img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .sidebar-telegram-arrow,
  .sidebar-telegram-title,
  .sidebar-telegram-members {
    display: none !important;
  }
  .main-content {
    padding: 0px !important;
  }
  .casino-sites-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
  }
  .casino-site-box {
    max-width: 100%;
    flex-basis: 100%;
    aspect-ratio: 2/3;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .casino-sites-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
  .casino-site-box {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* sana özel seçilen etkinlikler */

.special-events-section {
  width: 100%;
  margin: 0 auto;
}

.special-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 8px;
}

.special-event-card {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 20%,
      transparent 60%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 40%, transparent 80%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 60%, transparent 100%),
    #23243a;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 220px;
}

.special-event-logo {
  max-width: 120px;
  max-height: 48px;
  margin-bottom: 18px;
  object-fit: contain;
  display: block;
}

.special-event-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.special-event-desc {
  color: #bfc9d9;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
}

.special-event-btn {
  width: 100%;
  background: linear-gradient(90deg, #39ff14 0%, #1de9b6 100%);
  color: #181929;
  border: none;
  border-radius: 24px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s, color 0.2s;
}
.special-event-btn:hover {
  background: linear-gradient(90deg, #1de9b6 0%, #39ff14 100%);
  color: #11131c;
}

.special-event-link {
  color: #bfc9d9;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
}

@media (max-width: 991px) {
  .special-events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .special-event-card {
    min-height: 0;
  }
}

/* En son eklenen bonuslar bölümü */

.latest-bonuses-section {
  width: 100%;
  margin: 0 auto;
}

.latest-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 8px;
}

.latest-bonus-card {
  background: #181929;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 280px;
  border: 1px solid #23243a;
  overflow: hidden;
}

.latest-bonus-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin-bottom: 12px;
  display: block;
}

.latest-bonus-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
  width: 90%;
}

.latest-bonus-desc {
  color: #bfc9d9;
  font-size: 0.98rem;
  margin-bottom: 18px;
  text-align: left;
  width: 90%;
  min-height: 38px;
}

.latest-bonus-btn {
  width: 100%;
  background: linear-gradient(90deg, #ec24db 0%, #6e0065 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px;
  margin: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
}
.latest-bonus-btn:hover {
  background: linear-gradient(90deg, #6e0065 0%, #ec24db 100%);
  color: #fff;
}

@media (max-width: 991px) {
  .latest-bonuses-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .latest-bonus-card {
    min-height: 0;
  }
}

/* ETelegram Box */
@keyframes telegram-border-blink {
  0% {
    border-color: #ec24db;
    box-shadow: 0 2px 8px 0 rgba(236, 134, 231, 0.08);
  }
  50% {
    border-color: #ec24db;
    box-shadow: 0 0 18px 0 #db88d4;
  }
  100% {
    border-color: #ec24db;
    box-shadow: 0 2px 8px 0 rgba(34, 158, 217, 0.08);
  }
}

@media (min-width: 992px) {
  .dropdown,
  .nav-item {
    background: #23243a;
    border-radius: 20px;
    margin: 3px;
    padding: 3px;
    box-shadow: 0 4px 16px 0 rgba(30, 30, 50, 0.18),
      0 2px 4px 0 rgba(0, 0, 0, 0.08);
    border: 2px solid #181929;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s,
      transform 0.1s;
    cursor: pointer;
    position: relative;
  }
  .dropdown:active,
  .nav-item:active {
    background: #181929;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12) inset;
    border-color: #ec24db;
    transform: translateY(2px) scale(0.98);
  }
  .dropdown:hover,
  .nav-item:hover {
    background: #1c1c2b;
    box-shadow: 0 2px 8px rgba(34, 34, 64, 0.12);
  }
}

.sidebar-telegram-box {
  background: #ff28d7;
  border-radius: 25px;
  padding: 2px 2px 2px 2px;
  box-shadow: 0 2px 6px 0 rgba(34, 158, 217, 0.08);
  border: 1px solid #fff;
  transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
  animation: telegram-border-blink 1.6s infinite;
}

.sidebar-telegram-box:hover {
  background: #ff00d0;
  animation: none;
  border: 0.8px solid #fff;
}
.sidebar-telegram-inner {
  width: 100%;
}
.sidebar-telegram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #20223a;
  border-radius: 50%;
  color: #ff28d7;
}
.sidebar-telegram-title {
  font-size: 0.9rem;
  color: #fff;
  margin-left: 5px;
}
.sidebar-telegram-members {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
  margin-top: 2px;
  margin-left: 5px;
}
.sidebar-telegram-arrow {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.sidebar.collapsed .only-sidebar-expanded {
  display: none !important;
}

.modal-bonus-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Site Loader */
#site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #181929;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.loader-logo {
  width: 90px;
  height: 90px;
  animation: loader-fade 0.7s linear infinite;
}
@keyframes loader-fade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.2;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
#site-loader.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  .sidebar.collapsed .menu-text,
  .sidebar.collapsed .logo-text,
  .sidebar.collapsed .acilirMenu,
  .sidebar.collapsed .only-sidebar-expanded {
    display: none !important;
  }
  .sidebar {
    width: 56px !important;
    align-items: center !important;
  }
  .sidebar.expanded {
    width: 80vw !important;
    min-width: 220px;
    max-width: 100vw;
    align-items: flex-start !important;
  }
  .sidebar.collapsed {
    width: 56px !important;
    align-items: center !important;
  }
  .sidebar.collapsed .nav-link {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
  }
  .sidebar.collapsed .nav-link i {
    margin: 0 !important;
  }
  .toggle-btn {
    left: 38px !important;
  }
}

/* Login Container Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 5px;
}

.login-box {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d2e4a 100%);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.login-subtitle {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.5;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form .form-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.login-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.login-input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #6c5ce7 !important;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2) !important;
  outline: none !important;
}

.login-input::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
}

/* Otomatik şifre doldurma stillerini geçersiz kıl */
.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05) inset !important;
  -webkit-text-fill-color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #fff;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0;
}

.form-check-input:checked {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
}

.form-check-label {
  color: #a0a0a0;
  font-size: 14px;
  margin: 0;
}

.forgot-password {
  color: #6c5ce7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #5a4fcf;
}

.btn-login {
  width: 100%;
  background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-login:hover {
  background: linear-gradient(135deg, #5a4fcf 0%, #4a40c7 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  background: #1e1e2e;
  color: #666;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.btn-google {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.google-icon {
  width: 18px;
  height: 18px;
}

.register-link {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
}

.register-link span {
  color: #a0a0a0;
}

.register-btn {
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-btn:hover {
  color: #5a4fcf;
}

.policy-text {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.policy-text a {
  color: #6c5ce7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-text a:hover {
  color: #5a4fcf;
}

/* Profil Resmi Yükleme Alanı */
.profile-image-upload {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #23243a !important;
  border: 2px dashed #666 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.profile-image-upload:hover {
  border-color: #6c5ce7 !important;
  background: #2d2e4a !important;
}

.profile-image-upload input[type="file"] {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
}

.profile-image-upload .upload-icon {
  color: #666 !important;
  font-size: 24px !important;
  transition: color 0.3s ease !important;
}

.profile-image-upload:hover .upload-icon {
  color: #6c5ce7 !important;
}

.profile-image-preview {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 5px solid #fff !important;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3) !important;
}

.profile-image-container {
  position: relative !important;
  display: inline-block !important;
}

.profile-image-container .change-photo-btn {
  position: absolute !important;
  bottom: 5px !important;
  right: 5px !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.profile-image-container .change-photo-btn:hover {
  background: linear-gradient(135deg, #5a4fcf 0%, #4a40c7 100%) !important;
  transform: scale(1.1) !important;
}

.profile-image-container .delete-photo-btn {
  position: absolute !important;
  top: 5px !important;
  right: 5px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 12px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.table-dark {
  --bs-table-bg: #23243a;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: #1b1b35;
}

.profile-image-container .delete-photo-btn:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
  transform: scale(1.1) !important;
}
.card {
  border-color: #2d2e4a !important;
}

/* Profil Avatar Gizleme */
.profile-image-container
  .user-profile-avatar
  .profile-image-preview
  + #profileAvatar {
  display: none !important;
}

.profile-image-container
  .user-profile-avatar:has(.profile-image-preview)
  #profileAvatar {
  display: none !important;
}

.profile-image-container .user-profile-avatar #profileAvatar.hidden {
  display: none !important;
}

.bg-primary {
  background: linear-gradient(90deg, #6e0065 0%, #ec24db 100%) !important;
}

.btn-primary {
  background: linear-gradient(90deg, #6e0065 0%, #ec24db 100%);
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: background 0.3s, color 0.3s !important;
}

/* Telefon Input Stili - Profil Sayfası İçin */
.phone-input-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.country-select {
  background: #323349 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: none !important;
  color: #fff !important;
  padding: 8px !important;
  font-size: 14px !important;
  min-width: 80px !important;
  border-radius: 8px 0 0 8px !important;
}

.country-select:focus {
  box-shadow: none !important;
  outline: none !important;
}

.phone-number-input {
  flex: 1 !important;
  background: #323349 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: none !important;
  color: #fff !important;
  padding: 0px 15px !important;
  font-size: 14px !important;
  border-radius: 0 8px 8px 0 !important;
}

.phone-number-input:focus {
  box-shadow: none !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.phone-number-input::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
}

.phone-input-group:focus-within {
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2) !important;
}

.bg-dark {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d2e4a 100%) !important;
}

.btn-secondary {
  background: linear-gradient(90deg, #ff003c 0%, #ff6a00 100%);
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: background 0.3s, color 0.3s !important;
}

/* Genel Form Input'ları için Otomatik Doldurma Stillerini Geçersiz Kıl */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active,
.bg-dark:-webkit-autofill,
.bg-dark:-webkit-autofill:hover,
.bg-dark:-webkit-autofill:focus,
.bg-dark:-webkit-autofill:active,
.phone-number-input:-webkit-autofill,
.phone-number-input:-webkit-autofill:hover,
.phone-number-input:-webkit-autofill:focus,
.phone-number-input:-webkit-autofill:active,
.country-select:-webkit-autofill,
.country-select:-webkit-autofill:hover,
.country-select:-webkit-autofill:focus,
.country-select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #323349 inset !important;
  -webkit-text-fill-color: #fff !important;
  background: #323349 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Dark theme input'lar için özel autocomplete stili */
input[type="text"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
input[type="password"]:-webkit-autofill,
input[type="tel"]:-webkit-autofill,
input[type="date"]:-webkit-autofill,
input[type="text"]:hover:-webkit-autofill,
input[type="email"]:hover:-webkit-autofill,
input[type="password"]:hover:-webkit-autofill,
input[type="tel"]:hover:-webkit-autofill,
input[type="date"]:hover:-webkit-autofill,
input[type="text"]:focus:-webkit-autofill,
input[type="email"]:focus:-webkit-autofill,
input[type="password"]:focus:-webkit-autofill,
input[type="tel"]:focus:-webkit-autofill,
input[type="date"]:focus:-webkit-autofill,
input[type="text"]:active:-webkit-autofill,
input[type="email"]:active:-webkit-autofill,
input[type="password"]:active:-webkit-autofill,
input[type="tel"]:active:-webkit-autofill,
input[type="date"]:active:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05) inset !important;
  -webkit-text-fill-color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Select ve Option Elementleri için Dark Theme Stilleri */
select,
.form-select,
.country-select,
.form-control[type="select"] {
  background: #323349 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

select option,
.form-select option,
.country-select option,
.form-control option {
  background: #323349 !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 12px !important;
}

select option:hover,
.form-select option:hover,
.country-select option:hover,
.form-control option:hover {
  background: #6c5ce7 !important;
  color: #fff !important;
}

select option:checked,
.form-select option:checked,
.country-select option:checked,
.form-control option:checked {
  background: #6c5ce7 !important;
  color: #fff !important;
}

select option:focus,
.form-select option:focus,
.country-select option:focus,
.form-control option:focus {
  background: #6c5ce7 !important;
  color: #fff !important;
}

/* Select dropdown için Firefox özel stilleri */
select {
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Select dropdown için WebKit özel stilleri */
select::-webkit-scrollbar {
  width: 8px !important;
  background: #323349 !important;
}

select::-webkit-scrollbar-thumb {
  background: #6c5ce7 !important;
  border-radius: 4px !important;
}

select::-webkit-scrollbar-track {
  background: #323349 !important;
}

/* Cinsiyet selecti için özel stiller */
#cinsiyet,
#cinsiyet option {
  background: #323349 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

#cinsiyet option:hover,
#cinsiyet option:checked,
#cinsiyet option:focus {
  background: #6c5ce7 !important;
  color: #fff !important;
}

/* Genel form elementleri için dark theme */
.bg-dark.text-white.border-secondary {
  background: #323349 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.bg-dark.text-white.border-secondary option {
  background: #323349 !important;
  color: #fff !important;
}

.bg-dark.text-white.border-secondary option:hover,
.bg-dark.text-white.border-secondary option:checked,
.bg-dark.text-white.border-secondary option:focus {
  background: #6c5ce7 !important;
  color: #fff !important;
}

/* Genel Placeholder Stilleri - Tüm Form Elementleri İçin */
input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.bg-dark::placeholder,
.border-secondary::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
  font-weight: 400 !important;
}

input:focus::placeholder,
textarea:focus::placeholder,
.form-control:focus::placeholder,
.bg-dark:focus::placeholder,
.border-secondary:focus::placeholder {
  color: #b0b0b0 !important;
  opacity: 0.6 !important;
}

/* Profil sayfası form input'ları için özel placeholder stili */
#email::placeholder,
#ad_soyad::placeholder,
#telefon::placeholder,
#dogum_tarihi::placeholder,
#mevcut_sifre::placeholder,
#yeni_sifre::placeholder,
#yeni_sifre_tekrar::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
}

/* Kayıt sayfası input'ları için özel placeholder stili */
input[name="kullanici_adi"]::placeholder,
input[name="email"]::placeholder,
input[name="sifre"]::placeholder,
input[name="sifre_tekrar"]::placeholder,
input[name="ad_soyad"]::placeholder,
input[name="telefon"]::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
}

/* Dark theme input'lar için placeholder */
.text-white::placeholder,
.text-white:focus::placeholder {
  color: #a0a0a0 !important;
  opacity: 0.8 !important;
}

/* Custom Alert Stilleri */
.custom-alert {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 999999 !important;
  min-width: 300px !important;
  max-width: 500px !important;
  border-radius: 12px !important;
  color: white !important;
  font-weight: 500 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: translateX(0) !important;
  transition: all 0.4s ease !important;
  pointer-events: auto !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.custom-alert * {
  color: inherit !important;
}

.alert-success,
.custom-alert.alert-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border: 1px solid #059669 !important;
}

.alert-danger,
.custom-alert.alert-danger,
.alert-error,
.custom-alert.alert-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: 1px solid #dc2626 !important;
}

.alert-warning,
.custom-alert.alert-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  border: 1px solid #d97706 !important;
}

.alert-info,
.custom-alert.alert-info {
  background: linear-gradient(135deg, #6c5ce7 0%, #7e76be 100%) !important;
  border: 1px solid #7e76be !important;
}

/* Force show animation */
@keyframes forceShow {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.custom-alert.show {
  animation: forceShow 0.4s ease forwards !important;
}

/* Sayfa içi alert divlerini gizle - sadece modern custom alert kullanılacak */
#alertMessage {
  display: none !important;
  visibility: hidden !important;
}

.top-bar nav.navbar,
.top-bar .navbar-nav,
.top-bar .navbar-collapse {
  margin: 0 !important;
  padding: 0 !important;
}