/**
 * theme-ref-full.css â€” Referans tema (tam): theme-green yapÄ±sÄ± + lacivert/kÄ±rmÄ±zÄ± palet
 * Son blok: theme-ref-top (Ã¼st alan / slider ince ayar)
 */
/**
 * YeÅŸil tema - rgb(197, 32, 33) aÄŸÄ±rlÄ±klÄ±, cÄ±rtlak yeÅŸil
 * Arka plan: #0a162b (Benimbahis ref)
 */
:root {
  --main-color: rgb(197, 32, 33);
  --main-color-hex: #c52021;
  --main-color-rgb: 197, 32, 33;
  --main-color-dark: #9e1a1b;
  --bs-orange: rgb(197, 32, 33);
  --bs-warning: rgb(197, 32, 33);
  --bg-body: #0a162b;
  --bg-card: #06244f;
  --bg-card-alt: #051a38;
}

html, body {
  background-color: #0a162b !important;
}

/* ========== BUTONLAR ========== */
/* .mobile-register yalnizca misafir headerda; stiller asagidaki guest blokta */
.btn-primary, button.btn-primary {
  background: linear-gradient(to right, #4a1516 0%, #c52021 30%, #c52021 70%, #4a1516 100%) !important;
  background-size: 200% auto !important;
  border-color: #c52021 !important;
  color: #fff !important;
  transition: background-position 0.4s ease;
}
.btn-primary:hover, button.btn-primary:hover {
  background-position: right center !important;
  color: #fff !important;
  opacity: 1;
  box-shadow: 0 0 20px rgba(197, 32, 33, 0.4);
}
.btn-primary:active, button.btn-primary:active {
  background-position: left center !important;
  color: #fff !important;
}
.btn-primary.btn-outline {
  border-color: #c52021 !important;
  color: #c52021 !important;
  background: rgba(197, 32, 33, 0.15) !important;
}
.btn-secondary:not(.mobile-login) {
  color: #c52021 !important;
  border-color: rgba(197, 32, 33, 0.4) !important;
}
.btn-secondary:not(.mobile-login):hover {
  color: #e54547 !important;
  background: rgba(197, 32, 33, 0.1) !important;
  border-color: #c52021 !important;
}

/* ========== YENÄ° PROFESYONEL MENÃœ - topmenu-grid ========== */
.topmenu-inner {
  background: #06244f;
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 12px;
  padding: 16px;
}
.topmenu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.topmenu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #c8ccd0;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
  min-height: 72px;
}
.topmenu-item:hover {
  background: rgba(197, 32, 33, 0.12);
  color: #c52021;
}
.topmenu-item.active {
  background: rgba(197, 32, 33, 0.18);
  color: #c52021;
  border: 1px solid rgba(197, 32, 33, 0.4);
}
.topmenu-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topmenu-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.topmenu-label {
  text-align: center;
  line-height: 1.2;
}

/* ========== DROPDOWN MENÃœ ========== */
.dropdown-menu {
  background-color: #1e3239 !important;
  border: 1px solid rgba(197, 32, 33, 0.2) !important;
}
.dropdown-menu li a:hover,
.dropdown-item:hover {
  color: #c52021 !important;
  background: rgba(197, 32, 33, 0.1) !important;
}
.dropdown-item.active {
  color: #c52021 !important;
  background: rgba(197, 32, 33, 0.15) !important;
}

/* ========== MOBÄ°L NAVÄ°GASYON - PROFESYONEL TASARIM ========== */
.mobile-navigation-body,
.mobile-navigation1-body {
  background: linear-gradient(180deg, #051a38 0%, #06244f 100%) !important;
  border-right: none !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

/* Mobil MenÃ¼ Header */
.mobile-navigation-header {
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #0f1c22 0%, #051a38 100%);
  border-bottom: 1px solid rgba(197, 32, 33, 0.15);
}

/* Header Top - Logo ve Kapatma */
.mobile-nav-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.08) 0%, transparent 100%);
}

.mobile-nav-logo {
  flex: 1;
}

.mobile-nav-logo-link {
  display: block;
  text-decoration: none;
}

.mobile-nav-logo-img {
  height: 45px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.mobile-nav-logo-link:hover .mobile-nav-logo-img {
  transform: scale(1.02);
}

/* Kapatma Butonu */
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c52021;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-nav-close:hover {
  background: rgba(197, 32, 33, 0.15);
  border-color: rgba(197, 32, 33, 0.4);
  transform: rotate(90deg);
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}

/* KullanÄ±cÄ± KartÄ± */
.mobile-nav-user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1) 0%, rgba(197, 32, 33, 0.02) 100%);
  border-bottom: 1px solid rgba(197, 32, 33, 0.1);
}

.mobile-nav-user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.3);
  flex-shrink: 0;
}

.mobile-nav-user-info {
  flex: 1;
  min-width: 0;
}

.mobile-nav-username {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav-balance {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #c52021;
}

.mobile-nav-currency {
  font-size: 14px;
  opacity: 0.8;
}

/* GiriÅŸ/KayÄ±t ButonlarÄ± */
.mobile-nav-auth-buttons {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid rgba(197, 32, 33, 0.1);
}

.mobile-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.mobile-nav-btn svg {
  flex-shrink: 0;
}

/* Header Giriş ile aynı: mavi dikey gradient */
.mobile-nav-btn-login {
  background: linear-gradient(to bottom, #2b589a, #1a3a6c);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.mobile-nav-btn-login:hover {
  background: linear-gradient(to bottom, #335fa9, #1f4278);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.mobile-nav-btn-register {
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.3);
}

.mobile-nav-btn-register:hover {
  background: linear-gradient(135deg, #e54547 0%, #2a8a6d 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(197, 32, 33, 0.4);
}

/* HÄ±zlÄ± Ä°konlar */
.mobile-nav-quick-icons {
  display: flex;
  justify-content: space-around;
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.2);
  gap: 8px;
}

.mobile-nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: #a0a8b0;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.25s ease;
  min-width: 60px;
}

.mobile-nav-icon-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.mobile-nav-icon-btn i {
  font-size: 22px;
  color: #c52021;
  transition: transform 0.2s ease;
}

.mobile-nav-icon-btn:hover {
  background: rgba(197, 32, 33, 0.1);
  color: #c52021;
}

.mobile-nav-icon-btn:hover img,
.mobile-nav-icon-btn:hover i {
  transform: scale(1.1);
}

/* MenÃ¼ BÃ¶lÃ¼mÃ¼ BaÅŸlÄ±ÄŸÄ± */
.mobile-nav-menu-section {
  padding: 20px 16px;
}

.mobile-nav-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c52021;
  margin-bottom: 12px;
  padding-left: 8px;
  opacity: 0.8;
}

/* Sol menÃ¼ - seÃ§ilebilir menÃ¼ stilleri */
.mobile-navigation .left-menu-list {
  padding: 0 4px;
}

.mobile-navigation .left-menu-list .left-menu-item {
  margin: 4px 0;
  padding: 0;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-navigation .left-menu-list .left-menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(197, 32, 33, 0.2) 0%, transparent 100%);
  transition: width 0.3s ease;
}

.mobile-navigation .left-menu-list .left-menu-item:hover::before {
  width: 100%;
}

.mobile-navigation .left-menu-list .left-menu-item a {
  color: #c8ccd0;
  padding: 14px 12px 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}

.mobile-navigation .left-menu-list .left-menu-item a > div {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.mobile-navigation .left-menu-list .left-menu-item a > div img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.mobile-navigation .left-menu-list .left-menu-item:hover {
  border-left-color: #c52021;
  background: rgba(197, 32, 33, 0.08) !important;
  transform: translateX(4px);
}

.mobile-navigation .left-menu-list .left-menu-item:hover a {
  color: #c52021 !important;
}

.mobile-navigation .left-menu-list .left-menu-item:hover a > div {
  background: rgba(197, 32, 33, 0.15);
}

.mobile-navigation .left-menu-list .left-menu-item:hover a > div img {
  transform: scale(1.1);
}

.mobile-navigation .left-menu-list .left-menu-item.active {
  border-left-color: #c52021;
  background: linear-gradient(90deg, rgba(197, 32, 33, 0.2) 0%, rgba(197, 32, 33, 0.05) 100%) !important;
  box-shadow: inset 0 0 20px rgba(197, 32, 33, 0.1);
}

.mobile-navigation .left-menu-list .left-menu-item.active a {
  color: #c52021 !important;
  font-weight: 600;
}

.mobile-navigation .left-menu-list .left-menu-item.active a > div {
  background: rgba(197, 32, 33, 0.2);
}

.mobile-navigation .left-menu-list .left-menu-item:active {
  background: rgba(197, 32, 33, 0.25) !important;
  transform: translateX(2px);
}

/* Aktif menÃ¼ Ã¶ÄŸesi iÃ§in glow efekti */
.mobile-navigation .left-menu-list .left-menu-item.active::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c52021;
  box-shadow: 0 0 8px #c52021;
}

.mobile-navigation ul li a:hover,
.mobile-navigation1 ul li a:hover {
  color: #c52021 !important;
}

.mobile-navigation ul li.active,
.mobile-navigation1 ul li.active {
  background: rgba(197, 32, 33, 0.15) !important;
}

/* Mobil MenÃ¼ AnimasyonlarÄ± */
.mobile-navigation {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-navigation:not(.active) {
  opacity: 0;
  visibility: hidden;
}

.mobile-navigation.active {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation-body {
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-navigation.active .mobile-navigation-body {
  transform: translateX(0);
}

/* Backdrop */
.mobile-navigation-space {
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.mobile-navigation.add-backdrop .mobile-navigation-space {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* CÃ¼zdan MenÃ¼sÃ¼ (mobile-navigation1) */
.mobile-navigation1-body {
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-navigation1.active .mobile-navigation1-body {
  transform: translateX(0);
}

.mobile-navigation1-header {
  padding: 20px;
  background: linear-gradient(135deg, #0f1c22 0%, #051a38 100%);
  border-bottom: 1px solid rgba(197, 32, 33, 0.15);
}

.head-mobile-navigation1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head-mobile-navigation1 > div:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.head-mobile-navigation1 > div:first-child::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #c52021 0%, #9e1a1b 100%);
  border-radius: 2px;
}

/* Scrollbar Stilleri */
.mobile-navigation-body::-webkit-scrollbar,
.mobile-navigation1-body::-webkit-scrollbar {
  width: 4px;
}

.mobile-navigation-body::-webkit-scrollbar-track,
.mobile-navigation1-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-navigation-body::-webkit-scrollbar-thumb,
.mobile-navigation1-body::-webkit-scrollbar-thumb {
  background: rgba(197, 32, 33, 0.3);
  border-radius: 2px;
}

.mobile-navigation-body::-webkit-scrollbar-thumb:hover,
.mobile-navigation1-body::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 32, 33, 0.5);
}

/* ========== MOBÄ°L CÃœZDAN MENÃœSÃœ - PROFESYONEL ========== */

.mobile-navigation1-body {
  background: linear-gradient(180deg, #051a38 0%, #0f1c22 100%) !important;
}

/* Header */
.mobile-wallet-header {
  padding: 20px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-wallet-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-wallet-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.mobile-wallet-header-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.3);
}

.mobile-wallet-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808890;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-wallet-close:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

/* Bakiye BÃ¶lÃ¼mÃ¼ */
.mobile-wallet-balance-section {
  padding: 20px;
}

.mobile-wallet-balance-card-modern {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.05) 100%);
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.mobile-wallet-balance-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c52021 0%, #e54547 50%, #c52021 100%);
}

.mobile-wallet-balance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-wallet-balance-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #808890;
}

.mobile-wallet-balance-icon {
  width: 32px;
  height: 32px;
  background: rgba(197, 32, 33, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c52021;
}

.mobile-wallet-balance-value {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.mobile-wallet-currency {
  font-size: 24px;
  color: #c52021;
}

/* Ä°ÅŸlemler Grid */
.mobile-wallet-actions-section {
  padding: 0 20px 20px;
}

.mobile-wallet-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #606870;
  margin-bottom: 16px;
}

.mobile-wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mobile-wallet-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-wallet-grid-item:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 32, 33, 0.2);
}

.mobile-wallet-grid-item.deposit:hover {
  background: rgba(197, 32, 33, 0.08);
  border-color: rgba(197, 32, 33, 0.3);
}

.mobile-wallet-grid-item.withdraw:hover {
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.3);
}

.mobile-wallet-grid-item.transfer:hover {
  background: rgba(78, 205, 196, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
}

.mobile-wallet-grid-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-wallet-grid-item.deposit .mobile-wallet-grid-icon {
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.35);
}

.mobile-wallet-grid-item.withdraw .mobile-wallet-grid-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.35);
}

.mobile-wallet-grid-item.transfer .mobile-wallet-grid-icon {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a3aa 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.35);
}

.mobile-wallet-grid-label {
  font-size: 12px;
  font-weight: 600;
  color: #c8ccd0;
  text-align: center;
}

/* Son Ä°ÅŸlemler */
.mobile-wallet-recent {
  padding: 0 20px 20px;
}

.mobile-wallet-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #505860;
}

.mobile-wallet-empty span {
  font-size: 13px;
  color: #606870;
}

/* ========== CÃœZDAN MENÃœSÃœ Ã–ZEL STÄ°LLER ========== */

/* CÃ¼zdan Bakiye KartÄ± */
.mobile-wallet-balance-card {
  margin: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.05) 100%);
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mobile-wallet-balance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c52021 0%, #e54547 50%, #c52021 100%);
}

.mobile-wallet-balance-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0a8b0;
  margin-bottom: 12px;
}

.mobile-wallet-balance-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 32px;
  font-weight: 700;
  color: #c52021;
  text-shadow: 0 2px 8px rgba(197, 32, 33, 0.3);
}

.mobile-wallet-currency {
  font-size: 24px;
  opacity: 0.9;
}

/* CÃ¼zdan Ä°ÅŸlem Listesi */
.mobile-wallet-actions {
  padding: 0 16px;
  list-style: none;
  margin: 0;
}

.mobile-wallet-actions li {
  margin: 8px 0;
}

.mobile-wallet-action-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.mobile-wallet-action-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 32, 33, 0.2);
  transform: translateX(4px);
}

.mobile-wallet-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-wallet-action-text {
  flex: 1;
  min-width: 0;
}

.mobile-wallet-action-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.mobile-wallet-action-desc {
  font-size: 12px;
  color: #808890;
}

.mobile-wallet-action-arrow {
  color: #606870;
  transition: all 0.2s ease;
}

.mobile-wallet-action-item:hover .mobile-wallet-action-arrow {
  color: #c52021;
  transform: translateX(4px);
}

/* CÃ¼zdan menÃ¼sÃ¼ animasyonlarÄ± */
.mobile-navigation1 {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-navigation1:not(.active) {
  opacity: 0;
  visibility: hidden;
}

.mobile-navigation1.active {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation1-space {
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.mobile-navigation1.add-backdrop .mobile-navigation1-space {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* Mobil CÃ¼zdan Butonu */
.wallet-mobile {
  display: none !important;
}

@media (max-width: 575px) {
  .wallet-desktop {
    display: none !important;
  }
  .wallet-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 33px;
    padding: 0 !important;
    border-radius: 8px;
  }
  .wallet-mobile svg {
    width: 20px;
    height: 18px;
  }
}

/* ========== MOBÄ°L MENÃœ KATEGORÄ°LERÄ° ========== */

/* MenÃ¼ Kategori Konteyner */
.mobile-nav-category {
  margin-bottom: 8px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.mobile-nav-category:hover {
  border-color: rgba(197, 32, 33, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* Kategori BaÅŸlÄ±ÄŸÄ± */
.mobile-nav-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.mobile-nav-category-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-category-no-toggle {
  cursor: default;
}

.mobile-nav-category-no-toggle:hover {
  background: transparent;
}

/* Kategori Ä°konu */
.mobile-nav-category-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-nav-category-icon svg {
  width: 18px;
  height: 18px;
}

/* Kategori BaÅŸlÄ±k Metni */
.mobile-nav-category-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Kategori Ok Ä°konu */
.mobile-nav-category-arrow {
  color: #606870;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-category.expanded .mobile-nav-category-arrow {
  transform: rotate(180deg);
  color: #c52021;
}

/* Kategori Listesi */
.mobile-nav-category-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 12px 0 16px;
  margin: 0;
  list-style: none;
}

.mobile-nav-category.expanded .mobile-nav-category-list {
  padding-bottom: 12px;
}

.mobile-nav-category-static .mobile-nav-category-list {
  max-height: none;
  padding-bottom: 12px;
}

/* ========== MENÃœ Ã–ÄELERÄ° - GELÄ°ÅMÄ°Å STÄ°LLER ========== */

/* MenÃ¼ Ä°kon Wrapper */
.menu-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative;
}

.menu-icon-wrapper img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* MenÃ¼ Metni */
.menu-item-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #c8ccd0;
  transition: color 0.2s ease;
}

.left-menu-item:hover .menu-item-text,
.left-menu-item.active .menu-item-text {
  color: #fff;
}

/* MenÃ¼ Ok Ä°konu */
.menu-item-arrow {
  color: #505860;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateX(-4px);
}

.left-menu-item:hover .menu-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #c52021;
}

/* Ã–ne Ã‡Ä±kan MenÃ¼ Ã–ÄŸeleri */
.left-menu-item-featured .menu-icon-wrapper {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 32, 33, 0); }
  50% { box-shadow: 0 0 0 4px rgba(197, 32, 33, 0.1); }
}

/* Vurgulu MenÃ¼ Ã–ÄŸeleri */
.left-menu-item-highlight .menu-item-text {
  font-weight: 600;
  color: #e8e8e8;
}

/* ========== MENÃœ BADGE'LERÄ° ========== */

.menu-item-badge {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* CANLI Badge */
.menu-live-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  padding: 2px 6px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* HOT Badge */
.badge-hot {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* YENÄ° Badge */
.badge-new {
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(197, 32, 33, 0.3);
}

/* VIP Badge */
.badge-vip {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #06244f;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* 7/24 Badge */
.badge-success {
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%);
  color: #fff;
}

/* HIZLI Badge */
.badge-fast {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

/* PROMO Badge */
.badge-promo {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  animation: promoShine 2s ease-in-out infinite;
}

@keyframes promoShine {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(231, 76, 60, 0); }
}

/* Bonus SayÄ± Badge */
.badge-bonus {
  background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  color: #fff;
  min-width: 20px;
  text-align: center;
}

/* Mesaj SayÄ± Badge */
.badge-message {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  min-width: 20px;
  text-align: center;
}

/* Durum NoktasÄ± (Online/CanlÄ± Destek) */
.menu-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c52021;
  box-shadow: 0 0 0 2px rgba(197, 32, 33, 0.3);
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 2px rgba(197, 32, 33, 0.3); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(197, 32, 33, 0.1); }
}

/* ========== MENÃœ Ã–ÄESÄ° GELÄ°ÅMÄ°Å HOVER EFEKTLERÄ° ========== */

.mobile-navigation .left-menu-item {
  margin: 4px 0;
  padding: 0;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-navigation .left-menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(197, 32, 33, 0.15) 0%, transparent 100%);
  transition: width 0.3s ease;
}

.mobile-navigation .left-menu-item:hover::before {
  width: 100%;
}

.mobile-navigation .left-menu-item a {
  color: #c8ccd0;
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.mobile-navigation .left-menu-item:hover {
  border-left-color: #c52021;
  background: rgba(197, 32, 33, 0.06) !important;
  transform: translateX(4px);
}

.mobile-navigation .left-menu-item:hover a {
  color: #c52021 !important;
}

.mobile-navigation .left-menu-item:hover .menu-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.2);
}

.mobile-navigation .left-menu-item.active {
  border-left-color: #c52021;
  background: linear-gradient(90deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.03) 100%) !important;
}

.mobile-navigation .left-menu-item.active a {
  color: #c52021 !important;
}

.mobile-navigation .left-menu-item.active .menu-icon-wrapper {
  background: rgba(197, 32, 33, 0.2) !important;
}

.mobile-navigation .left-menu-item.active::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c52021;
  box-shadow: 0 0 8px #c52021;
}

/* MenÃ¼ BÃ¶lÃ¼m BaÅŸlÄ±ÄŸÄ± */
.mobile-nav-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c52021;
  margin-bottom: 16px;
  padding-left: 4px;
  opacity: 0.8;
}

/* ========== FLOAT ANIMATION FOR PARTICLES ========== */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.5;
  }
}

/* ========== DÄ°ÄER TURUNCU OVERRIDE ========== */
#flippanel { border-bottom-color: #c52021 !important; }
.personal-categories a.active {
  border-bottom-color: #c52021 !important;
  color: #c52021 !important;
}
.header-topbar .main-info a:hover,
.main-live-support-btn:hover {
  color: #c52021 !important;
}

/* ========== HEADER BAKÄ°YE & CÃœZDAN - PROFESYONEL ========== */

.header-topbar-balance {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Ä°ki satÄ±rlÄ± header yapÄ±sÄ± */
.header-topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 1. SatÄ±r: Logo */
.header-logo-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-logo-row .main_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. SatÄ±r: MenÃ¼ + Bakiye + CÃ¼zdan */
.header-menu-row {
  padding-top: 4px;
}

/* MenÃ¼ butonunun yanÄ±ndaki bakiye kartÄ± */
.col-auto .header-balance-card {
  margin-left: 8px;
}

/* Mobil iÃ§in logo ortalama */
@media (max-width: 768px) {
  .header-topbar .main_logo {
    position: static;
    transform: none;
    text-align: center;
  }
  
  .header-topbar .main_logo-desktop {
    height: 40px !important;
    width: 160px !important;
  }
}

/* Bakiye KartÄ± */
.header-balance-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1) 0%, rgba(197, 32, 33, 0.05) 100%);
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 12px;
  transition: all 0.25s ease;
}

/* MenÃ¼ butonunun yanÄ±ndaki bakiye kartÄ± */
.col-auto .header-balance-card {
  margin-left: 8px;
}

/* Mobil cihazlarda bakiye kartÄ± kÃ¼Ã§Ã¼ltme */
@media (max-width: 576px) {
  .col-auto .header-balance-card {
    padding: 6px 10px;
    gap: 8px;
  }
  
  .col-auto .header-balance-icon {
    width: 28px;
    height: 28px;
  }
  
  .col-auto .header-balance-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .col-auto .header-balance-label {
    font-size: 9px;
  }
  
  .col-auto .header-balance-amount {
    font-size: 13px;
  }
  
  .col-auto .header-balance-add {
    width: 24px;
    height: 24px;
  }
  
  .col-auto .header-balance-add svg {
    width: 14px;
    height: 14px;
  }
}

.header-balance-card:hover {
  border-color: rgba(197, 32, 33, 0.35);
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.08) 100%);
}

.header-balance-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.3);
}

.header-balance-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-balance-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #808890;
}

.header-balance-amount {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.header-balance-add {
  width: 28px;
  height: 28px;
  background: rgba(197, 32, 33, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c52021;
  transition: all 0.2s ease;
}

.header-balance-add:hover {
  background: #c52021;
  color: #fff;
  transform: scale(1.1);
}

/* Mobil Ä°konlar */
.header-mobile-icons {
  display: flex;
  gap: 8px;
}

.header-mobile-icons .main-info {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a8b0;
  transition: all 0.2s ease;
}

.header-mobile-icons .main-info:hover {
  background: rgba(197, 32, 33, 0.1);
  border-color: rgba(197, 32, 33, 0.3);
  color: #c52021;
}

.header-mobile-icons .main-info svg {
  width: 18px;
  height: 18px;
}

/* CanlÄ± Destek SVG */
.livechatMobile svg {
  stroke: currentColor;
}

/* CÃ¼zdan Butonu */
.header-wallet-wrapper {
  position: relative;
}

.header-wallet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%) !important;
  border: none !important;
  border-radius: 12px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.35);
}

.header-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 32, 33, 0.45);
}

.header-wallet-btn::after {
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.header-wallet-btn[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.header-wallet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CÃ¼zdan Dropdown */
.dropdown-menu-desktop {
  min-width: 240px;
  padding: 8px;
  background: linear-gradient(135deg, #06244f 0%, #051a38 100%);
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-top: 8px !important;
}

.dropdown-menu-desktop .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #c8ccd0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu-desktop .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.dropdown-menu-desktop .dropdown-item.active {
  background: rgba(197, 32, 33, 0.1);
  color: #c52021;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-text {
  flex: 1;
}

/* ========== HEADER & CONTAINER - PROFESYONEL TASARIM ========== */

/* Ana Container */
.custom-container {
  max-width: 1440px !important;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .custom-container {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .custom-container {
    padding: 0 0px;
  }
}

/* Header Container */
.header-topbar-container {
  position: relative;
  z-index: 1000;
}

/* Header Topbar - Ana YapÄ± */
.header-topbar {
  background: linear-gradient(135deg, rgba(20, 24, 28, 0.95) 0%, rgba(26, 31, 34, 0.95) 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.15) !important;
  border-radius: 16px !important;
  margin-top: 16px;
  padding: 16px 24px !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(197, 32, 33, 0.05) inset;
  transition: all 0.3s ease;
}

.header-topbar:hover {
  border-color: rgba(197, 32, 33, 0.25) !important;
  box-shadow: 
    0 6px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(197, 32, 33, 0.08) inset;
}

/* Mobil Header */
@media (max-width: 885px) {
  .header-topbar {
    margin-top: 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(197, 32, 33, 0.15) !important;
    padding: 10px 16px !important;
    background: linear-gradient(135deg, rgba(13, 18, 22, 0.98) 0%, rgba(20, 24, 28, 0.98) 100%) !important;
  }
  
  /* Mobil cihazlarda iki satÄ±rlÄ± yapÄ±yÄ± koru */
  .header-topbar {
    gap: 10px;
    padding: 12px 16px !important;
  }
  
  .header-logo-row {
    padding-bottom: 10px;
  }
  
  .header-menu-row {
    padding-top: 2px;
  }
  
  /* Guest header mobil dÃ¼zeni */
  .header-topbar .col-auto.account-menu {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

/* ========== LOGO ALANI ========== */

.header-topbar .main_logo {
  margin-left: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Desktop Logo */
.header-topbar .main_logo .main_logo-desktop {
  height: 50px;
  width: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-topbar .main_logo .main_logo-desktop:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(197, 32, 33, 0.2));
}

/* Mobile Logo */
.header-topbar .main_logo .main_logo-mobile,
.header-topbar .main_logo .main_logo-mobile-mini {
  height: 40px;
  width: 130px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .header-topbar .main_logo .main_logo-desktop {
    display: none !important;
  }
  .header-topbar .main_logo .main_logo-mobile,
  .header-topbar .main_logo .main_logo-mobile-mini {
    display: block !important;
    height: 36px;
    width: 120px;
  }
}

/* Logo Flame Efekti */
.logo-flame {
  display: block;
  position: relative;
}

.logo-flame::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle at center, rgba(197, 32, 33, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}

.logo-flame:hover::after {
  opacity: 1;
}

/* ========== MOBÄ°L MENÃœ BUTONU ========== */

.header-mobile-menu-open {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 10px !important;
  display: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.header-mobile-menu-open:hover {
  background: rgba(197, 32, 33, 0.1) !important;
  border-color: rgba(197, 32, 33, 0.3) !important;
  transform: scale(1.05);
}

.header-mobile-menu-open:active {
  transform: scale(0.95);
}

.header-mobile-menu-open__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.header-mobile-menu-open__icon rect {
  transition: all 0.3s ease;
}

.header-mobile-menu-open:hover .header-mobile-menu-open__icon rect {
  fill: #e54547;
}

@media (max-width: 885px) {
  .header-mobile-menu-open {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* ========== BAKÄ°YE ALANI ========== */

.header-topbar .header-topbar-balance {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-topbar-amount {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1) 0%, rgba(197, 32, 33, 0.05) 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.2) !important;
  border-radius: 12px !important;
  height: 44px !important;
  padding: 8px 14px 8px 10px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.header-topbar-amount:hover {
  border-color: rgba(197, 32, 33, 0.35) !important;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.08) 100%) !important;
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.15);
}

.header-topbar-currency-symbol {
  width: 20px !important;
  height: 20px !important;
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(197, 32, 33, 0.3);
}

#header-total-balance {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Para YatÄ±rma (+) Butonu */
.depRedirect {
  margin-left: 8px;
}

.depRedirect a {
  color: #c52021;
  font-size: 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depRedirect a:hover {
  color: #e54547;
  transform: scale(1.15);
}

/* ========== HESAP MENÃœSÃœ ========== */

.header-topbar .account-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Ä°kon ButonlarÄ± (Telegram, Destek, vb.) */
.header-topbar .account-menu .main-info {
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.header-topbar .account-menu .main-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.header-topbar .account-menu .main-info:hover {
  border-color: rgba(197, 32, 33, 0.3);
  background: rgba(197, 32, 33, 0.08);
  transform: translateY(-2px);
}

.header-topbar .account-menu .main-info:hover::before {
  opacity: 1;
}

.header-topbar .account-menu .main-info a {
  color: #a0a8b0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.2s ease;
  position: relative;
  z-index: 1;
}

.header-topbar .account-menu .main-info:hover a {
  color: #c52021;
}

.header-topbar .account-menu .main-info img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.header-topbar .account-menu .main-info:hover img {
  transform: scale(1.1);
}

/* Telegram Ä°konu Ã–zel */
.header-topbar .account-menu .main-info .fa-telegram-plane {
  font-size: 20px;
  color: #0088cc;
  transition: all 0.2s ease;
}

.header-topbar .account-menu .main-info:hover .fa-telegram-plane {
  color: #c52021;
  transform: scale(1.1);
}

/* Misafir Giriş/Kayıt — bkz. bundles/css/benimbahis-header-exact.css (theme sonrası yüklenir) */

/* ========== DÄ°L SEÃ‡Ä°M DROPDOWN ========== */

.main-info-language {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  height: 42px;
  padding: 0 14px !important;
  font-size: 13px;
  font-weight: 600;
  color: #e8e8e8 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.main-info-language:hover {
  background: rgba(197, 32, 33, 0.1) !important;
  border-color: rgba(197, 32, 33, 0.3) !important;
  color: #c52021 !important;
}

.main-info-language::after {
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.main-info-language[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* Dil Dropdown MenÃ¼ */
.main-info-language-dropdown-menu {
  min-width: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #06244f 0%, #051a38 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 8px !important;
  margin-top: 8px !important;
}

.lang__dropdown-list {
  border-radius: 8px;
  overflow: hidden;
}

.lang__dropdown-link {
  display: block;
  padding: 10px 16px;
  color: #c8ccd0 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.lang__dropdown-link:hover {
  background: rgba(197, 32, 33, 0.1) !important;
  color: #c52021 !important;
}

/* ========== KULLANICI DROPDOWN ========== */

.dropdown-toggle.main-info {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1) 0%, rgba(197, 32, 33, 0.05) 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.2) !important;
  padding: 0 16px !important;
  gap: 8px;
}

.dropdown-toggle.main-info:hover {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.08) 100%) !important;
  border-color: rgba(197, 32, 33, 0.35) !important;
}

.header-topbar-username {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* KullanÄ±cÄ± Dropdown MenÃ¼ */
.dropdown-menu {
  min-width: 220px;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #06244f 0%, #051a38 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 12px !important;
  margin-top: 10px !important;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px !important;
  border-radius: 10px;
  color: #c8ccd0 !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(197, 32, 33, 0.1) !important;
  color: #c52021 !important;
}

.dropdown-item.active {
  background: rgba(197, 32, 33, 0.15) !important;
  color: #c52021 !important;
}

/* Mesaj SayÄ±sÄ± Badge */
.user-navigation-msg-count {
  margin-left: auto;
  background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* Ã‡Ä±kÄ±ÅŸ Butonu */
.header-topbar-logout {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 8px;
}

.header-topbar-logout .dropdown-item {
  color: #ff6b6b !important;
}

.header-topbar-logout .dropdown-item:hover {
  background: rgba(255, 107, 107, 0.1) !important;
  color: #ff4757 !important;
}

/* ========== CÃœZDAN DROPDOWN ========== */

.header-topbar-wallet {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.15) 0%, rgba(197, 32, 33, 0.08) 100%) !important;
  border: 1px solid rgba(197, 32, 33, 0.25) !important;
  border-radius: 12px !important;
  height: 44px;
  padding: 0 18px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.15);
}

.header-topbar-wallet:hover {
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.2) 0%, rgba(197, 32, 33, 0.12) 100%) !important;
  border-color: rgba(197, 32, 33, 0.4) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 32, 33, 0.25);
}

.header-topbar-wallet::after {
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid #c52021;
  border-bottom: 2px solid #c52021;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.header-topbar-wallet[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* CÃ¼zdan Dropdown MenÃ¼ */
.dropdown-menu-desktop {
  min-width: 240px;
}

.dropdown-menu-desktop .dropdown-item {
  padding: 14px 18px !important;
}

.dropdown-menu-desktop .dropdown-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 32, 33, 0.5);
  transition: all 0.2s ease;
}

.dropdown-menu-desktop .dropdown-item:hover::before {
  background: #c52021;
  box-shadow: 0 0 8px #c52021;
}

/* ========== HEADER Ä°KON GRUBU ========== */

.header-icons-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== HEADER AUTH BUTONLARI ========== */

.header-auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========== KULLANICI DROPDOWN GELÄ°ÅMÄ°Å ========== */

.header-user-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px !important;
}

.header-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(197, 32, 33, 0.3);
}

/* Dropdown Header */
.dropdown-header {
  padding: 16px !important;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-dropdown-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-dropdown-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c52021 0%, #9e1a1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 32, 33, 0.3);
}

.header-dropdown-user-details {
  flex: 1;
}

.header-dropdown-username {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.header-dropdown-balance {
  font-size: 13px;
  font-weight: 600;
  color: #c52021;
}

/* Dropdown Divider */
.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08) !important;
  margin: 8px 12px !important;
}

/* Dropdown Item with Icon */
.dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.dropdown-item:hover svg {
  opacity: 1;
  color: #c52021;
}

/* ========== RESPONSIVE DÃœZENLEMELER ========== */

@media (max-width: 1200px) {
  .header-topbar .header-topbar-balance {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .header-topbar .account-menu .main-info.d-none.d-sm-flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-topbar {
    padding: 10px 14px !important;
  }
  
  .header-topbar-amount {
    height: 38px !important;
    padding: 6px 10px 6px 8px !important;
  }
  
  #header-total-balance {
    font-size: 14px;
  }
  
}

@media (max-width: 576px) {
  .header-topbar {
    padding: 8px 12px !important;
  }
  
  .header-topbar-amount {
    height: 36px !important;
    padding: 6px 10px !important;
  }
  
  .header-topbar-currency-symbol {
    width: 18px !important;
    height: 18px !important;
    font-size: 10px;
  }
  
  #header-total-balance {
    font-size: 13px;
  }
  
}

@media (max-width: 438px) {
  .header-topbar-wallet span {
    display: none;
  }
  
  .header-topbar-wallet {
    padding: 0 12px !important;
    width: 44px;
    justify-content: center;
  }
}

/* ========== AÃ‡ILIR MENÃœ - topMenu toggle ========== */
.topmenu-wrapper {
  position: relative;
}
/* Desktop: toggle gizli, menÃ¼ her zaman aÃ§Ä±k */
@media (min-width: 992px) {
  .topmenu-toggle { display: none !important; }
  .topmenu-content { max-height: none !important; opacity: 1 !important; }
}
.topmenu-toggle {
  display: none;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0f2e24 0%, #4a1516 50%, #c52021 100%);
  border: 1px solid rgba(197, 32, 33, 0.5);
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.2);
}
.topmenu-toggle:hover {
  background: linear-gradient(135deg, #4a1516 0%, #c52021 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(197, 32, 33, 0.35);
  transform: translateY(-1px);
}
.topmenu-toggle .toggle-icon {
  transition: transform 0.3s ease;
}
.topmenu-wrapper.expanded .topmenu-toggle .toggle-icon {
  transform: rotate(180deg);
}
.topmenu-wrapper.expanded .topmenu-toggle {
  border-radius: 14px 14px 0 0;
}
.topmenu-wrapper.expanded .topmenu-inner {
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-top: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.topmenu-content {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== MOBÄ°L UYUMLULUK ========== */
@media (max-width: 991px) {
  .topmenu-toggle {
    display: flex !important;
  }
  .topmenu-content.collapsible {
    max-height: 0 !important;
    opacity: 0;
    overflow: hidden;
  }
  .topmenu-wrapper.expanded .topmenu-content.collapsible {
    max-height: 900px !important;
    opacity: 1;
    margin-top: 6px;
  }
  .topmenu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 4px 0;
  }
  .topmenu-item {
    padding: 12px 8px;
    min-height: 68px;
    font-size: 11px;
  }
  .topmenu-icon img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 576px) {
  .topmenu-toggle {
    padding: 14px 18px;
    font-size: 14px;
  }
  .topmenu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .topmenu-item {
    min-height: 64px;
    font-size: 10px;
  }
}

@media (min-width: 992px) {
  .topmenu-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
  .topmenu-inner {
    padding: 12px 20px;
  }
}

/* Touch hedefleri - min 44px */
@media (pointer: coarse) {
  .bottom_bar a,
  .mobile-navigation ul li a,
  .dropdown-item,
  .btn {
    min-height: 44px !important;
  }
  .bottom_bar a {
    padding: 12px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Promosyonlar, Slots vb. sayfa override */
.promotions__filter-item.active,
.promotions__filter-item:hover {
  color: #ffffff !important;
  border-color: #c52021 !important;
}
.slots-page .block__view-switcher .btn.slot-tabs--active {
  background: rgba(197, 32, 33, 0.2) !important;
  color: #c52021 !important;
}

/* Cashraces - yeÅŸil override */
.btn-yellow-full,
.btn-yellow-full:hover,
.btn-yellow-full:active,
.btn-yellow-full:focus-visible {
  background-color: #c52021 !important;
  border-color: #c52021 !important;
}

/* ========== SLIDER PROGRESS DOTS ========== */
.homepage-slider-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.homepage-slider-wrapper .progress-dots {
  display: flex;
  justify-content: center;
  margin-top: 3px;
  gap: 6px;
  padding: 0px 0px;
  border-radius: 10px;
}
.progress-dots .dot {
  width: 10px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.2s ease;
  cursor: pointer;
}
.progress-dots .dot:hover {
  background: rgba(255,255,255,0.5);
}
.progress-dots .dot.active {
  background: rgba(255,255,255,0.25);
}
.progress-dots .dot.passed {
  background: var(--main-color);
}
.progress-dots .dot .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--main-color);
  border-radius: 4px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: dotFill 3s linear forwards;
  will-change: transform;
  transition: transform 0.4s ease;
}
@keyframes dotFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


/* ========== BANKING SAYFALARI - PROFESYONEL ========== */

.banking-page {
  padding: 24px 20px;
}

/* Banking Header */
.banking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.banking-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banking-header-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(197, 32, 33, 0.3);
}

.banking-header-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px 0;
}

.banking-header-subtitle {
  font-size: 14px;
  color: #808890;
  margin: 0;
}

.banking-breadcrumb {
  margin: 0;
}

.banking-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 18px;
  border-radius: 10px;
  margin: 0;
}

.banking-breadcrumb .breadcrumb-item a {
  color: #c52021;
  text-decoration: none;
  font-weight: 500;
}

.banking-breadcrumb .breadcrumb-item.active {
  color: #808890;
}

/* Promo KartÄ± */
.banking-promo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.08) 0%, rgba(197, 32, 33, 0.02) 100%);
  border: 1px solid rgba(197, 32, 33, 0.15);
  border-radius: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}

.banking-promo-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 32, 33, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c52021;
  flex-shrink: 0;
}

.banking-promo-content {
  flex: 1;
}

.banking-promo-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #c8ccd0;
  margin-bottom: 10px;
}

.banking-promo-input-group {
  display: flex;
  gap: 10px;
}

.banking-promo-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.banking-promo-input:focus {
  outline: none;
  border-color: #c52021;
  box-shadow: 0 0 0 3px rgba(197, 32, 33, 0.1);
}

.banking-promo-input::placeholder {
  color: #505860;
}

.banking-promo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c52021 0%, #2a8a6d 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.banking-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 32, 33, 0.35);
}

.banking-promo-btn:active {
  transform: translateY(0);
}

.banking-promo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.banking-promo-message {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

.banking-promo-message.text-success {
  background: rgba(197, 32, 33, 0.15);
  color: #e54547;
  border: 1px solid rgba(197, 32, 33, 0.2);
}

.banking-promo-message.text-danger {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Banking Header */
@media (max-width: 768px) {
  .banking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .banking-header-title {
    font-size: 24px;
  }
  
  .banking-header-icon {
    width: 48px;
    height: 48px;
  }
  
  .banking-promo-card {
    flex-direction: column;
    padding: 18px;
  }
  
  .banking-promo-input-group {
    flex-direction: column;
  }
  
  .banking-promo-btn {
    justify-content: center;
  }
}


/* ========== FOOTER - PROFESYONEL TASARIM ========== */

.footer {
  background: linear-gradient(180deg, #0f1c22 0%, #0a0e11 100%);
  border-top: 1px solid rgba(197, 32, 33, 0.1);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 32, 33, 0.3), transparent);
}

/* Sol BÃ¶lÃ¼m - Logo ve Sosyal */
.footer .social-container {
  padding-right: 40px;
}

.footer-milan-logo {
  height: 52px;
  margin-bottom: 24px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.footer-milan-logo:hover {
  filter: brightness(1);
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 400px;
}

.social-wrapper {
  display: flex;
  gap: 12px;
}

.social-wrapper a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 32, 33, 0.1), rgba(197, 32, 33, 0.05));
  border: 1px solid rgba(197, 32, 33, 0.2);
  border-radius: 12px;
  color: #c52021;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-wrapper a:hover {
  background: linear-gradient(135deg, #c52021, #2a8a6d);
  border-color: #c52021;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(197, 32, 33, 0.3);
}

/* SaÄŸ BÃ¶lÃ¼m - Navigasyon */
.footer .navigation-list {
  padding-left: 20px;
}

.footer .navigation-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .navigation-list li.title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c52021;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 32, 33, 0.2);
}

.footer .navigation-list li {
  margin-bottom: 10px;
}

.footer .navigation-list li a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .navigation-list li a::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: #c52021;
  transition: width 0.25s ease;
}

.footer .navigation-list li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer .navigation-list li a:hover::before {
  width: 12px;
}

/* Provider BÃ¶lÃ¼mÃ¼ */
.footer-provider {
  margin-top: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__line-long {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 32, 33, 0.2), transparent);
  margin-bottom: 30px;
}

.footer-light-padding {
  padding: 20px 0;
}

.providers-logo-color {
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.providers-logo-color:hover {
  opacity: 1;
}

/* Mobil sponsor blok (footer-mobile-tr üstü) */
.footer-mobile-sponsors {
  position: relative;
  margin: 0 0 14px;
  padding: 18px 12px 14px;
  border: 1px solid rgba(227, 30, 36, 0.85);
  border-radius: 10px;
  background: #061a4a;
}

.footer-mobile-sponsors__title {
  width: max-content;
  margin: -30px auto 14px;
  padding: 6px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e31e24 0%, #b81820 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: "Roboto Condensed", "Inter", system-ui, sans-serif;
}

.footer-mobile-sponsors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.footer-mobile-sponsors__card {
  min-height: 132px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-mobile-sponsors__card-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.footer-mobile-sponsors__img {
  width: 100%;
  height: 132px;
  border-radius: 0;
  object-fit: contain;
  display: block;
}

/* Alt Footer - web_footer */
.web_footer {
  background: linear-gradient(180deg, #0a0e11 0%, #070a0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px 0;
}

.footer_light {
  text-align: center;
}

.footer_light .license {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer_light .license > div {
  transition: transform 0.3s ease;
}

.footer_light .license > div:hover {
  transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer .social-container {
    padding-right: 15px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .footer-milan-logo {
    margin: 0 auto 20px;
  }
  
  .footer-text {
    max-width: 100%;
  }
  
  .social-wrapper {
    justify-content: center;
  }
  
  .footer .navigation-list {
    padding-left: 15px;
  }
  
  .footer .navigation-list .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-text {
    font-size: 13px;
  }
  
  .footer .navigation-list li.title {
    font-size: 12px;
  }
  
  .footer .navigation-list li a {
    font-size: 13px;
  }
  
  .social-wrapper a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}





/* ========== ÃœST ALAN / SLIDER (theme-ref-top) ========== */

/**
 * Referans tema (BenimBahis tarzÄ±): koyu lacivert + kÄ±rmÄ±zÄ± vurgu
 * theme-green.css SONRASI yÃ¼klenir.
 */
:root {
  --main-color: rgb(197, 32, 33) !important;
  --main-color-rgb: 197, 32, 33 !important;
  --main-color-hex: #c52021 !important;
  --ref-b: 10, 22, 43;
  --ref-header: 10, 22, 43;
  --ref-menu-card: 6, 36, 79;
  --header-height-ref: 80px;
  /* Slider: referansta sabit px yok; görsel oranı + Owl autoHeight (index-Cwq4ZZKR.css) */
  --btn-radius-ref: 8px;
  --ref-page: #0a162b;
  --ref-btn-login: #0047ab;
  --ref-btn-register: #c01a1a;
  --ref-border-card: #1a2a40;
  --bg-body: #0a162b !important;
}

html,
body {
  background-color: #0a162b !important;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
}

/* ----- Ust domain seridi (Benimbahis ref: koyu kutu, mavi-kirmizi glow cerceve, X sag) ----- */
.mobile-domain-notice-wrap {
  padding: 10px 12px 6px !important;
  max-width: 100%;
}
.mobile-domain-notice {
  position: relative;
  color: #ffffff !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  padding: 12px 40px 12px 14px !important;
  border-radius: 8px !important;
  background: #050d1a !important;
  border: 1px solid rgba(65, 120, 190, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(197, 32, 33, 0.25) inset,
    0 2px 14px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(40, 90, 160, 0.12) !important;
}
.mobile-domain-notice__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 50%;
  color: #fff !important;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.mobile-domain-notice__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}
.mobile-domain-notice__text {
  color: #ffffff !important;
}
.mobile-domain-notice__text strong {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* ----- Header genel ----- */
.header-topbar-container {
  margin-top: 0 !important;
}

.header-topbar {
  background: rgb(var(--ref-header)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--btn-radius-ref) !important;
  margin-top: 10px !important;
  padding: 12px 14px !important;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.header-topbar.header-topbar--guest {
  background: #0a162b !important;
  border: 1px solid #1a2a40 !important;
  border-radius: 12px !important;
}

/* Misafir mobil: Benimbahis ref — kart, #1a2a40 cerceve, padding */
@media screen and (max-width: 767.98px) {
  .header-topbar-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-top: 0 !important;
  }
  .header-topbar.header-topbar--guest {
    background: #0a162b !important;
    border: 1px solid #1a2a40 !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    margin-bottom: 4px !important;
    padding: 10px 15px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45) !important;
  }
}

.header-topbar .main_logo .main_logo-desktop {
  height: 44px !important;
  width: 260px !important;
  max-width: min(260px, 70vw) !important;
}

.header-topbar .main_logo .main_logo-mobile,
.header-topbar .main_logo .main_logo-mobile-mini {
  height: 28px !important;
  width: 130px !important;
}

.header-topbar .account-menu .main-info {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--btn-radius-ref) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.header-topbar .header-mobile-menu-open__icon rect,
.ref-mobile-header .header-mobile-menu-open__icon rect {
  fill: rgb(197, 32, 33) !important;
}

@keyframes logo-flame-ref {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(197, 32, 33, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(197, 32, 33, 0.65));
  }
}
.main_logo a.logo-flame .main_logo-desktop,
.main_logo a.logo-flame .main_logo-mobile,
.main_logo a.logo-flame .main_logo-mobile-mini {
  animation: logo-flame-ref 2.5s ease-in-out infinite !important;
}

.header-topbar.header-topbar--guest a.logo-flame .main_logo-desktop,
.header-topbar.header-topbar--guest a.logo-flame .main_logo-mobile,
.header-topbar.header-topbar--guest a.logo-flame .main_logo-mobile-mini,
.header-topbar.header-topbar--guest a.logo-flame .main_logo .main_logo-mobile {
  animation: none !important;
  filter: none !important;
}

.header-balance-card {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--btn-radius-ref) !important;
}

.header-wallet-btn.btn-primary,
.wallet-mobile.btn-primary {
  border-radius: var(--btn-radius-ref) !important;
}

/* ----- Butonlar ----- */
.btn-primary,
button.btn-primary {
  background: rgb(197, 32, 33) !important;
  background-image: none !important;
  border-color: rgb(197, 32, 33) !important;
  border-radius: var(--btn-radius-ref) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.btn-primary:hover,
button.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 16px rgba(197, 32, 33, 0.35) !important;
  opacity: 1 !important;
}

.btn-secondary,
.header-mobile-menu-open.btn-secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--btn-radius-ref) !important;
}

.btn-secondary:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* ----- Mobil tek satÄ±r header (referans) ----- */
.ref-mobile-header {
  width: 100%;
}
.ref-mobile-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 44px;
}
.ref-mobile-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.ref-mobile-header__logo {
  display: block;
  min-width: 0;
}
.ref-mobile-header__logo .main_logo {
  margin-left: 0 !important;
  min-width: 0;
}
.ref-mobile-header__logo .main_logo .main_logo-mobile {
  display: block !important;
  height: 36px !important;
  width: 188px !important;
  max-width: min(188px, 50vw) !important;
  max-height: 36px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
}
.ref-mobile-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ----- HÄ±zlÄ± eriÅŸim ----- */
body .neon-glass-nav {
  --glass-bg: rgba(6, 36, 79, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0a162b 0%, rgb(4, 16, 36) 100%) !important;
  padding: 8px 0 6px !important;
}

body .neon-glass-nav::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;
}

body .neon-glass-nav::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(197, 32, 33, 0.35) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(197, 32, 33, 0.35) 55%,
    transparent 100%
  ) !important;
  box-shadow: none !important;
}

body .ng-card[data-ng="bonus"] {
  --card-color: rgba(255, 255, 255, 0.9);
  --card-glow: rgba(197, 32, 33, 0.35);
}
body .ng-card[data-ng="deposit"] {
  --card-color: rgb(197, 32, 33);
  --card-glow: rgba(197, 32, 33, 0.4);
}
body .ng-card[data-ng="withdraw"] {
  --card-color: rgba(255, 255, 255, 0.75);
  --card-glow: rgba(255, 255, 255, 0.12);
}
body .ng-card[data-ng="slots"] {
  --card-color: #8ba3c4;
  --card-glow: rgba(139, 163, 196, 0.3);
}
body .ng-card[data-ng="sports"] {
  --card-color: #6b8cae;
  --card-glow: rgba(107, 140, 174, 0.3);
}
body .ng-card[data-ng="livebet"] {
  --card-color: rgb(197, 32, 33);
  --card-glow: rgba(197, 32, 33, 0.35);
}

body .ng-card {
  border-radius: var(--btn-radius-ref) !important;
  background: rgba(var(--ref-menu-card), 0.35) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body .ng-badge {
  background: linear-gradient(135deg, rgb(197, 32, 33), #e04040) !important;
  border-color: #0a162b !important;
}

.sports-menu {
  background: transparent !important;
}

/* ----- Slider + jackpot (referans: .carousel__track li a, li a img { border-radius: 20px }; yükseklik görselden) ----- */
.homepage-slider-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.jackpots-slide-container iframe {
  width: 100%;
  height: auto !important;
  min-height: 180px;
  border-radius: 20px;
}

.homepage-carousel-container #main-carousel {
  height: auto !important;
}

.homepage-carousel .owl-stage-outer {
  border-radius: 20px;
  overflow: hidden;
}

.homepage-carousel .owl-item .item,
.homepage-carousel .owl-item .item > a {
  height: auto !important;
  width: 100% !important;
  display: block !important;
}

.homepage-carousel .owl-item .item > a {
  border-radius: 20px !important;
  overflow: hidden !important;
}

/* style.css 309px / 260px / object-fit cover üzerine */
.homepage-carousel .owl-item img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  object-fit: unset !important;
  object-position: center center !important;
  border-radius: 20px !important;
  vertical-align: top !important;
}

@media screen and (min-width: 1201px) {
  .homepage-carousel-container #main-carousel {
    height: auto !important;
  }

  .homepage-carousel .owl-item .item,
  .homepage-carousel .owl-item .item > a {
    height: auto !important;
  }

  .homepage-carousel-container #main-carousel .owl-item img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  .jackpots-slide-container > a > img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  .jackpots-slide-container iframe {
    height: auto !important;
    min-height: 200px;
  }
}

.homepage-carousel {
  border-radius: 20px;
  overflow: hidden;
}

.main-carousel .owl-nav button.owl-prev,
.main-carousel .owl-nav button.owl-next {
  background-color: rgb(197, 32, 33) !important;
  color: #fff !important;
  border-radius: var(--btn-radius-ref) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.main-carousel .owl-nav button.owl-prev:hover,
.main-carousel .owl-nav button.owl-next:hover {
  background-color: #e02d2f !important;
  color: #fff !important;
}

.bgs-navigation {
  background: rgba(var(--ref-menu-card), 0.95) !important;
  border-radius: var(--btn-radius-ref) !important;
}

button.owl-dot.active span {
  background-color: rgb(197, 32, 33) !important;
}

/* max-width 1200: style.css zaten carousel yüksekliğini auto yapıyor — referansla uyum için aynı mantık */
@media screen and (max-width: 1200px) {
  .homepage-carousel-container #main-carousel {
    height: auto !important;
  }
  .homepage-carousel .owl-item img {
    min-height: 0 !important;
    height: auto !important;
    width: 100% !important;
    border-radius: 20px !important;
  }
}

/* ========== style.css ile uyum (ana bundle yeÅŸil â†’ kÄ±rmÄ±zÄ± zaten gÃ¼ncellendi) ========== */
:root {
  --main-color: rgb(197, 32, 33) !important;
  --main-color-rgb: 197, 32, 33 !important;
}
body {
  background-color: #0a162b !important;
}
#flippanel {
  border-bottom: 1px solid rgba(197, 32, 33, 0.45) !important;
}

/**
 * Referans UI katmanÄ± â€” sadece renk deÄŸil: tipografi, boÅŸluk, kart, footer, formlar
 * theme-ref-full.css SONRASI yÃ¼klenir.
 */

/* Genel okunabilirlik */
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Ana iÃ§erik nefesi */
.custom-container {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 768px) {
  .custom-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* BaÅŸlÄ±klar â€” referans: spor / banner tipi (Roboto Condensed) */
.popular-slots-title-wrap .popular-slots-title,
.footer .navigation-list ul li.title,
.bigwin-title span:last-child {
  font-family: "Roboto Condensed", "Inter", system-ui, sans-serif !important;
  letter-spacing: 0.03em !important;
  font-weight: 700 !important;
}

/* Ana içerik — alt menü logosu üste taşınca kesilmesin */
.site-main,
#main-content {
  overflow: visible !important;
}

.site-main {
  min-height: 50vh;
  padding-bottom: 28px;
}

@media (min-width: 992px) {
  .site-main {
    padding-bottom: 20px;
  }
}

/* Orta logo taştığı için mobilde ek boşluk */
@media (max-width: 991.98px) {
  .site-main {
    padding-bottom: 34px;
  }
}

/* Anasayfa iskeleti */
.ref-home {
  padding-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .ref-home .home-hero {
    margin-top: 0 !important;
    padding-top: 0.35rem !important;
  }

  .ref-home .homepage-carousel-container {
    margin-top: 0 !important;
  }
}

.home-hero__row {
  flex-wrap: wrap !important;
}

.home-hero .home-bigwin {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* PopÃ¼ler oyun bloÄŸu â€” tek kutu, iÃ§inde iki bÃ¶lÃ¼m */
#popular-games-container.popular-games-container {
  background: rgba(6, 36, 79, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 16px 14px 22px !important;
  margin-bottom: 0 !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Oyun kartÄ± â€” Ã§erÃ§eve + gÃ¶lge (gÃ¶rÃ¼nÃ¼r derinlik) */
.popular-games-container .game-card.popular-game-card,
.popular-games-container .popular-game-card.game-card {
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  overflow: hidden !important;
}

.popular-games-container .game-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 32, 33, 0.25) !important;
}

.popular-games-container .popular-games-grid {
  gap: 18px 14px !important;
}

/* Yan paneller â€” son kazananlar */
.home-panels .block__container {
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  overflow: hidden !important;
  background: rgba(6, 36, 79, 0.35) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2) !important;
}

.home-panels .block__title-bar {
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: "Roboto Condensed", "Inter", sans-serif !important;
  letter-spacing: 0.04em !important;
}

.main-carousel .owl-nav button.owl-prev,
.main-carousel .owl-nav button.owl-next {
  color: #fff !important;
}

.bigwin-wrapper {
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  overflow: hidden;
  margin-bottom: 1rem !important;
}

/* Yenileme sırasında kısa süre boş kaldığında şeridin çöküp siyah görünmesini azaltır */
.ref-home .bigwin-slider {
  min-height: 132px;
}

/* Son Kazananlar — küçük yatay/kare kapak (referans) */
.ref-home .bigwin-track {
  gap: 12px !important;
  align-items: flex-start !important;
}
.ref-home .bigwin-card.bigwin-card--son .bigwin-thumb img {
  object-fit: contain !important;
  object-position: center center !important;
}
.ref-home .bigwin-card--son .bigwin-amount {
  color: var(--main-color) !important;
}
@media (max-width: 575.98px) {
  .ref-home .bigwin-card.bigwin-card--son {
    width: min(124px, 34vw) !important;
    max-width: 34vw !important;
  }
}

.jackpots-slide-container {
  border-radius: 20px !important;
  overflow: hidden;
}

.ref-home-banner-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  border-radius: 20px;
}

/* Footer â€” yapÄ± ve hover (renk + davranÄ±ÅŸ) */
.footer {
  background: linear-gradient(180deg, #0a162b 0%, rgb(3, 10, 24) 100%) !important;
  border-top: 1px solid rgba(197, 32, 33, 0.22) !important;
  padding-top: 2rem !important;
  padding-bottom: 1.75rem !important;
  margin-top: 0.5rem !important;
}

.footer .navigation-list ul li.title {
  border-bottom: 1px solid rgba(197, 32, 33, 0.35) !important;
  color: #fff !important;
}

.footer .navigation-list ul li a {
  color: rgba(255, 255, 255, 0.78) !important;
  border-radius: 4px;
}

.footer .navigation-list ul li a:hover {
  color: #fff !important;
  padding-left: 8px !important;
  background: rgba(197, 32, 33, 0.12);
}

.footer .social-container .footer-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer .social-container .social-wrapper a {
  background: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer .social-container .social-wrapper a:hover {
  background: rgba(197, 32, 33, 0.25) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Formlar */
.form-control,
.form-select {
  border-radius: 8px !important;
  background-color: rgba(10, 22, 43, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(197, 32, 33, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(197, 32, 33, 0.2) !important;
  outline: none !important;
}

/* Modallar */
.modal-content {
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: linear-gradient(180deg, rgb(6, 36, 79) 0%, #0a162b 100%) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55) !important;
}

.modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.modal-footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* Login modal — daha kibar / modern görünüm */
#login-modal {
  backdrop-filter: blur(2px);
}

#login-modal .modal-dialog {
  max-width: 470px !important;
  margin: 1rem auto !important;
}

#login-modal .modal-content {
  background: linear-gradient(180deg, #0e1e3b 0%, #0a162b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.52) !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
}

#login-modal .modal-content > .row {
  height: auto !important;
}

#login-modal .modal-content .col-12,
#login-modal .modal-content .col-md-7,
#login-modal .modal-content .col-md-8 {
  background: transparent !important;
  position: static !important;
}

#login-modal .modal-header {
  padding: 18px 20px 6px !important;
  border-bottom: 0 !important;
  justify-content: center;
}

#login-modal .modal-header .modal-title img {
  width: 132px !important;
  height: auto !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

#login-modal .btn-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  margin: 0 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  opacity: 0.9 !important;
}

#login-modal .modal-login {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 6px 20px 20px !important;
}

#login-modal .login-welcome {
  margin: 0 0 6px !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

#login-modal .login-account {
  margin: 0 0 18px !important;
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

#login-modal .login-account a {
  color: #ff4d55 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

#login-modal .modal-login .input-group {
  margin-bottom: 10px;
}

#login-modal .modal-login .input-group .login-input {
  height: 50px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: 12px 42px 12px 14px !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#login-modal .modal-login .input-group .login-input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

#login-modal .modal-login .input-group .login-input:focus {
  border-color: rgba(227, 30, 36, 0.85) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.22) !important;
}

#login-modal .modal-login .input-group .fa-eye-slash,
#login-modal .modal-login .input-group .fa-eye,
#login-modal .modal-login .input-group .switchbutton {
  color: rgba(255, 255, 255, 0.72) !important;
}

#login-modal .modal-login .login-btn {
  margin-top: 14px !important;
}

#login-modal #login-modal__submit {
  width: 100%;
  height: 48px;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  color: #fff !important;
  background: linear-gradient(180deg, #e31e24 0%, #b81820 100%) !important;
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.36) !important;
}

#login-modal .modal-login .login-btn a {
  display: inline-block;
  margin-top: 10px !important;
  float: none !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
}

@media (max-width: 576px) {
  #login-modal .modal-dialog {
    margin: 0.75rem 10px !important;
    max-width: calc(100% - 20px) !important;
  }
  #login-modal .modal-login {
    padding: 4px 14px 16px !important;
  }
  #login-modal .login-welcome {
    font-size: 22px !important;
  }
}

/* Flip panel (Ã¼st bilgi ÅŸeridi) */
#flippanel {
  border-radius: 0 0 10px 10px !important;
  padding: 10px 12px !important;
  background: rgba(6, 36, 79, 0.5) !important;
}

/* Bell panel — tam stiller dosya sonunda (.bellpanel-wrapper …) */

/* ========== Mobil alt sabit menu (referans: #0a162b, ortada logo şeridi üstüne taşır, ince kırmızı hat) ========== */
.ref-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: #0a162b;
  border-top: none;
  box-shadow: none;
  padding-bottom: env(safe-area-inset-bottom, 0);
  overflow: visible;
}

/* Orta kırmızı çizgi kapalı */
.ref-bottom-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: transparent;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.ref-bottom-bar .bottom_bar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 18px 6px 10px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: flex-end;
  list-style: none;
}

.ref-bottom-bar .bottom_bar li {
  flex: 1 1 0;
  min-width: 0;
  max-width: 20%;
}

.ref-bottom-bar .bottom_bar li.ref-bottom-bar__item--center {
  flex: 1.08 1 0;
  z-index: 2;
  position: relative;
}

/* Logo taşır; satır yüksekliği diğer ikonlarla aynı kalır */
.ref-bottom-bar .bottom_bar li.ref-bottom-bar__item--center > a {
  overflow: visible !important;
}

.ref-bottom-bar .bottom_bar a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  padding: 4px 2px 6px !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  box-sizing: border-box !important;
  white-space: nowrap;
}

.ref-bottom-bar .bottom_bar a.active {
  color: #ffffff !important;
  opacity: 1 !important;
  border-bottom-color: #ffffff !important;
}

.ref-bottom-bar__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 26px;
  margin-bottom: 5px;
  color: #ffffff;
}

.ref-bottom-bar__svg {
  width: 24px;
  height: 24px;
  display: block;
  color: inherit;
}

.ref-bottom-bar__ico--seven {
  font-family: "Roboto Condensed", "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

/* Orta Slot: ikon alanı diğer öğelerle aynı (28×26); PNG tam görünür, yukarı taşar, menü şeridi boyutu değişmez */
.ref-bottom-bar__ico--brand {
  width: 28px !important;
  height: 26px !important;
  min-width: 28px !important;
  min-height: 26px !important;
  margin-bottom: 5px !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 3;
  overflow: visible !important;
}

/* PNG nav dışında (body altında): ana içeriğin üzerine taşır; alt şerit boyutu aynı */
.ref-bottom-bar__brand-floating {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 28px);
  transform: translateX(-50%);
  width: min(86px, 22vw);
  height: min(108px, 22vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1052;
  line-height: 0;
  pointer-events: auto;
}

.ref-bottom-bar__brand-placeholder {
  display: block;
  width: 28px;
  height: 26px;
  visibility: hidden;
}

.ref-bottom-bar__brand-floating .ref-bottom-bar__brand-img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.ref-bottom-bar__brand-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.ref-bottom-bar__item--center .ref-bottom-bar__ico--brand .ref-bottom-bar__ico--seven {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px !important;
  height: 24px !important;
  margin: 0 !important;
  font-size: 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(197, 32, 33, 0.95) 0%, #8b1518 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ref-bottom-bar__label {
  display: block;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  font-family: "Inter", system-ui, sans-serif;
}

.ref-bottom-bar__fa {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
}

.ref-bottom-bar .bottom_bar li a::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.ref-bottom-bar .bottom_bar a:hover {
  opacity: 1 !important;
  color: #ffffff !important;
}

@media screen and (max-width: 991.98px) {
  .ref-bottom-bar .bottom_bar {
    display: flex !important;
  }
}

/* ========== Anasayfa oyun kartÄ± â€” referans (kalp, Oyna ÅŸeridi) ========== */
.popular-games-container .ref-game-card .img-wrapper {
  border-radius: 10px 10px 0 0;
}

.popular-games-container .ref-fav-heart {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.popular-games-container .ref-fav-heart__icon {
  color: #fff !important;
  font-size: 15px !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
  opacity: 0.95;
}

.popular-games-container .ref-game-card .ref-game-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 8px 8px 0 !important;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.98) 0%, #060d1a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.popular-games-container .ref-game-card .ref-game-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #f2f4f8 !important;
  line-height: 1.25 !important;
  margin: 0 0 4px 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.popular-games-container .ref-game-card .ref-game-provider {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.48) !important;
  margin: 0 0 8px 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.popular-games-container .ref-game-card .ref-oyna-btn {
  display: block !important;
  width: calc(100% + 16px) !important;
  margin: 0 -8px 0 !important;
  padding: 9px 10px !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(180deg, #e31e24 0%, #b81820 100%) !important;
  border: none !important;
  border-radius: 0 0 9px 9px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.popular-games-container .ref-game-card .ref-oyna-btn:hover {
  color: #fff !important;
  filter: brightness(1.06);
}

@media (max-width: 767.98px) {
  .popular-games-container .popular-games-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 4px 2px 14px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .popular-games-container .ref-game-card.game-card {
    flex: 0 0 auto !important;
    width: 148px !important;
    max-width: 44vw !important;
    min-width: 132px !important;
    margin: 0 !important;
  }
}

/* Bolum basligi + Tum Oyunlar (referans) */
.home-popular .ref-section-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  padding: 10px 12px !important;
  margin-bottom: 12px !important;
  background: rgba(10, 22, 43, 0.72) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(197, 32, 33, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

.home-popular .ref-section-head .ref-section-head__title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: #fff !important;
  font-family: "Roboto Condensed", "Inter", sans-serif !important;
}

.home-popular .ref-section-head .ref-section-head__title .ref-section-head__ico {
  font-size: 1rem;
  opacity: 0.95;
}

.home-popular .ref-section-head .ref-section-head__all {
  flex-shrink: 0;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.home-popular .ref-section-head .ref-section-head__all:hover {
  color: #fff !important;
  background: rgba(197, 32, 33, 0.2) !important;
  border-color: rgba(197, 32, 33, 0.45) !important;
}

/* Telegram CTA seridi (referans) */
.ref-telegram-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: rgba(6, 36, 79, 0.35);
  border: 1px solid rgba(227, 30, 36, 0.55);
  border-radius: 10px;
}

.ref-telegram-strip__text {
  flex: 1;
  min-width: 180px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.ref-telegram-strip__btn {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff !important;
  background: linear-gradient(180deg, #e31e24 0%, #b81820 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
}

.ref-telegram-strip__btn:hover {
  color: #fff !important;
  filter: brightness(1.08);
}

/* ========== Ana sayfa — Bell Link jackpot paneli ========== */
.bellpanel-wrapper {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  padding: 0 0.75rem;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.bellpanel {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  padding: 12px 14px;
  background: rgba(6, 36, 79, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-sizing: border-box;
}

.bellpanel-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 115px;
}

.bellpanel-logo img {
  max-width: 100%;
  max-height: 165px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center left;
}

.bellpanel-logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 700;
  color: #c41e3a;
  font-size: 14px;
  text-shadow: 1px 1px 0 #ffd700;
}

.bellpanel-logo-fallback .bell-link-text {
  font-family: cursive;
  color: #8b5cf6;
  font-size: 12px;
}

.bellpanel-bars {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-end;
}

.bellbar {
  height: 48px;
  min-height: 48px;
  background-color: #2b2b2b;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 16px;
  padding-right: 52px;
  border-radius: 10px;
  overflow: hidden;
}

.bellbar-grand  { width: 100%; background-image: url('/Content/img/jackpot/grand.png'); }
.bellbar-major  { width: 94%; background-image: url('/Content/img/jackpot/major.png'); }
.bellbar-minor { width: 78%; background-image: url('/Content/img/jackpot/minor.png'); }
.bellbar-mini   { width: 62%; background-image: url('/Content/img/jackpot/mini.png'); }

.bellbar-amount {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-right: 8px;
}

.bellbar-grand  .bellbar-amount { font-size: 19px; }
.bellbar-major  .bellbar-amount { font-size: 17px; }
.bellbar-minor .bellbar-amount,
.bellbar-mini   .bellbar-amount { font-size: 15px; }

.bellbar-currency {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

@media (max-width: 576px) {
  .bellpanel { padding: 10px 12px; gap: 8px; max-width: 100%; }
  .bellpanel-logo { min-width: 75px; max-width: 88px; }
  .bellpanel-logo img { max-height: 125px; }
  .bellpanel-bars { gap: 6px; }
  .bellbar { height: 42px; min-height: 42px; padding-right: 46px; padding-left: 12px; }
  .bellbar-grand .bellbar-amount { font-size: 16px; }
  .bellbar-major .bellbar-amount { font-size: 15px; }
  .bellbar-minor .bellbar-amount,
  .bellbar-mini .bellbar-amount { font-size: 13px; }
  .bellbar-currency { font-size: 10px; }
}

/* Home -> footer arası fazla boşluğu daralt */
@media (max-width: 991.98px) {
  .footer {
    margin-top: 0.2rem !important;
    padding-top: 1.1rem !important;
  }
  .footer-provider {
    margin-top: 14px !important;
    padding-top: 12px !important;
  }
  .footer__line-long {
    margin-bottom: 12px !important;
  }
}

/* Ana sayfa sabit Canli Destek ikonu */
.home-livechat-fab {
  position: fixed;
  right: 10px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.home-livechat-fab:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.home-livechat-fab__img {
  width: 150px;
  max-width: 38vw;
  height: auto;
  display: block;
}

.home-livechat-fab--fallback {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #8b0018;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .home-livechat-fab {
    right: 18px;
    bottom: 18px;
  }
  .home-livechat-fab__img {
    width: 160px;
    max-width: 180px;
  }
}

@media (max-width: 991.98px) {
  .home-livechat-fab {
    right: 6px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
  }
  .home-livechat-fab__img {
    width: 102px;
    max-width: 27vw;
  }
}

