/* ============================================================
   CaseRush — Global Dark Theme (Redesign)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:      #0b0e14;
  --bg-surface:   #111827;
  --bg-elevated:  #161d2e;
  --bg-card:      #111827;
  --border:       #1a2236;
  --border-glow:  #232f48;
  --text-primary: #e8edf5;
  --text-muted:   #6b7a99;
  --accent:       #e4ae39;
  --accent-hover: #f0c050;
  --danger:       #eb4b4b;
  --success:      #57ab5a;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.site-bg-image {
  position: absolute; top: 0; left: 0; right: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-bg-image img {
  width: 100%;
  display: block;
  object-fit: contain;
}

body > *:not(.site-bg-image):not(.win-overlay):not(.mob-overlay):not(.mob-drawer) { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,14,20,0.97);
  border-bottom: 1px solid var(--border);
  height: 72px;
  overflow: visible;
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.navbar-left {
  display: flex; align-items: center; gap: 0;
  flex: 1; min-width: 0;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem;
  color: var(--accent); letter-spacing: -0.3px;
  flex-shrink: 0;
}
.navbar-logo-img { height: 48px; width: auto; display: block; }
.logo-icon { font-size: 1.3rem; }

/* Online badge */
.online-badge {
  display: flex; align-items: center; gap: 6px;
  margin-left: 14px;
  flex-shrink: 0;
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3fb950;
  flex-shrink: 0;
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(63,185,80,.5); }
  50%      { opacity: .6; box-shadow: 0 0 0 5px rgba(63,185,80,0); }
}
.online-text {
  display: flex; flex-direction: column; line-height: 1;
}
.online-count {
  font-size: .85rem; font-weight: 800; color: #fff;
  letter-spacing: -.3px;
}
.online-label {
  font-size: .55rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 1px;
}

/* Menü */
.navbar-menu {
  display: flex; align-items: center; gap: 6px;
  margin-left: 12px;
}
.navbar-menu-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 4px;
  font-size: .88rem; font-weight: 600;
  color: #ffffff;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.navbar-menu-item:hover {
  color: #ffffff;
  background: rgba(255,255,255,.08);
}
.navbar-menu-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

/* Dil seçici */
/* Dil seçici */
.lang-picker {
  position: relative; margin-left: auto; flex-shrink: 0;
  z-index: 9999;
}
.lang-picker-toggle {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 4px; cursor: pointer;
  color: var(--text-primary); font-size: .86rem; font-weight: 500;
  transition: background .15s;
}
.lang-picker-toggle:hover { background: rgba(255,255,255,.06); }
.lang-picker-toggle img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }
.lang-picker-toggle svg { opacity: .4; margin-left: 2px; }

.lang-picker-menu {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 6px;
  background: #1e2438; border: 1px solid #2a3550; border-radius: 6px;
  padding: 5px; min-width: 155px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.lang-picker.open .lang-picker-menu { display: block; }
.lang-picker.open .lang-picker-toggle svg { transform: rotate(180deg); }

.lang-picker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: 4px; cursor: pointer;
  color: #8a95ad; font-size: .86rem; font-weight: 500;
  transition: background .12s, color .12s;
}
.lang-picker-item:hover { background: rgba(255,255,255,.07); color: #e8edf5; }
.lang-picker-item.selected { color: #e8edf5; font-weight: 600; }
.lang-picker-item img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }

/* ── SUBHEADER BAR ── */
.subheader-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 100;
}
.subheader-track {
  position: relative;
  width: 100%;
}
.subheader-slide {
  display: none;
  width: 100%;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  animation: subheaderFadeIn .5s ease;
}
.subheader-slide.active { display: flex; align-items: center; justify-content: center; }

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

.subheader-fg {
  max-height: 70px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}
.subheader-dots {
  display: none;
}
.subheader-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.subheader-dot.active { background: #fff; transform: scale(1.3); }
.subheader-dot:hover { background: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .subheader-slide { height: 60px; }
  .subheader-fg { max-height: 50px; max-width: 95%; }
}
@media (max-width: 480px) {
  .subheader-slide { height: 50px; }
  .subheader-fg { max-height: 40px; }
}

/* ── CASE PAGE ── */
.case-page { padding: 60px 0 64px; }

/* Hero başlık */
.hero-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-shadow: none;
}

/* Case header */
.case-header {
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 24px 28px; margin-bottom: 24px;
}
.case-img-box { width: 130px; height: 96px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.case-img-box img { width: 130px; height: 96px; object-fit: contain; }
.case-img-fallback { font-size: 64px; }
.case-img-box.no-img .case-img-fallback { display: block; }
.case-img-box.no-img img { display: none; }
.case-header-info h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; }
.case-desc { color: var(--text-muted); margin-top: 6px; font-size: .9rem; }
.case-price-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(228,174,57,.12); border: 1px solid var(--accent);
  color: var(--accent); border-radius: 4px; padding: 3px 12px;
  font-weight: 700; font-size: .95rem;
}

/* ── OPEN CONTROLS ── */
.open-controls {
  display: flex; align-items: center;
  margin: 18px 0 8px;
  background: var(--bg-elevated); border-radius: 6px;
  padding: 10px 12px;
  gap: 12px;
}

.oc-left, .oc-right {
  flex: 1; display: flex; align-items: center;
}
.oc-left { justify-content: flex-start; }
.oc-right { justify-content: flex-end; }

.oc-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-base); border-radius: 4px;
  padding: 10px 20px;
}

.oc-hak {
  font-size: 1.3rem; font-weight: 800; color: var(--text-primary);
}
.oc-hak-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}

.oc-center { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.btn-open {
  position: relative;
  padding: 2px 60px 0;
  height: 52px;
  background: rgba(16, 85, 40, 0.45);
  border: 2px solid #2ecc50;
  border-radius: 6px;
  color: #2ecc50;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, box-shadow .2s, transform .15s;
  min-width: 280px;
  box-sizing: border-box;
  line-height: 1;
}
.btn-open:hover:not(:disabled) {
  background: rgba(16, 85, 40, 0.65);
  box-shadow: 0 0 20px rgba(46, 204, 80, 0.2);
  transform: translateY(-1px);
}
.btn-open:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-retry {
  background: url('../../assets/img/button.svg') no-repeat center / contain;
  background-color: transparent;
  filter: hue-rotate(80deg) saturate(1.2);
}
.btn-goto {
  background: rgba(16, 60, 120, 0.4);
  border: 2px solid #3b82f6;
  color: #3b82f6;
  text-decoration: none;
}
.btn-goto:hover:not(:disabled) {
  background: rgba(16, 60, 120, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.rights-timer { display: none; }
.rights-timer-label {}
.rights-timer-value {}
.btn-spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(0,0,0,.2);
  border-top-color: #111; border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.oc-sound-btn {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-base); border: none; border-radius: 4px;
  color: var(--text-primary); cursor: pointer;
  padding: 10px 14px;
  transition: background .2s, color .2s;
}
.oc-sound-btn:hover { background: var(--border); }
.oc-sound-btn.muted { color: var(--text-muted); }
.open-error { color: var(--danger); font-size: .88rem; position: absolute; bottom: -24px; left: 0; right: 0; text-align: center; }
.oc-center { position: relative; }

/* ── SON KAZANANLAR (iGaming) ── */
/* ── WINNERS SECTION ── */
.winners-section {
  margin-top: 48px;
  position: relative;
}
.wf-title {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; font-weight: 400; text-transform: uppercase;
  letter-spacing: 3px; color: #fff;
}
.wf-title::before {
  content: '';
  width: 4px; height: 20px;
  background: var(--accent);
  border-radius: 2px;
}
.wf-title-icon { width: 22px; height: 22px; object-fit: contain; }

.winners-feed {
  display: flex;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.winners-feed::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--bg-base), transparent);
  pointer-events: none;
  z-index: 2;
}

.wf-row {
  flex: 1 1 0;
  min-width: 110px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 8px 8px;
  display: flex; flex-direction: column; align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease;
  animation: wfDropIn .5s cubic-bezier(.22,.68,.31,1.1) both;
}
.wf-row:hover { border-color: var(--border-glow); }

@keyframes wfDropIn {
  from { opacity: 0; transform: translateX(-20px) scale(.92); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.wf-row::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--prize-color, var(--accent));
}

.wf-prize {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; width: 100%;
  position: relative;
}
.wf-prize-glow { display: none; }
.wf-prize-img {
  width: 72px; height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.wf-prize-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .82rem; font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .7px;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  width: 100%;
}

.wf-user {
  display: flex; align-items: center; gap: 5px;
}
.wf-flag {
  width: 14px; height: 10px;
  object-fit: cover;
  border-radius: 1px;
  opacity: .8;
}

.wf-time {
  color: var(--text-muted);
  font-size: .58rem; font-weight: 500;
  opacity: .5;
  white-space: nowrap;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 11px 32px;
  background: rgba(16, 85, 40, 0.45);
  border: 2px solid #2ecc50;
  border-radius: 6px;
  color: #2ecc50;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-primary:hover {
  background: rgba(16, 85, 40, 0.65);
  box-shadow: 0 0 16px rgba(46, 204, 80, 0.2);
  transform: translateY(-1px);
}
.btn-secondary {
  padding: 11px 32px;
  background: rgba(16, 60, 120, 0.4);
  border: 2px solid #3b82f6;
  border-radius: 6px;
  color: #3b82f6;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-secondary:hover {
  background: rgba(16, 60, 120, 0.6);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

/* ── LIVE FEED ── */
.live-feed-section { margin-bottom: 64px; }
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.feed-ticker { display: flex; flex-wrap: wrap; gap: 6px; }
.feed-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 7px 10px; min-width: 180px;
  border-left: 3px solid var(--border); transition: opacity .4s;
}
.feed-item.feed-new { animation: feedSlideIn .4s ease; }
@keyframes feedSlideIn { from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)} }
.feed-item img { width: 36px; height: 26px; object-fit: contain; }
.feed-item-name { font-size: .77rem; font-weight: 600; display: block; }
.feed-item-sub  { font-size: .68rem; color: var(--text-muted); display: block; }
.feed-case      { font-size: .65rem; color: var(--text-muted); display: block; }

/* ── BANNERLAR ── */
.banners-row {
  display: flex; gap: 16px;
  width: 100%; margin: 24px auto 0; padding: 0;
}
.banner-card {
  flex: 1; min-height: 180px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.banner-overlay {
  width: 100%; padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.banner-text {
  font-size: 1.15rem; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  line-height: 1.3; margin: 0;
}
.banner-desc {
  font-size: .85rem; font-weight: 400;
  color: rgba(255,255,255,.8);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  line-height: 1.4; margin: 0;
}
.banner-btn {
  display: inline-block;
  padding: 8px 22px;
  background: var(--accent); color: #111;
  font-size: .85rem; font-weight: 700;
  border-radius: 4px;
  transition: background .2s;
}
.banner-card:hover .banner-btn {
  background: var(--accent-hover);
}
/* ── SIDE BANNERS (Skyscraper) ── */
.side-ad {
  position: absolute;
  top: 0;
  z-index: 90;
  text-decoration: none;
  transition: opacity .2s;
}
.side-ad:hover { opacity: .85; }
.side-ad img {
  display: block;
  max-width: 160px;
  height: auto;
}
.side-ad-left  { right: calc(100% + 12px); }
.side-ad-right { left: calc(100% + 12px); }
@media (max-width: 1560px) {
  .side-ad { display: none !important; }
}

/* ── ITEMS IN CASE (Pro Grid) ── */
.items-in-case {
  margin-top: 48px;
}
.section-title {
  font-size: 1.1rem; font-weight: 800; letter-spacing: .5px;
  color: #fff; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  width: 3px; height: 20px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), #d4a017);
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.item-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.item-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .04;
  pointer-events: none; z-index: 0;
  background:
    repeating-linear-gradient(
      45deg, transparent, transparent 6px,
      rgba(255,255,255,.5) 6px, rgba(255,255,255,.5) 7px
    ),
    repeating-linear-gradient(
      -45deg, transparent, transparent 6px,
      rgba(255,255,255,.5) 6px, rgba(255,255,255,.5) 7px
    ),
    repeating-linear-gradient(
      180deg, transparent, transparent 3px,
      rgba(255,255,255,.15) 3px, rgba(255,255,255,.15) 4px
    );
}
.item-card-inner { position: relative; z-index: 1; }
.item-card:hover {
  transform: translateY(-3px);
  border-color: var(--rarity-color, var(--border-glow));
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.item-card-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 12px 14px; height: 100%;
}
.item-rarity-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; border-radius: 0 0 6px 6px;
}
.item-img-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 100px; margin-bottom: 10px;
}
.item-img-wrap img {
  max-width: 120px; max-height: 90px; object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
  transition: transform .2s;
}
.item-card:hover .item-img-wrap img { transform: scale(1.05); }
.item-info {
  text-align: center; width: 100%;
}
.item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; font-weight: 400; color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  line-height: 1.2; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.item-sub {
  font-size: .75rem; color: var(--text-muted); font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.item-prob {
  font-size: .7rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: .3px;
}

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; color: var(--text-muted); font-size: .82rem; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: 8px; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY + DRAWER ── */
.mob-overlay {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.mob-overlay.open { opacity: 1; visibility: visible; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 80vw); z-index: 300;
  background: #0d1018; border-left: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  visibility: hidden; opacity: 0;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s, opacity .15s;
}
.mob-drawer.open { transform: translateX(0); visibility: visible; opacity: 1; }

.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-drawer-head .navbar-logo { font-size: 1rem; }
.mob-drawer-head .navbar-logo-img { height: 36px; }
.mob-drawer-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  padding: 4px 8px; transition: color .15s;
}
.mob-drawer-close:hover { color: #fff; }

.mob-drawer-online {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .82rem;
}
.mob-drawer-online .online-dot { width: 7px; height: 7px; }
.mob-drawer-online .online-count { font-weight: 700; color: #fff; }
.mob-drawer-online .online-label {
  color: var(--text-muted); text-transform: uppercase;
  font-size: .6rem; font-weight: 600; letter-spacing: .5px;
}

.mob-drawer-nav {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.mob-drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; color: rgba(255,255,255,.8);
  font-size: .9rem; font-weight: 500;
  transition: background .12s, color .12s;
}
.mob-drawer-link:hover, .mob-drawer-link:active { background: rgba(255,255,255,.05); color: #fff; }
.mob-drawer-icon { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; opacity: .7; }

.mob-drawer-langs {
  display: flex; flex-direction: column;
  padding: 8px 0; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mob-drawer-lang {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; color: rgba(255,255,255,.55);
  font-size: .85rem; font-weight: 500;
  transition: background .12s, color .12s;
}
.mob-drawer-lang:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.mob-drawer-lang.active { color: #fff; font-weight: 600; }
.mob-drawer-lang img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }

/* ── RESPONSIVE ── */
@media(min-width:769px){
  .hamburger { display: none !important; }
  .mob-drawer { display: none !important; }
  .mob-overlay { display: none !important; }
}
@media(max-width:768px){
  .hamburger { display: flex; }
  .navbar-menu { display: none; }
  .lang-picker-toggle { display: none; }
  .navbar { height: 60px; }
  .navbar-logo-img { height: 36px; }
  .online-badge { margin-left: 10px; }
  .online-count { font-size: .75rem; }
  .online-label { font-size: .5rem; }
}
@media(max-width:640px){
  .case-header { flex-direction: column; text-align: center; }

  .open-controls {
    flex-direction: column; gap: 8px; padding: 10px;
  }
  .oc-left, .oc-right { justify-content: center; }
  .oc-center { width: 100%; }
  .btn-open, .btn-goto {
    padding: 12px 20px; min-width: 0; width: 100%;
    min-height: 46px; font-size: 1rem;
  }
  .btn-retry { background-size: 100% 100%; }
  .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }
  .item-card-inner { padding: 12px 8px 10px; }
  .item-img-wrap { height: 70px; margin-bottom: 8px; }
  .item-img-wrap img { max-width: 90px; max-height: 65px; }
  .oc-box { padding: 8px 14px; }
  .oc-hak { font-size: 1.1rem; }

  .banners-row { flex-direction: column; }
  .banner-card { min-height: 140px; }
  .banner-text { font-size: 1rem; }
  .banner-desc { font-size: .75rem; }

  /* Mobilde tüm içeriğe yatay padding */
  .case-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Slider tam genişlik kalsın */
  .case-page .slider-section {
    margin-left: -16px;
    margin-right: -16px;
  }
}
