/* ================================
   EpinPro — Kurumsal (hesap.com.tr estetiği)
   ================================ */
:root {
  /* Dark commerce tonlari */
  --bg:         #0f1115;
  --bg-2:       #141821;
  --bg-3:       #1a1f2b;
  --surface:    #1d232f;
  --surface-2:  #242b3a;
  --surface-3:  #2d3544;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --border-3:   rgba(255,255,255,0.18);

  --text:       #ecedf0;
  --muted:      #9aa1b2;
  --muted-2:    #6b7285;

  /* Marka — hesap.com.tr tarzı sarı/turuncu aksan + mavi trust */
  --brand:      #fbbf24;            /* altın sari, CTA vurgu */
  --brand-2:    #f59e0b;
  --brand-dark: #d97706;
  --brand-rgb:  251, 191, 36;
  --accent:     #2563eb;            /* güven mavisi */
  --accent-2:   #3b82f6;
  --green:      #16a34a;
  --green-2:    #22c55e;
  --red:        #dc2626;
  --red-2:      #ef4444;
  --orange:     #ea580c;
  --purple:     #7c3aed;
  --cyan:       #0891b2;

  --radius:     8px;
  --radius-sm:  6px;
  --radius-lg:  12px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,0.4);
  --shadow:     0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.5);
  --transition: all 0.18s ease;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Inter','Sora',sans-serif; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
a { color: var(--text); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand); }
p { color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
hr { border-color: var(--border); margin: 1rem 0; }

.text-primary { color: var(--brand) !important; }
.text-brand { color: var(--brand) !important; }
.text-accent { color: var(--accent-2) !important; }

.container { max-width: 1360px; }

.site-main { min-height: 60vh; }

/* ==================== Util ==================== */
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.grad-text {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ==================== Trust bar ==================== */
.trust-bar {
  background: #0a0c11;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
}
.trust-bar .container { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-bar span i { margin-right: 5px; }
.trust-bar span:nth-child(1) i { color: var(--green); }
.trust-bar span:nth-child(2) i { color: var(--brand); }
.trust-bar span:nth-child(3) i { color: var(--accent-2); }
.trust-bar span:nth-child(4) i { color: var(--purple); }
.trust-bar span:nth-child(5) i { color: var(--red); }

/* ==================== Topbar ==================== */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar-left, .topbar-right { display: flex; gap: 16px; align-items: center; color: var(--muted); }
.topbar-right .tlink { color: var(--muted); }
.topbar-right .tlink:hover { color: var(--brand); }
.balance-chip {
  background: rgba(var(--brand-rgb),0.12);
  border: 1px solid rgba(var(--brand-rgb),0.35);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}
.balance-chip i { margin-right: 4px; }

/* ==================== Header ==================== */
.site-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo:hover { color: var(--text); }
.logo-badge {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 4px 14px rgba(var(--brand-rgb),0.35);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: 'Sora','Inter'; font-size: 20px; letter-spacing: -0.02em; color: var(--text); }
.logo-text small { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }

.header-search { max-width: 680px; width: 100%; }
.header-search .input-group {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.header-search .input-group:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),0.15); }
.header-search .form-select,
.header-search .form-control {
  background: transparent; border: 0; color: var(--text);
  box-shadow: none !important; font-size: 14px;
}
.header-search .form-select { max-width: 160px; border-right: 1px solid var(--border); color: var(--muted); }
.header-search .btn { border-radius: 0; font-weight: 600; padding: 0.5rem 1.2rem; }

.header-actions { display: flex; gap: 8px; align-items: center; }

.hicon {
  position: relative;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--muted);
  font-size: 16px;
  transition: var(--transition);
}
.hicon:hover { background: var(--surface-2); color: var(--brand); border-color: var(--border-2); }
.hicon-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid; place-items: center;
}

.btn-sell {
  background: var(--brand) !important;
  color: #18181b !important;
  border: 0;
  font-weight: 700;
  padding: 0.45rem 1rem !important;
  font-size: 13.5px !important;
}
.btn-sell:hover { background: var(--brand-2) !important; color: #18181b !important; transform: translateY(-1px); }

.user-menu {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}
.user-menu:hover { background: var(--surface-2); }
.user-menu::after { margin-left: 4px; }
.user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  overflow: hidden;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }

.nav-games-wrapper {
  --nav-fade-bg: var(--bg-1, #0f1115);
  position: relative;
  display: block;
  width: 100%;
}
.nav-games-wrapper::before,
.nav-games-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.nav-games-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--nav-fade-bg) 0%, transparent 100%);
}
.nav-games-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--nav-fade-bg) 0%, transparent 100%);
}
.nav-games-wrapper.can-scroll-left::before {
  opacity: 0.95;
}
.nav-games-wrapper.can-scroll-right::after {
  opacity: 0.95;
}

.nav-games {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 6px;
  padding: 8px 0;
  margin: 0;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none !important;
}
.nav-games::-webkit-scrollbar { display: none !important; }
.nav-games.active-drag {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}

button.nav-games-item,
.nav-games-item {
  --c: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.02);
  background: transparent;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
  text-decoration: none;
}
button.nav-games-item:hover,
.nav-games-item:hover { background: var(--surface-2); color: var(--text); }
button.nav-games-item.active,
.nav-games-item.active { background: var(--surface-2); color: var(--brand); }

/* Tüm Kategoriler button glassmorphism and theme coloring */
button.nav-games-item.nav-mega-trigger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--c, var(--brand)) !important;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius, 8px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
button.nav-games-item.nav-mega-trigger:hover,
button.nav-games-item.nav-mega-trigger:focus,
button.nav-games-item.nav-mega-trigger[aria-expanded="true"] {
  background: color-mix(in srgb, var(--c, var(--brand)) 15%, transparent) !important;
  border-color: var(--c, var(--brand)) !important;
  color: var(--c, var(--brand)) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-divider { width: 1px; background: var(--border); margin: 4px; flex-shrink: 0; }

/* ==================== Buttons ==================== */
.btn {
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.55rem 1.2rem;
  font-size: 14px;
  transition: var(--transition);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-lg { padding: 0.75rem 1.5rem; font-size: 15px; }
.btn-sm { padding: 0.38rem 0.85rem; font-size: 12.5px; border-radius: var(--radius-sm); }
.btn-primary {
  background: var(--brand);
  color: #18181b;
  box-shadow: 0 2px 8px rgba(var(--brand-rgb),0.25);
}
.btn-primary:hover { background: var(--brand-2); color: #18181b; box-shadow: 0 4px 14px rgba(var(--brand-rgb),0.35); transform: translateY(-1px); }
.btn-success { background: var(--green); color: #fff; }
.btn-success:hover { background: var(--green-2); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); color: #fff; }
.btn-outline-primary { color: var(--brand); border: 1px solid var(--brand); background: transparent; }
.btn-outline-primary:hover { background: var(--brand); color: #18181b; }
.btn-outline-light { color: var(--text); border: 1px solid var(--border-2); background: transparent; }
.btn-outline-light:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-3); }
.btn-outline-danger { color: #fca5a5; border: 1px solid rgba(220,38,38,0.4); background: transparent; }
.btn-outline-danger:hover { background: var(--red); color: #fff; }

/* ==================== Hero banner (hesap.com.tr tarzı slider) ==================== */
.hero-banner {
  padding: 18px 0 8px;
}
.banner-slider { position: relative; }
.banner-slide {
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center; /* Center horizontally */
  text-align: center;      /* Center text */
}
.banner-slide::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-url, none);
}
.banner-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(15,17,21,0.55) 0%, rgba(15,17,21,0.85) 100%);
}
.banner-slide--1::before { background-image: url('/img/banners/chatgpt_banner.png'); }
.banner-slide--2::before { background-image: url('/img/banners/gemini_banner.png'); }
.banner-slide--3::before { background-image: url('/img/banners/giftcard_banner.png'); }
.banner-slide--4::before { background-image: url('/img/banners/digital_store_banner.png'); }
.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-kicker {
  display: inline-block;
  background: var(--brand);
  color: #18181b;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.banner-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.banner-title span { color: var(--brand); }
.banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
  max-width: 540px;
}

/* Carousel mini */
.banner-slider .carousel-indicators {
  bottom: 12px; margin: 0 20px;
}
.banner-slider .carousel-indicators button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 0;
  margin: 0 3px;
  opacity: 1;
}
.banner-slider .carousel-indicators .active { background: var(--brand); width: 24px; border-radius: 4px; }
.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
  width: 48px;
  opacity: 0.7;
}
.banner-slider .carousel-control-prev-icon,
.banner-slider .carousel-control-next-icon {
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 18px;
  background-size: 18px;
}

/* ==================== Quick promo strip (banner altı) ==================== */
.promo-strip { padding: 14px 0; }
.promo-strip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.promo-card {
  --c: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.promo-card:hover {
  border-color: var(--c);
  transform: translateY(-2px);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.promo-card-ico {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.promo-card-body { flex: 1; min-width: 0; }
.promo-card-title { font-size: 14px; font-weight: 700; display: block; }
.promo-card-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }

/* ==================== Section headers ==================== */
.section { padding: 30px 0; }
.section-title-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 18px;
  flex-wrap: wrap; gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.section-title-row h2 {
  font-size: 18px; margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.section-title-row h2 small { color: var(--muted); font-weight: 400; font-size: 12px; text-transform: none; margin-left: 10px; letter-spacing: 0; }
.section-all {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}
.section-all i { margin-left: 3px; }

/* ==================== Popular games (yatay ikon şerit) ==================== */
.pop-games-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.pop-game {
  --c: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  color: var(--text);
}
.pop-game:hover {
  border-color: var(--c);
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-2px);
}
.pop-game-img {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.pop-game-body { flex: 1; min-width: 0; }
.pop-game-name {
  font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block;
}
.pop-game-count { font-size: 11px; color: var(--muted); }

/* ==================== Listing Card (kompakt, hesap.com.tr stil) ==================== */
.listing-card {
  --game-color: var(--brand);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: var(--transition);
  color: var(--text);
}
.listing-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-3);
  box-shadow: var(--shadow);
  color: var(--text);
}
.listing-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.listing-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,17,21,0.75) 100%);
}
.listing-badge {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.listing-badge-discount {
  top: 8px; right: 8px;
  background: var(--red);
  color: #fff;
}
.listing-badge-featured {
  top: 8px; left: 8px;
  background: var(--brand);
  color: #18181b;
  letter-spacing: 2px;
}
.listing-badge-type {
  position: absolute;
  bottom: 8px; left: 8px;
  z-index: 2;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.listing-badge-type i { margin-right: 3px; }

.listing-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.listing-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.game-tag { color: var(--game-color); }
.auto-tag { color: var(--green-2); }
.listing-card-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
  color: var(--text);
}
.listing-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}
.listing-attrs span {
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}
.listing-attrs i { color: var(--game-color); margin-right: 2px; }
.listing-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.listing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-old {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-new {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.price-new small { font-size: 10px; color: var(--muted); font-weight: 500; margin-left: 2px; }
.listing-seller {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.seller-name {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.seller-name i.text-info { color: var(--accent-2) !important; }
.seller-rating { color: var(--muted); display: inline-flex; align-items: center; gap: 2px; }
.seller-rating i { color: var(--brand); font-size: 10px; }
.seller-rating small { color: var(--muted-2); }

/* ==================== Gift cards / Social strips ==================== */
.strip-section {
  padding: 26px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.strip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
  color: var(--muted);
  min-height: 100px;
  justify-content: center;
}
.strip-card:hover {
  background: var(--surface-2);
  border-color: var(--brand);
  color: var(--text);
  transform: translateY(-2px);
}
.strip-card i { font-size: 26px; color: var(--brand); }
.strip-card span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Budget price buttons */
.budget-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.budget-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.budget-btn:hover { background: var(--brand); color: #18181b; border-color: var(--brand); transform: translateY(-2px); }
.budget-btn i { margin-right: 4px; color: var(--brand); }
.budget-btn:hover i { color: #18181b; }

/* ==================== SEO content ==================== */
.seo-section {
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.seo-block { margin-bottom: 30px; }
.seo-block h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}
.seo-block h3 { font-size: 15px; margin-bottom: 10px; color: var(--brand); }
.seo-block p { color: var(--muted); font-size: 13.5px; line-height: 1.75; }
.seo-block a { color: var(--brand); }
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.seo-tags a {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--muted);
}
.seo-tags a:hover { background: var(--brand); color: #18181b; border-color: var(--brand); }

/* ==================== Forms ==================== */
.form-control, .form-select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  font-size: 14px;
  padding: 0.5rem 0.8rem;
}
.form-control:focus, .form-select:focus {
  background: var(--bg-3);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb),0.15);
  color: var(--text);
}
.form-control:disabled, .form-control[readonly] { background: var(--bg); color: var(--muted); }
.form-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-floating label { color: var(--muted); }
.input-group-text { background: var(--bg-3); border: 1px solid var(--border); color: var(--text); }

/* ==================== Panel (user dashboard) ==================== */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.panel-head i { color: var(--brand); }
.panel-head .rating-chip { margin-left: auto; }

.rating-chip {
  background: rgba(var(--brand-rgb),0.12);
  border: 1px solid rgba(var(--brand-rgb),0.3);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.panel-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky;
  top: 120px;
}
.panel-user {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.panel-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 20px;
  overflow: hidden;
  font-weight: 800;
}
.panel-avatar img { width: 100%; height: 100%; object-fit: cover; }
.panel-user-info strong { display: block; font-size: 14px; }
.panel-user-info small { color: var(--muted); font-size: 12px; }

.seller-level-badge {
  --c: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  background: color-mix(in srgb, var(--c) 18%, transparent);
  color: var(--c);
  border: 1px solid color-mix(in srgb, var(--c) 35%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 3px;
}
.seller-level-card {
  --c: var(--brand);
  background: color-mix(in srgb, var(--c) 10%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--c) 25%, var(--border));
  border-radius: var(--radius);
  padding: 10px 12px;
  margin: 12px 0;
}
.seller-level-card .sl-label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.seller-level-card strong { color: var(--c); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.seller-level-card small { color: var(--muted); font-size: 11px; }

.balance-summary {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin: 12px 0;
}
.balance-summary > div {
  display: flex; justify-content: space-between; align-items: baseline;
}
.balance-summary span { font-size: 11px; color: var(--muted); }
.balance-summary strong { font-size: 16px; color: var(--brand); font-weight: 800; }
.balance-summary .hold { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--border); }
.balance-summary .hold strong { color: var(--red-2); }

.panel-menu { display: flex; flex-direction: column; gap: 1px; }
.panel-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--muted);
}
.panel-menu a:hover { background: var(--surface-2); color: var(--text); }
.panel-menu a.active {
  background: rgba(var(--brand-rgb),0.1);
  color: var(--brand);
  font-weight: 600;
}
.panel-menu a.admin-link { background: rgba(220,38,38,0.08); color: #fca5a5; }

.panel-stat {
  --c: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--c);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.panel-stat i {
  font-size: 20px;
  width: 40px; height: 40px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--c);
}
.panel-stat span { color: var(--muted); font-size: 11px; text-transform: uppercase; display: block; }
.panel-stat strong { font-size: 18px; font-weight: 800; }

/* Order rows */
.order-row {
  --c: var(--brand);
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--c);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 8px;
  color: var(--text);
  transition: var(--transition);
}
.order-row:hover { border-color: var(--border-2); background: var(--surface-2); color: var(--text); }
.order-row-img {
  width: 64px; height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.order-row-info { flex: 1; min-width: 0; }
.order-row-info strong { display: block; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-active, .status-completed { background: rgba(22,163,74,0.18); color: #6ee7b7; }
.status-pending_delivery, .status-paused { background: rgba(var(--brand-rgb),0.18); color: var(--brand); }
.status-delivered { background: rgba(37,99,235,0.18); color: #93c5fd; }
.status-cancelled, .status-removed, .status-sold { background: rgba(220,38,38,0.18); color: #fca5a5; }
.status-pill-big {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 4px;
  font-weight: 700; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Balance page */
.balance-card-big {
  --c: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--c);
  border-radius: var(--radius);
  padding: 18px;
}
.balance-card-big span { color: var(--muted); font-size: 12px; text-transform: uppercase; display: block; margin-bottom: 2px; letter-spacing: 0.5px; font-weight: 600; }
.balance-card-big strong { font-size: 28px; font-weight: 800; color: var(--c); }
.quick-amounts { display: flex; gap: 6px; flex-wrap: wrap; }
.quick-amounts .btn { padding: 5px 12px; font-size: 12px; }

/* Avatar preview */
.avatar-preview {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 38px;
  margin: 0 auto;
  overflow: hidden;
  font-weight: 800;
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }

/* Rating input */
.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; font-size: 28px; }
.rating-input input { display: none; }
.rating-input label { color: var(--border-2); cursor: pointer; transition: var(--transition); }
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--brand); }

/* List row (dashboard) */
.list-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.list-row:last-child { border-bottom: 0; }
.list-row:hover { color: var(--brand); }

/* ==================== Listing Detail ==================== */
.listing-hero { padding: 20px 0; }
.gallery-main {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto;
}
.gallery-thumb {
  width: 72px; height: 54px;
  border-radius: var(--radius-sm);
  background-size: cover; background-position: center;
  border: 2px solid var(--border);
  cursor: pointer; flex-shrink: 0;
  transition: var(--transition);
  padding: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--brand); }

.detail-main-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.detail-type-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; border-radius: 4px;
  color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.detail-auto-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--green);
  color: #fff;
  padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.detail-head {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px; margin: 14px 0 12px;
}
.game-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--muted); font-size: 12px;
  margin-bottom: 4px;
}
.game-link a { color: var(--brand); font-weight: 600; }
.detail-title { font-size: clamp(20px, 2.5vw, 28px); margin: 0 0 8px; font-weight: 800; }
.detail-meta { color: var(--muted); font-size: 12px; display: flex; gap: 14px; flex-wrap: wrap; }
.detail-meta span i { margin-right: 3px; }

.btn-fav {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fca5a5;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: grid; place-items: center;
  transition: var(--transition);
}
.btn-fav:hover { background: rgba(220,38,38,0.15); border-color: var(--red); }
.btn-fav.active { background: var(--red); color: #fff; border-color: var(--red); }

.detail-attrs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.attr-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
}
.attr-item i { color: var(--brand); font-size: 16px; }
.attr-item span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.attr-item strong { font-size: 14px; display: block; }

/* Buy card */
.buy-card {
  --c: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--c);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky;
  top: 120px;
  margin-bottom: 14px;
}
.buy-price { margin-bottom: 14px; }
.buy-old { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.buy-discount {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  margin-left: 6px; vertical-align: middle;
}
.buy-new {
  font-size: 34px; font-weight: 800;
  color: var(--c); line-height: 1;
  margin-top: 6px;
}
.buy-features {
  display: grid; gap: 6px;
  padding: 12px; background: var(--bg-3);
  border-radius: var(--radius);
  margin-bottom: 14px; font-size: 13px;
}
.buy-features i { width: 18px; margin-right: 5px; }

.seller-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.seller-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.seller-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 18px;
  overflow: hidden;
  font-weight: 800;
}
.seller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.seller-avatar-lg {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 34px;
  overflow: hidden;
  font-weight: 800;
  flex-shrink: 0;
}
.seller-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.seller-name-link { color: var(--text); font-size: 14px; }
.seller-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seller-stats strong { display: block; font-size: 16px; }
.seller-stats small { color: var(--muted); font-size: 10px; text-transform: uppercase; }

.review-item { border-bottom: 1px solid var(--border); padding: 12px 0; }
.review-item:last-child { border-bottom: 0; }
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.review-stars { color: var(--brand); font-size: 12px; }

.seller-hero { padding: 24px 0; border-bottom: 1px solid var(--border); }
.seller-profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap;
}
.seller-username { font-size: 26px; margin: 0; }
.seller-stats-row { display: flex; gap: 24px; flex-wrap: wrap; }
.seller-stats-row > div strong { display: block; font-size: 18px; color: var(--brand); }
.seller-stats-row > div span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; }

/* ==================== Filter panel (listings page) ==================== */
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky;
  top: 120px;
}
.filter-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-head h5 { font-size: 14px; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group { margin-bottom: 12px; }
.filter-group label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.type-filter-list { display: flex; flex-direction: column; gap: 4px; }
.type-filter-item {
  --c: var(--brand);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  font-size: 13px;
  color: var(--muted);
  border: 1px solid transparent;
}
.type-filter-item:hover { background: var(--surface-2); color: var(--c); border-color: var(--border-2); }
.type-filter-item i { color: var(--c); margin-right: 6px; }

.results-header {
  padding: 10px 0; margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
}

/* ==================== Game hero (category) ==================== */
.game-hero {
  --c1: var(--brand);
  --c2: var(--brand-2);
  position: relative;
  padding: 30px 0 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.game-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.1) brightness(0.3);
  opacity: 0.6;
}
.game-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.game-hero .container { position: relative; }
.game-hero-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 6px; }
.game-hero-desc { color: var(--muted); font-size: 14px; max-width: 700px; }
.game-hero-tabs { display: flex; gap: 4px; margin-top: 16px; flex-wrap: wrap; }
.game-hero-tabs a {
  --c: var(--brand);
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.game-hero-tabs a:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-2); }
.game-hero-tabs a.active { background: var(--brand); color: #18181b; border-color: var(--brand); }

.type-hero {
  --c: var(--brand);
  padding: 30px 0 14px;
  border-bottom: 1px solid var(--border);
}
.type-hero h1 { font-size: 28px; color: var(--text); }
.type-hero h1 i { color: var(--c); }

.page-hero { padding: 24px 0 14px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 24px; margin-bottom: 4px; }

/* ==================== Chat ==================== */
.conv-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text); transition: var(--transition);
}
.conv-row:last-child { border-bottom: 0; }
.conv-row:hover { background: var(--surface-2); color: var(--text); }
.conv-row.unread { background: rgba(var(--brand-rgb),0.05); }
.conv-row.unread strong { color: var(--brand); }
.conv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 800;
  overflow: hidden; flex-shrink: 0;
}
.conv-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 70vh; min-height: 500px;
}
.chat-head { padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-body {
  flex: 1; overflow-y: auto; padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg { display: flex; flex-direction: column; max-width: 70%; }
.chat-msg.in { align-self: flex-start; }
.chat-msg.out { align-self: flex-end; align-items: flex-end; }
.chat-bubble { padding: 9px 14px; border-radius: 12px; word-break: break-word; font-size: 13.5px; }
.chat-msg.in .chat-bubble { background: var(--surface-2); border: 1px solid var(--border); border-bottom-left-radius: 3px; }
.chat-msg.out .chat-bubble { background: var(--brand); color: #18181b; border-bottom-right-radius: 3px; font-weight: 500; }
.chat-time { font-size: 10px; color: var(--muted-2); margin-top: 2px; }
.chat-form {
  display: flex; gap: 8px; padding: 12px;
  border-top: 1px solid var(--border);
}
.chat-form .form-control { border-radius: 999px; }
.chat-form .btn { border-radius: 50%; width: 40px; height: 40px; padding: 0; }

/* ==================== Notifications ==================== */
.notif-dropdown { width: 340px; max-width: 90vw; padding: 0; overflow: hidden; }
.notif-dd-head {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.notif-dd-body { max-height: 400px; overflow-y: auto; }
.notif-dd-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 12.5px;
}
.notif-dd-item:last-child { border-bottom: 0; }
.notif-dd-item:hover { background: var(--surface-2); color: var(--text); }
.notif-dd-item.unread { background: rgba(var(--brand-rgb),0.06); }
.notif-dd-item.unread strong { color: var(--brand); }
.notif-dd-item i {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(var(--brand-rgb),0.15); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0; font-size: 13px;
}
.notif-dd-item > div { flex: 1; min-width: 0; }
.notif-dd-item strong { display: block; font-size: 12px; }

.notif-row {
  --c: var(--brand);
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.notif-row:last-child { border-bottom: 0; }
.notif-row:hover { background: var(--surface-2); color: var(--text); }
.notif-row.unread { background: rgba(var(--brand-rgb),0.04); }
.notif-row.unread strong { color: var(--brand); }
.notif-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: grid; place-items: center;
  font-size: 16px; color: #fff; flex-shrink: 0;
}
.notif-icon.notif-order { background: var(--accent); }
.notif-icon.notif-message { background: var(--cyan); }
.notif-icon.notif-review { background: var(--brand); color: #18181b; }
.notif-icon.notif-balance { background: var(--green); }
.notif-icon.notif-system { background: var(--purple); }

/* 2FA */
.qr-wrap { background: #fff; border-radius: var(--radius); padding: 10px; display: inline-block; }
.qr-img { width: 170px; height: 170px; display: block; }
.secret-code { display: inline-block; background: var(--bg-3); padding: 6px 10px; border-radius: 4px; color: var(--brand); font-size: 12px; word-break: break-all; margin-top: 6px; font-family: monospace; }
.otp-input { letter-spacing: 0.4em; text-align: center; font-size: 22px !important; font-weight: 700; font-family: monospace; }
.backup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 6px; }
.backup-code { display: block; background: var(--bg-3); padding: 8px 10px; border-radius: 4px; font-family: monospace; text-align: center; font-size: 13px; border: 1px dashed var(--border-2); }

/* ==================== Auth ==================== */
.auth-section { padding: 60px 0; }
.auth-card {
  background: rgba(20, 20, 25, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-lg, 16px) !important;
  padding: 36px 40px !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.05) !important;
  transition: all 0.3s ease;
}
.auth-card:hover {
  border-color: rgba(var(--brand-rgb), 0.2) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--brand-rgb), 0.05) !important;
}
.auth-head { text-align: center; margin-bottom: 24px; }
.auth-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: inline-grid; place-items: center;
  color: #18181b; font-size: 26px;
  margin-bottom: 14px;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(var(--brand-rgb),0.3);
}
.auth-icon-register { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(22,163,74,0.3); }
.auth-foot { text-align: center; margin-top: 18px; color: var(--muted); font-size: 13px; }
.auth-foot a { color: var(--brand); font-weight: 600; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }
.auth-demo {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 12px; margin-top: 20px;
  font-size: 12px;
  text-align: center;
}
.auth-demo code { color: var(--brand); background: transparent; padding: 0; font-size: 12.5px; }

/* Social Login Buttons */
.social-login-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius, 8px);
  padding: 11px 16px;
  color: var(--text) !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn-social svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.btn-social-google:hover {
  background: rgba(234, 67, 53, 0.1) !important;
  border-color: rgba(234, 67, 53, 0.4) !important;
  box-shadow: 0 4px 20px rgba(234, 67, 53, 0.15) !important;
  transform: translateY(-2px);
}
.btn-social-github:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}
.btn-social:hover svg {
  transform: scale(1.15) rotate(2deg);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 22px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.auth-divider:not(:empty)::before { margin-right: 14px; }
.auth-divider:not(:empty)::after { margin-left: 14px; }

/* Staggered form field fly-in animations */
.auth-card-animated {
  animation: authCardEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes authCardEnter {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-field-animate {
  animation: authFieldFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--delay, 0s);
}
@keyframes authFieldFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Float Form Control improvements */
.form-floating > .form-control {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.form-floating > .form-control:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--brand);
  box-shadow: 0 0 15px rgba(var(--brand-rgb), 0.15);
}
.form-floating > label {
  color: var(--muted);
  transition: all 0.3s ease;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--brand);
}

/* ==================== Checkout ==================== */
.checkout-product { display: flex; gap: 14px; align-items: center; }
.cp-img {
  width: 90px; height: 72px;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.payment-option {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px; margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.payment-option.active { border-color: var(--brand); background: rgba(var(--brand-rgb),0.06); }
.payment-option.disabled { opacity: 0.5; cursor: not-allowed; }
.payment-option > i { font-size: 20px; color: var(--brand); margin-left: auto; }
.summary-card .summary-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; color: var(--muted); font-size: 13px;
}
.summary-card .summary-row strong { color: var(--text); }
.summary-card .summary-total strong { font-size: 18px; color: var(--brand); }
.trust-strip {
  display: flex; justify-content: space-around; gap: 14px;
  padding: 12px; background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px; color: var(--muted);
  flex-wrap: wrap;
}

/* ==================== Tables ==================== */
.table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--border);
  --bs-table-striped-bg: rgba(255,255,255,0.02);
  --bs-table-hover-bg: rgba(var(--brand-rgb),0.05);
}
.table-dark thead { background: var(--bg-3); }
.table > :not(caption) > * > * { padding: 12px; border-bottom-color: var(--border); }
.table thead th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); font-weight: 700; }

/* ==================== Alerts ==================== */
.alert { border-radius: var(--radius); border: 1px solid; padding: 12px 16px; font-size: 13.5px; }
.alert-success { background: rgba(22,163,74,0.1); color: #6ee7b7; border-color: rgba(22,163,74,0.3); }
.alert-danger  { background: rgba(220,38,38,0.1); color: #fca5a5; border-color: rgba(220,38,38,0.3); }
.alert-warning { background: rgba(var(--brand-rgb),0.1); color: var(--brand); border-color: rgba(var(--brand-rgb),0.3); }
.alert-info    { background: rgba(37,99,235,0.1); color: #93c5fd; border-color: rgba(37,99,235,0.3); }

/* ==================== Dropdown ==================== */
.dropdown-menu {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.dropdown-item { color: var(--text); border-radius: var(--radius-sm); font-size: 13px; padding: 7px 12px; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--surface-2); color: var(--brand); }
.dropdown-divider { border-color: var(--border); }
.dropdown-header { color: var(--muted); padding: 8px 12px; }

.accordion-item { background: transparent; margin-bottom: 6px; }
.accordion-button {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-weight: 600;
  font-size: 14px;
}
.accordion-button:not(.collapsed) { background: var(--surface-2); color: var(--brand); box-shadow: none; }
.accordion-body { background: var(--surface); border: 1px solid var(--border); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); color: var(--muted); padding: 14px; font-size: 13px; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface-3); }

/* Breadcrumb */
.breadcrumb-dark .breadcrumb { background: transparent; margin: 0 0 10px; font-size: 12px; padding: 0; }
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }
.breadcrumb-dark .breadcrumb-item a { color: var(--muted); }
.breadcrumb-dark .breadcrumb-item.active { color: var(--brand); }

/* Empty state */
.empty-state {
  text-align: center; padding: 50px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.empty-state i { font-size: 60px; color: var(--muted-2); display: block; margin-bottom: 12px; opacity: 0.5; }

/* Error */
.error-page { padding: 60px 20px; }
.error-code {
  font-size: 120px; font-weight: 900; line-height: 1;
  color: var(--brand);
}

.pin-code {
  font-family: monospace;
  background: var(--bg-3);
  color: var(--brand);
  padding: 4px 10px; border-radius: 4px;
  font-size: 13px; font-weight: 700;
  border: 1px dashed var(--border-2);
}

.contact-info li { padding: 8px 0; font-size: 14px; }
.contact-info li i { color: var(--brand); margin-right: 8px; width: 20px; }

/* ==================== Admin Layout ==================== */
.admin-body { background: var(--bg); }
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--surface); border-right: 1px solid var(--border);
  padding: 18px; position: sticky; top: 0;
  height: 100vh; overflow-y: auto;
}
.admin-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 800;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.admin-logo i { color: var(--brand); font-size: 22px; }
.admin-logo small { color: var(--muted); font-weight: 500; font-size: 11px; }
.admin-nav { display: flex; flex-direction: column; gap: 1px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: 13px;
}
.admin-nav a:hover { background: var(--surface-2); color: var(--text); }
.admin-nav a.active { background: rgba(var(--brand-rgb),0.12); color: var(--brand); }
.admin-nav hr { border-color: var(--border); margin: 10px 0; }
.admin-content { padding: 22px; }
.admin-main { max-width: 1400px; }
.admin-stat {
  background: var(--surface); border: 1px solid var(--border);
  padding: 14px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
}
.admin-stat-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); display: grid; place-items: center; color: #fff; font-size: 18px; }
.admin-stat span { color: var(--muted); font-size: 11px; text-transform: uppercase; display: block; }
.admin-stat strong { font-weight: 700; font-size: 18px; }
.admin-thumb { width: 48px; height: 34px; background-size: cover; background-position: center; border-radius: 4px; border: 1px solid var(--border); }
.color-chip { display: inline-block; width: 16px; height: 16px; border-radius: 3px; margin-right: 2px; vertical-align: middle; }

@media (max-width: 992px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
}

/* ==================== Footer ==================== */
.site-footer {
  background: #0a0c11;
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin-top: 40px;
}
.footer-trust-row {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.footer-trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.footer-trust-item i {
  font-size: 20px;
  flex-shrink: 0;
}
.footer-trust-item strong { display: block; color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-trust-item small { font-size: 10px; color: var(--muted); }

.site-footer h6 { color: var(--text); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 3px 0; font-size: 13px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brand); }
.social-link {
  width: 34px; height: 34px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: inline-grid; place-items: center;
  color: var(--muted); transition: var(--transition);
  font-size: 14px;
}
.social-link:hover { background: var(--brand); color: #18181b; }

.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-badge {
  background: var(--surface); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 4px;
  font-size: 11px; color: var(--muted);
  font-weight: 600;
}
.pay-badge i { margin-right: 3px; color: var(--brand); }

.official-badges {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-top: 12px;
}
.official-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.official-badge:hover { color: var(--brand); border-color: var(--brand); }
.official-badge img { height: 16px; margin-right: 4px; vertical-align: middle; }

.footer-bottom {
  background: #06080c;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  font-size: 12px;
}

/* ==================== Responsive ==================== */
@media (max-width: 991px) { .trust-bar { display: none; } }
@media (max-width: 768px) {
  .header-row { grid-template-columns: auto auto; gap: 10px; }
  .header-search { grid-column: 1 / -1; order: 3; }
  .banner-slide { height: 240px; }
  .banner-content { padding: 0 20px; }
  .banner-title { font-size: 24px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
}

/* Subtle fade */
.site-main { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.news-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  color: var(--text);
}
.news-card:hover { border-color: var(--border-2); color: var(--text); }
.news-card-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.news-card-body { padding: 14px; }
.news-card-date { color: var(--muted); font-size: 11px; }
.news-card h3 { font-size: 14px; margin: 6px 0; }
.news-card p { color: var(--muted); font-size: 13px; margin: 0; }
.news-article-img { aspect-ratio: 21/9; background-size: cover; background-position: center; border-radius: var(--radius); border: 1px solid var(--border); }
.news-content { line-height: 1.75; }


/* ================================
   ANIMATIONS & MODERN TOUCHES
   ================================ */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease var(--d, 0ms), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Card hover micro tilt */
.listing-card, .pop-game, .promo-card, .strip-card, .cat-game-card, .type-card-big {
  will-change: transform;
}
.listing-card:hover .listing-card-img { transform: scale(1.03); }
.listing-card-img { transition: transform 0.5s ease; }

/* Promo cards bounce */
.promo-card { transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Logo idle glow */
.logo-badge {
  animation: logoGlow 3.5s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(var(--brand-rgb),0.35);
}
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(var(--brand-rgb),0.35); }
  50% { box-shadow: 0 6px 22px rgba(var(--brand-rgb),0.6); }
}

/* ================ Hero layout ================ */
.hero-banner .row { align-items: stretch; }
.hero-banner .col-lg-4, .hero-banner .col-lg-8 { display: flex; }
.hero-banner .banner-slider { width: 100%; }
.banner-slide { height: 100%; min-height: 340px; }

/* Campaign stack (sağ taraf) */
.campaign-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.campaign-card {
  --c: var(--brand);
  flex: 1;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  min-height: 100px;
}
.campaign-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px; background: var(--c);
}
.campaign-card:hover {
  transform: translateX(4px);
  border-color: var(--c);
  color: #fff;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--c) 30%, transparent);
}
.campaign-info { min-width: 0; }
.campaign-info strong { display: block; font-size: 14px; color: #fff; line-height: 1.2; }
.campaign-info small { color: rgba(255,255,255,0.75); font-size: 11px; }
.countdown {
  display: flex;
  align-items: baseline;
  gap: 3px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-family: monospace;
  color: var(--c);
  white-space: nowrap;
}
.countdown small { font-size: 9px; color: rgba(255,255,255,0.6); margin-right: 2px; font-weight: 400; }

/* ================ Stats counter strip ================ */
.stats-strip { padding: 20px 0; }
.stat-big {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.stat-big::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(var(--brand-rgb),0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.stat-big:hover::after { transform: translateX(100%); }
.stat-big i {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(var(--brand-rgb),0.12);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.stat-big strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1.1;
}
.stat-big small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ================ Activity feed ================ */
.activity-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}
.activity-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: var(--bg-3);
}
.activity-head strong { text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-2);
  animation: liveDot 1.5s infinite;
  box-shadow: 0 0 0 0 var(--green-2);
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.activity-body {
  max-height: 520px;
  overflow-y: auto;
  padding: 8px 0;
}
.activity-item {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  animation: slideInRight 0.5s ease both;
}
.activity-item:last-child { border-bottom: 0; }
.activity-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}
.activity-ico.activity-purchase { background: var(--green); }
.activity-ico.activity-listing { background: var(--accent); }
.activity-ico.activity-review { background: var(--brand); color: #18181b; }
.activity-ico.activity-deposit { background: var(--purple); }
.activity-body-row { flex: 1; min-width: 0; font-size: 12px; }
.activity-body-row > div { color: var(--text); margin-bottom: 2px; }
.activity-body-row strong { color: var(--brand); font-weight: 700; }
.activity-body-row small { display: block; color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-time { font-size: 10px !important; opacity: 0.7; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ================ Mega menu ================ */
.nav-mega-wrap { position: static; }
.nav-mega-trigger { font-weight: 700; color: var(--brand) !important; }
.nav-mega-trigger.active,
.nav-mega-trigger:hover { background: rgba(var(--brand-rgb),0.1) !important; }
.nav-mega {
  width: 720px;
  max-width: 92vw;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.nav-mega-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.nav-mega-col { padding: 18px; }
.nav-mega-col:first-child { background: var(--bg-3); border-right: 1px solid var(--border); }
.nav-mega-col h6 {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 700;
}
.nav-mega-link {
  --c: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-mega-link:hover { background: var(--surface-2); color: var(--c); }
.nav-mega-link i { color: var(--c); width: 16px; }
.nav-mega-link.all { color: var(--brand); font-weight: 600; }
.nav-mega hr { border-color: var(--border); margin: 10px 0; }
.nav-mega-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.nav-mega-game {
  --c: var(--brand);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.nav-mega-game:hover { background: color-mix(in srgb, var(--c) 15%, var(--bg-3)); border-color: var(--c); color: var(--c); transform: translateY(-2px); }

/* ================ Categories page ================ */
.type-card-big {
  --c: var(--brand);
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: left;
  color: var(--text);
  transition: var(--transition);
}
.type-card-big::before {
  content: '';
  position: absolute; top: -20%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, color-mix(in srgb, var(--c) 30%, transparent), transparent 70%);
  pointer-events: none;
  transition: var(--transition);
}
.type-card-big:hover { transform: translateY(-4px); border-color: var(--c); color: var(--text); }
.type-card-big:hover::before { transform: scale(1.4); }
.type-card-ico {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 70%, black 30%));
  color: #fff;
  font-size: 26px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--c) 35%, transparent);
  position: relative;
}
.type-card-big h3 { font-size: 18px; margin-bottom: 4px; position: relative; }
.type-card-count { color: var(--muted); font-size: 12px; position: relative; }

.cat-game-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  color: var(--text);
}
.cat-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--c);
  color: var(--text);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--c) 25%, transparent);
}
.cat-game-img {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-game-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,17,21,0.9) 100%);
}
.cat-game-pop {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--brand);
  color: #18181b;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.6px;
  z-index: 2;
}
.cat-game-body {
  padding: 10px 12px;
  text-align: center;
}
.cat-game-name { display: block; font-size: 13px; font-weight: 700; }
.cat-game-count { font-size: 11px; color: var(--muted); }

/* ================ SEO CTA ================ */
.seo-cta {
  background: linear-gradient(135deg, rgba(var(--brand-rgb),0.12), rgba(var(--brand-rgb),0.03));
  border: 1px solid rgba(var(--brand-rgb),0.3);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}
.seo-cta h5 { color: var(--brand); margin-bottom: 4px; }

/* ================ Toast ================ */
.toast-wrap {
  position: fixed;
  top: 90px; right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
  pointer-events: none;
}
.toast-item {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}
.toast-item.show { transform: translateX(0); opacity: 1; }
.toast-item i { font-size: 18px; flex-shrink: 0; }
.toast-item span { flex: 1; }
.toast-item.toast-success { border-left-color: var(--green); }
.toast-item.toast-success i { color: var(--green); }
.toast-item.toast-danger { border-left-color: var(--red); }
.toast-item.toast-danger i { color: var(--red); }
.toast-item.toast-warning { border-left-color: var(--brand); }
.toast-item.toast-info { border-left-color: var(--accent); }
.toast-item.toast-info i { color: var(--accent); }
.toast-close {
  background: none; border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

/* ================ CANLI DESTEK WIDGET ================ */
#liveChat {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 1500;
  font-size: 14px;
}
.lc-launcher {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #18181b;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(var(--brand-rgb),0.4);
  transition: var(--transition);
  position: relative;
  animation: lcPulse 2.5s ease-in-out infinite;
}
@keyframes lcPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(var(--brand-rgb),0.4); }
  50% { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(var(--brand-rgb),0.55); }
}
.lc-launcher:hover { transform: translateY(-4px) !important; animation-play-state: paused; }
.lc-launcher i { font-size: 18px; }
.lc-launcher-text { white-space: nowrap; }
.lc-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: grid; place-items: center;
  border: 2px solid var(--bg);
}
.lc-panel {
  position: absolute;
  bottom: 62px; right: 0;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 110px);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.lc-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lc-head {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #18181b;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lc-head-info { display: flex; align-items: center; gap: 10px; }
.lc-head-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: grid; place-items: center;
  font-size: 20px;
  color: #18181b;
}
.lc-head-info strong { display: block; font-size: 15px; }
.lc-head-info small { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(24,24,27,0.75); }
.lc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #16a34a;
  animation: liveDot 1.5s infinite;
}
.lc-close {
  background: rgba(0,0,0,0.15);
  border: 0;
  color: #18181b;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition);
}
.lc-close:hover { background: rgba(0,0,0,0.3); }
.lc-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}
.lc-welcome {
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.lc-welcome i { font-size: 40px; color: var(--brand); margin-bottom: 6px; display: block; }
.lc-msg { display: flex; gap: 8px; max-width: 85%; }
.lc-msg.in { align-self: flex-start; }
.lc-msg.out { align-self: flex-end; flex-direction: row-reverse; }
.lc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #18181b;
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.lc-bubble {
  background: var(--surface-2);
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 13px;
  color: var(--text);
  word-wrap: break-word;
  line-height: 1.4;
}
.lc-msg.out .lc-bubble {
  background: var(--brand);
  color: #18181b;
  border-bottom-right-radius: 4px;
}
.lc-msg.in .lc-bubble { border-bottom-left-radius: 4px; }
.lc-form {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.lc-form input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
}
.lc-form input:focus { outline: none; border-color: var(--brand); }
.lc-form .btn { border-radius: 50%; width: 38px; height: 38px; padding: 0; }
.lc-login {
  flex: 1;
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
}
.lc-login i { font-size: 40px; color: var(--brand); display: block; margin-bottom: 10px; }
.lc-login p { font-size: 13px; margin-bottom: 14px; }

@media (max-width: 576px) {
  .lc-launcher-text { display: none; }
  .lc-panel { width: 100vw; right: -20px; bottom: 70px; }
}


/* Banner slider boy duzeltmesi */
.hero-banner .banner-slider { height: 100%; }
.banner-slide { min-height: 360px; }
@media (max-width: 992px) {
  .campaign-stack { flex-direction: row; overflow-x: auto; }
  .campaign-card { min-width: 260px; }
}


/* ================================
   TEMA SİSTEMİ
   ================================ */

/* Varsayılan: dark + altın */
html[data-theme="dark"][data-accent="gold"],
html:not([data-theme]) {
  --bg: #0f1115;
  --bg-2: #141821;
  --bg-3: #1a1f2b;
  --surface: #1d232f;
  --surface-2: #242b3a;
  --surface-3: #2d3544;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --border-3: rgba(255,255,255,0.18);
  --text: #ecedf0;
  --muted: #9aa1b2;
  --muted-2: #6b7285;
  --brand: #fbbf24;
  --brand-2: #f59e0b;
  --brand-dark: #d97706;
  --brand-rgb: 251, 191, 36;
}

/* DARK + MAVİ */
html[data-theme="dark"][data-accent="blue"] {
  --bg: #0b1020;
  --bg-2: #121833;
  --bg-3: #171e3d;
  --surface: #1a2142;
  --surface-2: #222a54;
  --surface-3: #2b3567;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --text: #ecedf0;
  --muted: #9aa1b2;
  --muted-2: #6b7285;
  --brand: #3b82f6;
  --brand-2: #60a5fa;
  --brand-dark: #1d4ed8;
  --brand-rgb: 59, 130, 246;
}

/* DARK + MOR */
html[data-theme="dark"][data-accent="purple"] {
  --bg: #0d0a1a;
  --bg-2: #161126;
  --bg-3: #1d172f;
  --surface: #231c39;
  --surface-2: #2c2447;
  --surface-3: #382d58;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --text: #ecedf0;
  --muted: #9aa1b2;
  --muted-2: #6b7285;
  --brand: #a855f7;
  --brand-2: #c084fc;
  --brand-dark: #7e22ce;
  --brand-rgb: 168, 85, 247;
}

/* DARK + YEŞİL */
html[data-theme="dark"][data-accent="green"] {
  --bg: #0a1410;
  --bg-2: #111d18;
  --bg-3: #152823;
  --surface: #1b332b;
  --surface-2: #224138;
  --surface-3: #2c5248;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --text: #ecedf0;
  --muted: #9aa1b2;
  --muted-2: #6b7285;
  --brand: #22c55e;
  --brand-2: #4ade80;
  --brand-dark: #16a34a;
  --brand-rgb: 34, 197, 94;
}

/* LIGHT + ALTIN */
html[data-theme="light"][data-accent="gold"],
html[data-theme="light"]:not([data-accent]) {
  --bg: #f8fafc;
  --bg-2: #ffffff;
  --bg-3: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #e2e8f0;
  --border: rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.14);
  --border-3: rgba(0,0,0,0.22);
  --text: #18181b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --brand: #d97706;
  --brand-2: #f59e0b;
  --brand-dark: #b45309;
  --brand-rgb: 217, 119, 6;
}

/* LIGHT + MAVİ */
html[data-theme="light"][data-accent="blue"] {
  --bg: #f8fafc;
  --bg-2: #ffffff;
  --bg-3: #eef2ff;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e2e8f0;
  --border: rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.14);
  --text: #18181b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --brand: #2563eb;
  --brand-2: #3b82f6;
  --brand-dark: #1d4ed8;
  --brand-rgb: 37, 99, 235;
}

/* LIGHT + MOR */
html[data-theme="light"][data-accent="purple"] {
  --bg: #faf5ff;
  --bg-2: #ffffff;
  --bg-3: #f3e8ff;
  --surface: #ffffff;
  --surface-2: #f5f3ff;
  --surface-3: #ede9fe;
  --border: rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.14);
  --text: #18181b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --brand: #9333ea;
  --brand-2: #a855f7;
  --brand-dark: #7e22ce;
  --brand-rgb: 147, 51, 234;
}

/* LIGHT + YEŞİL */
html[data-theme="light"][data-accent="green"] {
  --bg: #f0fdf4;
  --bg-2: #ffffff;
  --bg-3: #dcfce7;
  --surface: #ffffff;
  --surface-2: #f0fdf4;
  --surface-3: #dcfce7;
  --border: rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.14);
  --text: #18181b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --brand: #16a34a;
  --brand-2: #22c55e;
  --brand-dark: #15803d;
  --brand-rgb: 22, 163, 74;
}

/* Light mode'da bazi adaptasyonlar */
html[data-theme="light"] body { background: var(--bg); color: var(--text); }
html[data-theme="light"] .trust-bar { background: #ffffff; border-color: var(--border); }
html[data-theme="light"] .topbar { background: var(--bg-2); }
html[data-theme="light"] .site-header { background: var(--bg-2); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select { background: #ffffff; border-color: var(--border-2); }
html[data-theme="light"] .listing-card,
html[data-theme="light"] .panel,
html[data-theme="light"] .ap-card,
html[data-theme="light"] .game-card,
html[data-theme="light"] .pop-game,
html[data-theme="light"] .strip-card,
html[data-theme="light"] .promo-card,
html[data-theme="light"] .news-card,
html[data-theme="light"] .cat-game-card,
html[data-theme="light"] .type-card-big,
html[data-theme="light"] .buy-card,
html[data-theme="light"] .seller-card,
html[data-theme="light"] .activity-panel,
html[data-theme="light"] .auth-card,
html[data-theme="light"] .filter-panel,
html[data-theme="light"] .panel-sidebar { background: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
html[data-theme="light"] .table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: #18181b;
  --bs-table-striped-bg: rgba(0,0,0,0.02);
  --bs-table-hover-bg: rgba(0,0,0,0.04);
  --bs-table-border-color: var(--border);
}
html[data-theme="light"] .dropdown-menu { background: #ffffff; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
html[data-theme="light"] .footer-bottom { background: #f1f5f9; }
html[data-theme="light"] .site-footer { background: var(--bg-3); }
html[data-theme="light"] .nav-games-item { background: transparent; }
html[data-theme="light"] .nav-games-item.active { background: color-mix(in srgb, var(--brand) 15%, transparent); }
html[data-theme="light"] .banner-slide::after {
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.85) 100%);
}
html[data-theme="light"] .banner-title { color: #0f1115; }
html[data-theme="light"] .banner-sub { color: #4b5563; }

/* TEMA DEĞİŞTİRİCİ WIDGET */
.theme-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1400;
}
.ts-toggle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--brand);
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.ts-toggle:hover { transform: rotate(30deg); border-color: var(--brand); }
.ts-panel {
  position: absolute;
  bottom: 58px;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 14px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ts-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ts-panel h6 {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
  font-weight: 700;
}
.ts-row { display: flex; gap: 8px; margin-bottom: 14px; }
.ts-row:last-child { margin-bottom: 0; }
.ts-opt {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ts-opt:hover { background: var(--surface-2); color: var(--text); }
.ts-opt.active { background: var(--brand); color: #18181b; border-color: var(--brand); }
.ts-swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.15);
}


/* ================================
   CANLI AKTİVİTE v2 - Yeniden
   ================================ */
.activity-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.activity-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
}
.activity-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb),0.05), transparent);
}
.activity-head strong {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 800;
  flex: 1;
}
.activity-head .live-count {
  background: rgba(34,197,94,0.15);
  color: #34d399;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: liveDot 1.8s infinite;
  box-shadow: 0 0 0 0 #22c55e;
  flex-shrink: 0;
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.activity-body {
  max-height: 600px;
  overflow-y: auto;
  padding: 6px 0;
}
.activity-body::-webkit-scrollbar { width: 4px; }
.activity-body::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 2px; }

.activity-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  transition: background 0.2s ease;
  animation: actSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes actSlide {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
.activity-item:last-child { border-bottom: 0; }
.activity-item:hover { background: rgba(var(--brand-rgb),0.03); }

.activity-item.is-new {
  background: rgba(34,197,94,0.07);
  animation: actPulse 1.2s ease-out;
}
@keyframes actPulse {
  0% { background: rgba(34,197,94,0.22); }
  100% { background: rgba(34,197,94,0.07); }
}

.activity-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.activity-ico.activity-purchase { background: linear-gradient(135deg, #16a34a, #22c55e); }
.activity-ico.activity-listing { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.activity-ico.activity-review { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #18181b; }
.activity-ico.activity-deposit { background: linear-gradient(135deg, #7c3aed, #a855f7); }

.activity-text { min-width: 0; }
.activity-text .aline {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 3px;
}
.activity-text .aline strong {
  color: var(--brand);
  font-weight: 700;
}
.activity-text .adetails {
  color: var(--muted);
  font-size: 12px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.activity-text .ameta {
  color: var(--muted-2);
  font-size: 10.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}
.activity-text .amount-chip {
  background: color-mix(in srgb, var(--brand) 15%, transparent);
  color: var(--brand);
  padding: 1px 7px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.activity-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.activity-footer i { color: var(--brand); }


/* ================================
   CİLA — legal, footer, küçük düzeltmeler
   ================================ */
.legal-page h1 { font-size: 26px; margin-bottom: 12px; }
.legal-page h3 { font-size: 16px; margin: 18px 0 8px; color: var(--brand); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body strong { color: var(--text); }

.corp-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 8px; }
.corp-list li {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
}
.corp-list li strong { color: var(--text); margin-right: 4px; }
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cert-item i { font-size: 16px; }

.pay-method { padding: 24px !important; height: 100%; }
.pay-method i { font-size: 36px; margin-bottom: 8px; }
.pay-method h5 { font-size: 15px; margin-bottom: 4px; }
.pay-method p { color: var(--muted); font-size: 12px; margin: 0 0 8px; }
.pay-logo-row { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.pay-logo {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.contact-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.cc-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.cc-item:hover { background: var(--brand); color: #18181b; border-color: var(--brand); }

.pay-method.text-center { text-align: center; }

/* Stats counter strip - ada dose */
.stats-strip { padding: 14px 0 20px; }

/* Flash icin tebrik */
.alert i { margin-right: 4px; }

/* Listing card kuculduginde cok dar olmasin */
.listing-card-title { min-height: 40px; }

/* Input groups light mode */
html[data-theme="light"] .input-group-text { background: #f1f5f9; }
html[data-theme="light"] .ap-btn-ghost { background: #f1f5f9; }

/* Banner slide yukseklik - kampanya kutulari ile eşleşsin */
.banner-slide { min-height: 380px; }
@media (max-width: 991px) {
  .hero-banner .row { gap: 10px; }
  .campaign-stack { flex-direction: column; }
  .campaign-card { min-height: 70px; }
}

/* Stat box hover parilti tekrari */
.stat-big::after { transition: transform 1.2s ease; }

/* ================================
   🎁 HEDİYE KUPONU BANNER
   ================================ */
.gift-coupon-banner {
  position: relative;
  background: linear-gradient(135deg, #1a1025 0%, #0f1723 50%, #0d1b2a 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.gift-coupon-banner:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}
.gift-coupon-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: couponGlow 4s ease-in-out infinite;
}
@keyframes couponGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-30px, 20px) scale(1.15); opacity: 1; }
}
.gift-coupon-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.gift-coupon-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #fff;
  flex-shrink: 0;
  animation: giftBounce 2s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}
@keyframes giftBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-3deg); }
  75% { transform: translateY(-2px) rotate(2deg); }
}
.gift-coupon-text {
  flex: 1;
}
.gift-coupon-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #f5f3ff;
}
.gift-coupon-text p {
  color: #9aa1b2;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.gift-coupon-btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
  transition: all 0.3s ease;
}
.gift-coupon-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}
@media (max-width: 768px) {
  .gift-coupon-content { flex-direction: column; text-align: center; }
  .gift-coupon-banner { padding: 24px 20px; }
  .gift-coupon-text h3 { font-size: 18px; }
}

/* ================================
   🎨 GELİŞMİŞ ANİMASYONLAR
   ================================ */

/* Geliştirilmiş scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer efekti - promo kartları ve öne çıkan ürünler */
.promo-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}
.promo-card:hover::after {
  left: 125%;
}

/* Listing kart hover geliştirme */
.listing-card {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.listing-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), 
              0 0 0 1px rgba(var(--brand-rgb), 0.2);
}

/* Pop game kartları - hover efekt geliştirme */
.pop-game {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-game:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--c, var(--brand)) 30%, transparent);
}

/* Strip kartlar - pulse hover */
.strip-card {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.strip-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.15);
}

/* İstatistik sayaçları - smooth count animation glow */
.stat-big {
  transition: all 0.3s ease;
}
.stat-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.15);
}

/* Buton hover micro-animation */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.35);
}
.btn-sell {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-sell:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Logo image animasyonu */
.logo-img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .logo-img {
  transform: rotate(15deg) scale(1.1);
}

/* Trust bar shimmer animasyonu */
.trust-bar {
  background-size: 200% 100%;
  animation: trustShimmer 8s linear infinite;
}
@keyframes trustShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Campaign card hover */
.campaign-card {
  transition: all 0.35s ease;
}
.campaign-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Section title row - underline animasyonu */
.section-title-row h2 {
  position: relative;
}
.section-title-row h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.4s ease;
  border-radius: 2px;
}
.section-title-row:hover h2::after {
  width: 60px;
}

/* Activity panel - yeni item giriş animasyonu */
.activity-item {
  animation: actSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes actSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Footer social link hover */
.social-link {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.15);
}

/* SEO tags hover efekt */
.seo-tags a {
  transition: all 0.25s ease;
}
.seo-tags a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.2);
}

/* Footer trust items - stagger animation */
.footer-trust-item {
  animation: trustFadeIn 0.5s ease both;
}
.footer-trust-item:nth-child(1) { animation-delay: 0ms; }
.footer-trust-item:nth-child(2) { animation-delay: 100ms; }
.footer-trust-item:nth-child(3) { animation-delay: 200ms; }
.footer-trust-item:nth-child(4) { animation-delay: 300ms; }
.footer-trust-item:nth-child(5) { animation-delay: 400ms; }
.footer-trust-item:nth-child(6) { animation-delay: 500ms; }
@keyframes trustFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Payment badge hover */
.pay-badge {
  transition: all 0.25s ease;
}
.pay-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Carousel control hover */
.carousel-control-prev,
.carousel-control-next {
  transition: all 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: scale(1.15);
}

/* Official badges hover */
.official-badge {
  transition: all 0.25s ease;
}
.official-badge:hover {
  transform: translateY(-2px);
}

/* Navbar games item ripple efekti */
.nav-games-item {
  position: relative;
  overflow: hidden;
}
.nav-games-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.nav-games-item:hover::after {
  transform: scale(2.5);
}

