/**
 * refinements.css — Iveria Slot 777 Theme Polish
 *
 * Mevcut emerald-clone.css ve header.css'in UZERINE yuklenir.
 * Hicbir mevcut stili silmez, sadece olgunlaştırır.
 */

/* =================================================
   0) TIPOGRAFI — Inter (govde) + Manrope (basliklar)
   Rajdhani'yi koru ama UI metinlerinde Inter one alir.
   Turkce karakter kalitesi cok daha iyi.
   ================================================= */
body,
.surface,
button,
input,
select,
textarea,
.popular-section-label,
.tb-quick,
.icon-link,
.cat-pill,
.category-pill,
.btn,
.sign-in,
.register,
p, span, a, li, label, td, th {
  font-family: "Inter", "Rajdhani", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.match-head-copy h3 {
  font-family: "Manrope", "Inter", "Rajdhani", sans-serif;
  letter-spacing: -0.005em;
}

/* Existing Rajdhani anchored elements — keep brand vibe */
.news-ticker,
.news-marquee,
.lw-bar-label,
.lw-bar-item {
  font-family: "Rajdhani", "Inter", sans-serif;
}

/* =================================================
   1) GLASS HEADER — saydam blur efekti
   ================================================= */
.topbar,
.header,
header.topbar,
header.header,
.site-header {
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

/* =================================================
   2) GAME CARD HOVER REFINE
   ================================================= */
.game-card {
  position: relative;
  border: 1px solid transparent !important;
  transition:
    transform 0.28s cubic-bezier(.22,1,.36,1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.game-card img {
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.42) !important;
  box-shadow: 0 18px 38px -16px rgba(212, 175, 55, 0.32);
}

.game-card:hover img {
  transform: scale(1.045);
}

/* Play overlay — sadece hover'da, opacity 0->1 */
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.0) 30%, rgba(11,11,11,.55) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.game-card:hover::before {
  opacity: 1;
}

.game-card .game-card-play,
.game-card a > .game-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2CB57 0%, #D4AF37 50%, #B8860B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B0B0B;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(.22,1,.36,1);
  z-index: 3;
  box-shadow: 0 12px 28px -8px rgba(242, 203, 87, 0.55);
  pointer-events: none;
}
.game-card:hover .game-card-play {
  opacity: 1;
  transform: scale(1);
}

/* =================================================
   3) LIVE WINNERS BAR — robust marquee (.lw-bar*)
   Iki paralel track yan yana, transform ile -100% kayar.
   Her track tam set icerir, seamless loop.
   ================================================= */
.lw-bar {
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg,
    rgba(212, 175, 55, 0.07) 0%,
    transparent 30%,
    transparent 70%,
    rgba(212, 175, 55, 0.07) 100%);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: 14px;
  height: 48px;
  margin: 14px 0 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.lw-bar-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #D4AF37;
  white-space: nowrap;
  border-right: 1px solid rgba(212, 175, 55, 0.18);
}

.lw-bar-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: lwBarPulse 1.8s infinite;
  flex: 0 0 auto;
}

@keyframes lwBarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.lw-bar-window {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.lw-bar-track {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 38px;
  padding-left: 24px;
  padding-right: 24px;
  white-space: nowrap;
  animation: lwBarScroll 55s linear infinite;
  will-change: transform;
}

@keyframes lwBarScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.lw-bar-item {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #BFBFBF;
  white-space: nowrap;
  line-height: 1;
}

.lw-bar-item i {
  display: inline-block;
  color: #D4AF37;
  font-size: 11px;
  margin-right: 4px;
  flex: 0 0 auto;
}

.lw-bar-item b {
  color: #FFFFFF;
  font-weight: 600;
}

.lw-bar-amt {
  font-weight: 700;
  background: linear-gradient(135deg, #F2CB57, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lw-bar:hover .lw-bar-track {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .lw-bar { height: 42px; margin: 10px 0 14px; }
  .lw-bar-label { font-size: 10px; letter-spacing: 1.1px; padding: 0 12px; }
  .lw-bar-item { font-size: 12px; }
  .lw-bar-track { gap: 28px; padding-left: 16px; padding-right: 16px; animation-duration: 45s; }
}

/* Eski .live-wins yapisini gizle (artik .lw-bar kullaniliyor) */
.live-wins { display: none !important; }

/* =================================================
   4) TRUST SIGNALS STRIP
   ================================================= */
.trust-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  padding: 16px 8px;
  margin: 14px 0 18px;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.55), rgba(14, 16, 20, 0.55));
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 200px at 50% -50%, rgba(212, 175, 55, 0.10), transparent 70%);
  pointer-events: none;
}

.trust-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 14px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.trust-ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 203, 87, 0.18), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: #F2CB57;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.25;
}

.trust-text strong {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F4ECD0;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-text small {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #8E866F;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-divider {
  flex: 0 0 auto;
  width: 1px;
  background: linear-gradient(180deg, transparent 10%, rgba(212, 175, 55, 0.28) 50%, transparent 90%);
  align-self: stretch;
  margin: 0 4px;
}

@media (max-width: 900px) {
  .trust-strip {
    flex-wrap: wrap;
    padding: 12px 8px;
    gap: 6px;
    justify-content: center;
  }
  .trust-item {
    flex: 0 0 calc(50% - 16px);
    padding: 8px 10px;
  }
  .trust-divider {
    display: none;
  }
  .trust-ico {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .trust-text strong { font-size: 13px; }
  .trust-text small  { font-size: 10.5px; }
}

@media (max-width: 480px) {
  .trust-item { flex: 0 0 calc(50% - 8px); }
}

/* =================================================
   5) PROMO CARD HOVER REFINE — gradient border + lift
   ================================================= */
.promo-card,
.discover-banner {
  position: relative;
  transition:
    transform 0.28s cubic-bezier(.22,1,.36,1),
    box-shadow 0.28s ease;
}

.promo-card::after,
.discover-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.0) 0%,
    rgba(242, 203, 87, 0.55) 35%,
    rgba(212, 175, 55, 0.0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.promo-card:hover,
.discover-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(212, 175, 55, 0.32);
}

.promo-card:hover::after,
.discover-banner:hover::after {
  opacity: 1;
}

/* =================================================
   5b) PROMO SEPARATOR (zumrut tasi) — buyuk-orta
   ================================================= */
.promo-separator {
  width: 210px !important;
  height: 210px !important;
  flex: 0 0 210px !important;
  filter: drop-shadow(0 11px 24px rgba(212, 175, 55, 0.42));
  opacity: 1;
}
.promo-separator img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .promo-separator {
    width: 175px !important;
    height: 175px !important;
    flex: 0 0 175px !important;
  }
}
@media (max-width: 1280px) {
  .promo-separator {
    width: 155px !important;
    height: 155px !important;
    flex: 0 0 155px !important;
  }
}
@media (max-width: 1100px) {
  .promo-separator {
    width: 125px !important;
    height: 125px !important;
    flex: 0 0 125px !important;
  }
}
@media (max-width: 900px) {
  .promo-group {
    position: relative !important;
  }
  .promo-separator {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: clamp(90px, 26vw, 130px) !important;
    height: clamp(90px, 26vw, 130px) !important;
    flex: none !important;
    margin: 0 !important;
    pointer-events: none;
    z-index: 5;
  }
}

/* =================================================
   6) MOBILE STICKY BOTTOM NAV
   Sadece <=900px gozukur. Glass blur + gold accent.
   ================================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
  align-items: stretch;
  justify-content: space-around;
  padding: 6px 8px;
  border-radius: 18px;
  background: linear-gradient(180deg,
    rgba(14, 16, 20, 0.92),
    rgba(8, 9, 11, 0.94));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 18px 38px -8px rgba(0, 0, 0, 0.7),
    0 -1px 0 rgba(255, 255, 255, 0.04) inset;
  pointer-events: auto;
}

.mbn-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px 6px;
  color: #BFBFBF;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  position: relative;
}

.mbn-item i {
  font-size: 18px;
  color: #D4AF37;
  transition: transform 0.18s ease;
}

.mbn-item span {
  white-space: nowrap;
}

.mbn-item:hover,
.mbn-item:active {
  color: #F4ECD0;
  background: rgba(212, 175, 55, 0.08);
}

.mbn-item:hover i {
  transform: translateY(-1px);
}

.mbn-item.active {
  color: #F2CB57;
}
.mbn-item.active::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2CB57, #D4AF37);
}

/* CTA item — yukseltilmis altin daire (Yatir/Kayit) */
.mbn-cta {
  flex: 0 0 auto;
  padding-top: 0;
  margin: -18px 6px 0;
  align-self: flex-start;
}
.mbn-cta-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F2CB57 0%, #D4AF37 50%, #B8860B 100%);
  color: #0B0B0B;
  font-size: 20px;
  margin-bottom: 4px;
  box-shadow:
    0 10px 24px -6px rgba(242, 203, 87, 0.55),
    0 0 0 4px rgba(11, 11, 11, 0.85);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.mbn-cta-circle i {
  color: #0B0B0B;
  font-size: 18px;
}
.mbn-cta:hover .mbn-cta-circle,
.mbn-cta:active .mbn-cta-circle {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 30px -6px rgba(242, 203, 87, 0.7),
    0 0 0 4px rgba(11, 11, 11, 0.9);
}
.mbn-cta {
  color: #F4ECD0;
}

/* Mobil aktif */
@media (max-width: 900px) {
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 90px;
  }
}

/* iPhone notch alani */
@supports (padding: max(0px)) {
  @media (max-width: 900px) {
    .mobile-bottom-nav {
      bottom: max(12px, env(safe-area-inset-bottom));
    }
    body {
      padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* =================================================
   7) HORIZONTAL CAROUSEL — Netflix-style game rows
   ================================================= */
.game-row-block {
  position: relative;
}

.game-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.game-row-head .popular-section-label {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.game-row-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.grc-all {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #D4AF37;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
  margin-right: 6px;
}
.grc-all:hover { background: rgba(212, 175, 55, 0.10); color: #F2CB57; }
.grc-all i { font-size: 9px; }

.grc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(20, 23, 28, 0.7);
  color: #D4AF37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
  padding: 0;
}
.grc-arrow:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.45);
  color: #F2CB57;
  transform: translateY(-1px);
}
.grc-arrow.disabled {
  opacity: 0.32;
  pointer-events: none;
}

/* Override existing grid → horizontal scroll */
.game-row-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  grid-template-columns: none !important;
  grid-auto-columns: unset !important;
  grid-template-rows: none !important;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 8px;
  margin: 0 -2px;
  scroll-behavior: smooth;
}
.game-row-scroll::-webkit-scrollbar { display: none; }

.game-row-scroll > .game-card {
  flex: 0 0 calc((100% - 14px * 5) / 6);
  scroll-snap-align: start;
  min-width: 0;
  width: auto;
  margin: 0 !important;
}

@media (max-width: 1280px) {
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 14px * 4) / 5);
  }
}
@media (max-width: 1100px) {
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 14px * 3) / 4);
  }
}
@media (max-width: 900px) {
  .game-row-scroll {
    gap: 12px !important;
    padding: 4px 2px 6px;
  }
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 12px * 2.5) / 2.5);
  }
  /* Mobilde oklari gizle - swipe yeterli */
  .game-row-controls .grc-arrow { display: none; }
}
@media (max-width: 480px) {
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 10px * 1.5) / 2.2);
  }
}

/* =================================================
   8) COMPACT SCROLL-SHRINK HEADER
   body.is-scrolled aktif olunca ticker kuculur, logo kucuk
   ================================================= */
body .news-ticker,
body .news-marquee,
body .topbar-row,
body .main-icon-nav {
  transition:
    height 0.28s ease,
    max-height 0.28s ease,
    padding 0.28s ease,
    opacity 0.22s ease,
    transform 0.28s ease;
}

body .topbar-row .brand img,
body .topbar-row .footer-brand img {
  transition: max-height 0.28s ease, height 0.28s ease;
}

body .main-icon-nav .icon-link {
  transition: font-size 0.22s ease, padding 0.22s ease;
}

body .main-icon-nav .icon-link i {
  transition: font-size 0.22s ease;
}

body.is-scrolled .news-ticker {
  max-height: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  opacity: 0;
}

body.is-scrolled .topbar-row {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

body.is-scrolled .topbar-row .brand img {
  max-height: 30px !important;
  height: 30px !important;
}

body.is-scrolled .main-icon-nav {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

body.is-scrolled .main-icon-nav .icon-link {
  font-size: 11px !important;
  padding: 4px 8px !important;
}

body.is-scrolled .main-icon-nav .icon-link i {
  font-size: 16px !important;
}

@media (max-width: 640px) {
  body.is-scrolled .topbar-row .brand img {
    max-height: 26px !important;
    height: 26px !important;
  }
}

/* =================================================
   9) HERO ROW — Hero (60-65%) + Side Cards (35-40%)
   ================================================= */
.hero-row {
  margin-bottom: 14px;
}

.hero-side {
  display: none;
}

@media (min-width: 1100px) {
  .hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 14px;
    align-items: stretch;
  }
  .hero-row > .hero {
    margin-bottom: 0 !important;
    height: 100%;
  }
  .hero-row > .hero .hero-slider {
    height: 100%;
  }
  .hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
    min-height: 0;
  }
}

.hero-side-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s ease, border-color 0.28s ease;
  isolation: isolate;
}

.hero-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 50%,
    rgba(242, 203, 87, 0.18) 0%,
    rgba(212, 175, 55, 0.05) 40%,
    transparent 80%);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.hero-side-card.hsc-1 {
  background: linear-gradient(135deg, rgba(35, 24, 8, 0.9), rgba(15, 12, 8, 0.95));
}
.hero-side-card.hsc-2 {
  background: linear-gradient(135deg, rgba(28, 22, 12, 0.92), rgba(12, 10, 8, 0.95));
}
.hero-side-card.hsc-3 {
  background: linear-gradient(135deg, rgba(40, 28, 10, 0.9), rgba(15, 12, 8, 0.95));
}

.hero-side-card .hsc-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.hero-side-card .hsc-kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #D4AF37;
}

.hero-side-card .hsc-title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #F4ECD0;
  line-height: 1.2;
}

.hero-side-card .hsc-cta {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #BFBFBF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color 0.18s ease;
}

.hero-side-card .hsc-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 203, 87, 0.25), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.32);
  color: #F2CB57;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-side-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 14px 32px -14px rgba(212, 175, 55, 0.32);
}

.hero-side-card:hover .hsc-cta {
  color: #F2CB57;
}

@media (max-width: 1099px) and (min-width: 700px) {
  /* Tablet: side cards alta yatay 3 sutun */
  .hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    margin-top: 12px;
  }
  .hero-side-card {
    padding: 14px 16px;
  }
  .hero-side-card .hsc-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .hero-side-card .hsc-title {
    font-size: 15px;
  }
}

/* =================================================
   10) BENTO PROMO GRID — asymmetric 4-card layout
   2x2 simetrigi yerine 1.5fr/1fr alternatif diyagonal
   ================================================= */
@media (min-width: 900px) {
  .promo-cards--bento .promo-cards-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
  .promo-cards--bento .promo-group {
    display: grid !important;
    gap: 14px !important;
  }
  .promo-cards--bento .promo-group:first-child {
    grid-template-columns: 1.5fr 1fr !important;
  }
  .promo-cards--bento .promo-group:last-child {
    grid-template-columns: 1fr 1.5fr !important;
  }
  .promo-cards--bento .promo-separator {
    display: none !important;
  }
  .promo-cards--bento .promo-card {
    aspect-ratio: 16/6 !important;
  }
}

/* =================================================
   11) STICKY LOBBY SIDEBAR — fixed left vertical nav
   Sadece >=1200px ekranda. Body padding-left kayar.
   Tema-uyumlu: gold gradient header, kategorize bolumler,
   destek butonlari altta.
   ================================================= */
.lobby-sidebar {
  display: none;
}

@media (min-width: 1200px) {
  /* Header'daki icon-nav gereksiz cunku ayni linkler sidebar'da */
  .main-icon-nav {
    display: none !important;
  }

  .lobby-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 12px 18px;
    /* Tema ile uyumlu: body aurora ile esit gold radial + dark layer */
    background:
      radial-gradient(380px 280px at 0% 8%, rgba(212, 175, 55, 0.10), transparent 65%),
      radial-gradient(260px 200px at 100% 100%, rgba(140, 116, 32, 0.08), transparent 70%),
      linear-gradient(180deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.93) 100%);
    /* Sert border yerine soft gold gradient seperator */
    border-right: 0;
    box-shadow:
      1px 0 0 0 rgba(212, 175, 55, 0.10),
      2px 0 24px -12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: top 0.28s ease;
  }

  /* Top fade kaldirildi — header sidebar uzerini kapsiyor zaten */
  /* Soft right edge — gradient fade gold accent */
  .lobby-sidebar::after {
    content: "";
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(212, 175, 55, 0.32) 50%,
      transparent 100%);
    pointer-events: none;
  }

  /* Sidebar her zaman top:0 */
  .lobby-sidebar::-webkit-scrollbar { width: 3px; }
  .lobby-sidebar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.35);
    border-radius: 2px;
  }
  .lobby-sidebar::-webkit-scrollbar-track { background: transparent; }

  /* Section label — sade kapsule + altin parlamali yan cizgisi */
  .ls-section-label {
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.8);
    padding: 18px 16px 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ls-section-label::before {
    content: "";
    flex: 0 0 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4));
  }
  .ls-section-label::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), transparent);
  }
  .ls-section-label > span {
    flex: 0 0 auto;
  }
  .lobby-sidebar > .ls-section-label:first-child {
    padding-top: 6px;
  }

  .ls-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 4px;
    margin-bottom: 4px;
  }

  /* Nav link — altin ikon kapsulu + hover slide */
  .ls-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 10px;
    color: #C9BFA5;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: none;
    transition:
      background 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
    position: relative;
    overflow: hidden;
  }

  /* Ikon kapsulu — sabit boyut, dark fill, altin glow hover */
  .ls-link i {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 23, 28, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.16);
    color: #D4AF37;
    font-size: 13px;
    transition:
      background 0.22s ease,
      border-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
  }

  .ls-link span {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ls-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 3px;
    height: 60%;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(180deg, #F2CB57, #B8860B);
    box-shadow: 0 0 10px rgba(242, 203, 87, 0.6);
    transition: transform 0.22s cubic-bezier(.22,1,.36,1);
  }

  .ls-link:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.10), rgba(212, 175, 55, 0.02) 80%);
    color: #F4ECD0;
  }
  .ls-link:hover i {
    background: linear-gradient(135deg, rgba(242, 203, 87, 0.18), rgba(212, 175, 55, 0.04));
    border-color: rgba(212, 175, 55, 0.45);
    color: #F2CB57;
    transform: scale(1.05);
  }

  .ls-link.active {
    background: linear-gradient(90deg, rgba(242, 203, 87, 0.16), rgba(212, 175, 55, 0.0) 80%);
    color: #F2CB57;
    font-weight: 600;
  }
  .ls-link.active i {
    background: linear-gradient(135deg, #F2CB57, #B8860B);
    border-color: rgba(242, 203, 87, 0.6);
    color: #0B0B0B;
    box-shadow: 0 4px 12px -4px rgba(242, 203, 87, 0.5);
  }
  .ls-link.active::before {
    transform: translate(0%, -50%);
  }

  /* CTA Para Yatır */
  .ls-link-cta {
    margin: 8px 4px 0 !important;
    background: linear-gradient(135deg, #F2CB57 0%, #D4AF37 50%, #B8860B 100%) !important;
    color: #0B0B0B !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px -8px rgba(242, 203, 87, 0.55);
    justify-content: center;
    text-align: center;
    letter-spacing: 0.4px;
  }
  .ls-link-cta i {
    background: rgba(11, 11, 11, 0.18) !important;
    border-color: rgba(11, 11, 11, 0.25) !important;
    color: #0B0B0B !important;
  }
  .ls-link-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #8C6A1A 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(242, 203, 87, 0.75);
  }
  .ls-link-cta:hover i {
    transform: scale(1.0);
  }
  .ls-link-cta::before {
    display: none;
  }

  /* Spacer flex grow */
  .ls-spacer {
    flex: 1 1 auto;
    min-height: 12px;
  }

  /* Support buttons row */
  .ls-support {
    display: flex;
    gap: 6px;
    padding: 4px 8px 0;
  }
  .ls-support-btn {
    flex: 1 1 0;
    height: 40px;
    border-radius: 10px;
    background: rgba(20, 23, 28, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s cubic-bezier(.22,1,.36,1);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  .ls-support-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% 100%, rgba(242, 203, 87, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.22s ease;
  }
  .ls-support-btn:hover {
    background: linear-gradient(180deg, rgba(20, 23, 28, 0.7), rgba(28, 22, 12, 0.85));
    border-color: rgba(212, 175, 55, 0.55);
    color: #F2CB57;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -8px rgba(242, 203, 87, 0.35);
  }
  .ls-support-btn:hover::before {
    opacity: 1;
  }
  .ls-support-btn i {
    position: relative;
    z-index: 1;
  }

  /* Body-level padding — sidebar genisligine ESIT (20px gap kaldirildi) */
  body {
    padding-left: 220px;
  }

  /* Header sag kolonda kalsin, sidebar'a YAPISIK */
  body > .news-ticker,
  body > .topbar-row,
  body > header.topbar-row,
  body > .main-icon-nav,
  body > header.main-icon-nav {
    margin-left: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* Eski page-shell ozel padding'ini sifirla (artik body'de) */
  body .page-shell,
  body main.page-shell {
    padding-left: 0 !important;
  }

  /* Footer body padding'i icinde kaldigi icin extra padding gerekmez */
  body .site-footer {
    padding-left: 0;
  }
}

/* Hero icin extra responsive tuning gerekirse */
@media (max-width: 699px) {
  .hero-side {
    display: none !important; /* mobilde gizle */
  }
}

/* =================================================
   12) MOBILE POLISH — kucuk ekranlar icin sade hizalama
   ================================================= */
@media (max-width: 900px) {
  /* Iceriklerin kenar bosluklari nefes alsin */
  .page-shell {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* HERO mobilde — sadece yukseklik ayari, slider orijinal davranisina dokunma */
  .hero {
    aspect-ratio: 16/9 !important;
    min-height: 200px !important;
    max-height: 300px !important;
    width: 100% !important;
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-slider {
    height: 100% !important;
  }

  /* Promo kartlari mobilde 2x GRID (desktop gibi) — img | tas | img | yeni satir */
  .promo-cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
  }
  .promo-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
  }
  .promo-card {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 486/280 !important; /* gercek gorsel oraninda */
    height: auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: block;
    background: var(--bg-2, #1a1a1a);
    min-width: 0;
  }
  .promo-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  /* Zumrut tas — ortada, buyuk altin (kullanici talebi 2026-05-10).
     Desktop'taki gibi absolute overlay → kartlar tam genislikte kalir,
     tas iki kartin uzerinde merkezli durur. */
  .promo-separator {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: clamp(90px, 26vw, 130px) !important;
    height: clamp(90px, 26vw, 130px) !important;
    flex: none !important;
    margin: 0 !important;
    pointer-events: none;
    z-index: 5;
  }
  .promo-separator img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* Header icon-nav rahat dokunulsun */
  .main-icon-nav {
    gap: 4px !important;
    padding: 10px 6px !important;
  }
  .main-icon-nav .icon-link {
    padding: 6px 8px !important;
    font-size: 10.5px !important;
    min-width: 56px;
  }
  .main-icon-nav .icon-link i,
  .main-icon-nav .icon-link span:first-child {
    font-size: 18px !important;
  }

  /* Topbar mobilde rahat — logo + auth butonlar nefes alsin */
  .topbar-row {
    padding: 12px 12px !important;
    gap: 10px !important;
    min-height: 60px;
  }
  .topbar-row .brand {
    width: auto !important;
    max-width: 60vw !important;
  }
  .topbar-row .brand img {
    max-height: 52px !important;
    height: auto !important;
    width: auto;
  }
  .quick-links {
    gap: 6px !important;
  }
  .quick-pill {
    padding: 7px 11px !important;
    font-size: 11.5px !important;
  }
  .quick-pill i {
    margin-right: 4px;
  }

  /* Section spacing mobilde sikilir */
  .surface,
  section.surface {
    padding: 12px !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
  }

  .popular-section-label {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  /* Live wins mobilde daha kompakt */
  .lw-bar {
    height: 38px !important;
    margin: 8px 0 12px !important;
    border-radius: 10px;
  }
  .lw-bar-label {
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
    padding: 0 10px !important;
  }
  .lw-bar-item {
    font-size: 11.5px !important;
  }

  /* Trust strip 2-col mobil */
  .trust-strip {
    padding: 12px 6px !important;
    gap: 8px !important;
    border-radius: 14px;
  }
  .trust-item {
    flex: 0 0 calc(50% - 12px) !important;
    padding: 6px 8px !important;
    gap: 8px !important;
  }
  .trust-ico {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
  .trust-text strong { font-size: 12px !important; }
  .trust-text small  { font-size: 10px !important; }

  /* Game card peek smoother */
  .game-row-scroll {
    gap: 10px !important;
    padding-bottom: 8px;
  }
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 10px * 2.3) / 2.4) !important;
    border-radius: 10px;
  }
  .game-card .game-card-play {
    width: 40px !important;
    height: 40px !important;
    margin: -20px 0 0 -20px !important;
    font-size: 14px !important;
  }
  .game-row-head {
    margin-bottom: 8px !important;
  }

  /* League tiles mobilde 3-col, daha kompakt */
  .league-tiles {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  .league-tile {
    border-radius: 10px;
  }

  /* Discover banner aspect-ratio mobil */
  .discover-strip {
    border-radius: 12px;
    margin-bottom: 10px !important;
  }

  /* Footer mobilde sikistir */
  .footerLinkCols,
  .footer-link-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  /* Cok kucuk ekranlar (iPhone SE vb) */
  .page-shell {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Logo cok kucuk ekranlarda hafif kucuk */
  .topbar-row .brand img {
    max-height: 46px !important;
  }
  .topbar-row {
    padding: 10px 10px !important;
    min-height: 56px;
  }

  /* Hero text icin */
  .hero-copy h1 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
  .hero-copy p {
    font-size: 12px !important;
  }
  .hero-cta {
    height: 32px !important;
    padding: 0 14px !important;
    font-size: 11.5px !important;
  }

  /* Game card daha kompakt */
  .game-row-scroll > .game-card {
    flex: 0 0 calc((100% - 10px * 1.4) / 2.2) !important;
  }

  /* Trust strip - 1 colon icin alternatif yok, 2-col kalsin ama padding daralt */
  .trust-item {
    padding: 5px 6px !important;
  }
  .trust-text strong { font-size: 11.5px !important; }
  .trust-text small  { font-size: 9.5px !important; }

  /* Footer 1-col */
  .footerLinkCols,
  .footer-link-cols {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════
   HEADER AUTH BUTONLARI — Yeni Tasarim (Siyah GIRIS + Altin KAYIT)
   2026-05-11
   ═══════════════════════════════════════════════════ */
.auth-split {
  display: inline-flex !important;
  align-items: stretch !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 8px !important;
}
.auth-split::before,
.auth-split::after {
  display: none !important;
  content: none !important;
}

.auth-segment {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

/* Ikonlar gizleniyor (sadece text gozuksun) */
.auth-segment i {
  display: none !important;
}

/* GIRIS — siyah katı */
.auth-segment-login {
  background: #0B0B0B !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}
.auth-segment-login:hover {
  background: #1A1A1A !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
}
.auth-segment-login:active {
  transform: translateY(0) !important;
}

/* KAYIT — altin gradient */
.auth-segment-register {
  background: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%) !important;
  color: #0B0B0B !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35) !important;
}
.auth-segment-register:hover {
  background: linear-gradient(180deg, #FFE45A 0%, #E0BB45 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.45) !important;
}
.auth-segment-register:active {
  transform: translateY(0) !important;
}

/* Mobil */
@media (max-width: 768px) {
  .auth-segment {
    padding: 8px 14px !important;
    font-size: 12px !important;
    letter-spacing: 0.6px !important;
  }
  .auth-split {
    gap: 6px !important;
  }
}

@media (max-width: 380px) {
  .auth-segment {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }
  .auth-split {
    gap: 5px !important;
  }
}

/* === Mobilde span (yazi) gosterilmeli — emerald-clone.css'in mobil-spesifik
   "display:none" override'ina karsi koruma === */
.auth-segment span {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Cok kucuk ekranlarda text-overflow ile sigdir */
@media (max-width: 380px) {
  .auth-segment span {
    font-size: 10.5px !important;
    letter-spacing: 0.4px !important;
    line-height: 1 !important;
  }
  .auth-segment {
    padding: 7px 10px !important;
  }
}

/* Cok dar telefonlarda butonlar tasmasin diye flex-shrink */
.auth-split {
  flex-shrink: 0 !important;
}
.auth-segment {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════════════════
   QUICK ACCESS CARDS — Yeni Tasarim (4 dikdortgen kart)
   2026-05-11
   ═══════════════════════════════════════════════════ */

/* Eski separator tas resimlerini gizle (artik HTML'de yok ama emniyet) */
.promo-separator {
  display: none !important;
}

/* Eski grup yapisini kaldir (artik wrapper direkt 4 karti tutuyor) */
.promo-group {
  display: contents !important;
}

/* Wrapper'i 4 sutunlu grid yap */
.promo-cards-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

/* Kartlari sade tut: arkasi resim, rounded corner, hover'da hafif buyu */
.promo-card {
  position: relative !important;
  display: block !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  aspect-ratio: 3 / 2 !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.promo-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25) !important;
  border-color: rgba(255, 215, 0, 0.45) !important;
}

/* Eski snake-glow ::before efektini tamamen kaldir (yeni resimler dikdortgen) */
.promo-card::before,
.promo-card::after {
  display: none !important;
  content: none !important;
}

/* Img tag'leri butun karti kaplasin */
.promo-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

/* Tablet: 2 sutun */
@media (max-width: 900px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
  }
  .promo-card {
    border-radius: 14px !important;
    aspect-ratio: 3 / 2 !important;
  }
  .promo-card img {
    border-radius: 14px !important;
  }
}

/* Telefon: 2 sutun ama daha kucuk gap */
@media (max-width: 480px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }
  .promo-card {
    border-radius: 12px !important;
  }
  .promo-card img {
    border-radius: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════
   QUICK CARDS — 2x2 grid override (kartlar buyutuldu)
   2026-05-11
   ═══════════════════════════════════════════════════ */
.promo-cards-wrapper {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
  max-width: 1200px !important;
  padding: 0 20px !important;
}

.promo-card {
  aspect-ratio: 3 / 2 !important;
  border-radius: 18px !important;
}

.promo-card img {
  border-radius: 18px !important;
}

/* Tablet: 2 sutun ama daha kucuk gap */
@media (max-width: 900px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
    max-width: 100% !important;
  }
  .promo-card,
  .promo-card img {
    border-radius: 14px !important;
  }
}

/* Telefon: 2 sutun kucuk gap */
@media (max-width: 480px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }
  .promo-card,
  .promo-card img {
    border-radius: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════
   QUICK CARDS — Final boyut ayari
   Desktop: 4 yan yana (1500px ust limit)
   Mobile: 2x2 ama gap/padding kucuk -> kartlar buyuk
   2026-05-11
   ═══════════════════════════════════════════════════ */

/* Desktop: 4 yan yana, orijinalden biraz buyuk */
@media (min-width: 901px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1500px !important;
    gap: 14px !important;
    padding: 0 16px !important;
  }
  .promo-card,
  .promo-card img {
    border-radius: 14px !important;
  }
}

/* Tablet 481-900px arasi: 2x2 (mevcut), orta gap */
@media (min-width: 481px) and (max-width: 900px) {
  .promo-cards-wrapper {
    gap: 12px !important;
    padding: 0 12px !important;
  }
}

/* Mobile: 2x2 ama daha sik (kartlar buyusun) */
@media (max-width: 480px) {
  .promo-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5px !important;
    padding: 0 5px !important;
  }
  .promo-card,
  .promo-card img {
    border-radius: 11px !important;
  }
}

/* Cok kucuk telefon (<360px) */
@media (max-width: 360px) {
  .promo-cards-wrapper {
    gap: 4px !important;
    padding: 0 4px !important;
  }
}
