@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ================================================
   GAMERCODE DESIGN SYSTEM - v2.0 FROM SCRATCH
   ================================================ */

:root {
  /* Core Colors */
  --bg-primary: #0f172a;
  --bg-secondary: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.25);
  --bg-card-inner: rgba(15, 23, 42, 0.2);

  /* Accent Colors (Mapped names to preserve logic) */
  --neon-orange: #FF5E00;
  --neon-orange-glow: rgba(255, 94, 0, 0.6);
  --neon-teal: #00E5FF;
  --neon-teal-glow: rgba(0, 229, 255, 0.5);
  --neon-red: #ff3c55;
  --neon-green: #00E5FF;
  --neon-blue: #FF5E00;
  --neon-blue-ps: #FF5E00;

  /* Text */
  --text-white: #ffffff;
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --text-orange: #FF5E00;
  --text-teal: #00E5FF;

  /* Borders */
  --border-card: rgba(255,255,255,0.08);
  --border-orange: rgba(255, 94, 0, 0.6);
  --border-teal: rgba(0, 229, 255, 0.5);

  /* Fonts */
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Barlow', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  padding-top: 62px;
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at center, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.6) 80%, rgba(15, 23, 42, 0) 100%), url('../img/site-bg-wallpaper.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Sticky footer layout */
  display: flex;
  flex-direction: column;
}

body.has-site-submenu {
  padding-top: 97px;
}


/* Neon Background Shape Decorator — now handled via CSS background-image */
.neon-bg-deco { display: none; }

/* main must grow to push footer to bottom */
main { flex: 1 0 auto; }

/* ================================================
   HEADER
   ================================================ */
.site-header-stack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.05) 0%, rgba(11, 15, 25, 0.6) 50%, rgba(0, 229, 255, 0.05) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header-stack::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 94, 0, 0.5) 15%, rgba(0, 229, 255, 0.5) 50%, rgba(255, 94, 0, 0.5) 85%, transparent 100%);
  box-shadow: 0 1px 12px rgba(255, 94, 0, 0.2), 0 1px 20px rgba(0, 229, 255, 0.15);
  pointer-events: none;
}

.site-header {
  background: transparent;
  padding: 0 2.5rem;
  height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.site-submenu {
  position: relative;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.08) 0%, rgba(11, 15, 25, 0.45) 50%, rgba(0, 229, 255, 0.08) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.site-submenu__group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  height: 100%;
}

.site-submenu__group--left { justify-content: flex-start; }
.site-submenu__group--center { justify-content: center; }
.site-submenu__group--right {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

.site-submenu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 26px;
  max-width: 210px;
  padding: 0 0.8rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-submenu__link:hover {
  color: #fff;
  background: rgba(255, 94, 0, 0.08);
  border-color: rgba(255, 94, 0, 0.35);
  box-shadow: 0 0 12px rgba(255, 94, 0, 0.15);
  transform: translateY(-1px);
}

.site-submenu__link i {
  flex: 0 0 auto;
  font-size: 0.75rem;
}

.menu-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-submenu__link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}
.header-logo:hover {
  transform: scale(1.02);
}
.header-logo .site-logo-img {
  display: block;
  width: auto;
  height: 46px;
  min-width: 120px;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
}

.header-logo .site-logo-img--mobile {
  height: 42px;
  min-width: 110px;
  max-width: 180px;
}

.header-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, #FF8233 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 15px var(--neon-orange-glow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.header-logo:hover .logo-icon {
  box-shadow: 0 0 20px var(--neon-orange-glow), 0 0 10px rgba(0, 229, 255, 0.3);
}
.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header-logo .logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-logo .logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
  position: static;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
  transform: translateY(-1px);
}
.header-nav a.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.16) 0%, rgba(0, 229, 255, 0.08) 100%);
  border-color: rgba(255, 94, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.25), inset 0 0 10px rgba(255, 94, 0, 0.1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.header-notifications {
  position: relative;
  display: flex;
  align-items: center;
}

.header-bell {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.header-bell:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--neon-orange);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
}

.header-notification-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: rgba(13, 18, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1100;
  overflow: hidden;
}

.header-notification-head {
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

.header-notification-item,
.header-notification-all {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-notification-item strong,
.header-notification-all {
  color: #fff;
  font-size: 0.88rem;
}

.header-notification-item strong {
  display: block;
  line-height: 1.4;
}

.header-notification-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.header-notification-item.unread {
  background: rgba(255,94,0,0.07);
}

.header-notification-empty {
  padding: 1rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.header-notification-all {
  align-items: center;
  justify-content: center;
  border-bottom: 0;
  color: var(--neon-teal);
}

@media (max-width: 1500px) {
  .site-header {
    padding: 0 1.6rem;
    gap: 1rem;
  }

  .header-nav a {
    font-size: 0.84rem;
    padding: 0.4rem 0.7rem;
  }

  .header-right {
    gap: 0.8rem;
  }
}

@media (max-width: 1366px) {
  .site-header {
    padding: 0 1.1rem;
    gap: 0.75rem;
  }

  .header-nav a {
    font-size: 0.8rem;
    padding: 0.38rem 0.5rem;
  }

  .header-user,
  .btn-register {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-right {
    gap: 0.55rem;
  }
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(12,17,33,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  overflow: hidden;
}

.search-dropdown-group {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.search-dropdown-group:last-child {
  border-bottom: none;
}

.search-dropdown-title {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.search-result-item,
.search-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.search-result-item:hover,
.search-category-link:hover {
  background: rgba(255,255,255,0.04);
}

.search-result-main,
.search-category-link {
  min-width: 0;
}

.search-result-main strong,
.search-category-link strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}

.search-result-main span,
.search-category-link span {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  margin-top: 0.15rem;
}

.search-result-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.search-mini-btn,
.search-mini-link {
  border-radius: 7px;
  padding: 0.42rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.search-mini-btn {
  border: none;
  background: var(--neon-teal);
  color: #041017;
  cursor: pointer;
}

.search-mini-link {
  border: 1px solid rgba(240,90,40,0.35);
  color: var(--neon-orange);
}

.search-empty {
  padding: 0.9rem 1rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.header-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  min-height: 38px;
  padding: 0 0.78rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.header-user:hover {
  color: white;
  background: rgba(255,255,255,0.075);
  border-color: rgba(0,229,255,0.24);
}

/* KayÄ±t Ol button */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,94,0,0.12);
  border: 1px solid rgba(255,94,0,0.38);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-register:hover {
  background: rgba(255,94,0,0.92);
  border-color: rgba(255,130,51,0.9);
  color: white;
}
.header-logout-btn {
  background: rgba(255,60,60,0.1);
  border-color: rgba(255,60,60,0.5);
  color: #ff6060;
}
.header-logout-btn:hover {
  background: rgba(255,60,60,0.14);
  border-color: rgba(255,60,60,0.62);
  color: #ff7b7b;
}
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-light);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.header-cart:hover {
  color: white;
  background: rgba(0,229,255,0.08);
  border-color: rgba(0,229,255,0.28);
}
.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--neon-orange);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--neon-orange);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255,94,0,0.35);
}

/* ================================================
   PAGE WRAPPER
   ================================================ */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.all-games-page {
  max-width: 1800px;
  width: 95%;
}

/* ================================================
   HERO BANNER â€” Full-width cinematic (Index)
   ================================================ */
.hero-full {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  /* neon orange top/bottom border lines */
  border-top: 2px solid var(--neon-orange);
  border-bottom: 2px solid var(--neon-orange);
  box-shadow:
    0 -4px 20px rgba(240,90,40,0.4),
    0  4px 20px rgba(240,90,40,0.4);
  background: linear-gradient(180deg, #0b1220 0%, #0c0d18 50%, #0b1220 100%);
  margin: 1rem 0;
}

/* Dark center overlay so text is readable */
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11,18,32,0.6) 0%,
    rgba(11,13,24,0.15) 30%,
    rgba(11,13,24,0.15) 70%,
    rgba(11,18,32,0.6) 100%
  );
  z-index: 1;
}

/* Left character image */
.hero-char-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 100%;
  background: url('../img/hero-left.png') left bottom / contain no-repeat;
  z-index: 2;
}
.hero-char-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,18,32,0.2) 0%, rgba(11,18,32,0.75) 100%);
}

/* Right character image */
.hero-char-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 100%;
  background: url('../img/hero-right.png') right bottom / contain no-repeat;
  z-index: 2;
}
.hero-char-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(11,18,32,0.2) 0%, rgba(11,18,32,0.75) 100%);
}

/* FREE FIRE text label on right */
.hero-right-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: white;
  text-shadow: 0 0 15px rgba(255,80,80,0.8), 0 0 30px rgba(255,80,80,0.4);
}
.hero-right-label span { color: #ff3030; }

/* Center content */
.hero-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30%;
}
.hero-center h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 0.3rem;
}
.hero-center p {
  font-size: 0.85rem;
  color: var(--neon-teal);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.btn-hero {
  display: inline-block;
  background: var(--neon-orange);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s;
  box-shadow: 0 0 18px var(--neon-orange-glow);
}
.btn-hero:hover { background: #d94d20; }

/* Hero bottom dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.7rem;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
}
.hero-dot.active { background: var(--neon-teal); }

/* ================================================
   PLATFORM TABS (Index Style - 4 large buttons)
   ================================================ */
.platform-tabs-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 250px));
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.platform-tabs-index--many {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-content: stretch;
}
.ptab {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  min-height: 74px;
  padding: 1.15rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: 0.25s;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-white);
}
.ptab i { font-size: 1.4rem; }
.ptab-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}
.ptab:hover { border-color: rgba(255,255,255,0.2); background: #0e1629; }
.ptab.ptab-steam { border-color: rgba(102,192,244,0.3); box-shadow: inset 0 0 20px rgba(102,192,244,0.04); }
.ptab.ptab-epic { border-color: rgba(255,255,255,0.1); }
.ptab.ptab-xbox { background: #107c10; border-color: #107c10; box-shadow: 0 0 15px rgba(16,124,16,0.4); }
.ptab.ptab-ps { background: #1565c0; border-color: #1565c0; box-shadow: 0 0 15px rgba(21,101,192,0.4); }
.ptab.ptab-dynamic { border-color: rgba(255,255,255,0.07); box-shadow: none; }
.all-games-tag-tabs {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0 0 1.75rem;
}
.all-games-tag-tabs .ptab {
  max-width: none;
  min-height: 56px;
  border-color: rgba(var(--pill-rgb, 255, 94, 0), 0.36);
  box-shadow: inset 0 0 20px rgba(var(--pill-rgb, 255, 94, 0), 0.06);
}
.all-games-tag-tabs .ptab:hover,
.all-games-tag-tabs .ptab.active {
  border-color: rgba(var(--pill-rgb, 255, 94, 0), 0.82);
  box-shadow: 0 0 20px rgba(var(--pill-rgb, 255, 94, 0), 0.22), inset 0 0 20px rgba(var(--pill-rgb, 255, 94, 0), 0.08);
}

/* ================================================
   PLATFORM FILTER PILLS â€” Neon per-platform colors
   ================================================ */
.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
  justify-content: center;
}

/* Base pill styles */
.ppill,
.hpill,
.filter-btn,
.cat-btn {
  --pill-color: #243042;
  --pill-rgb: 36, 48, 66;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(var(--pill-rgb), 0.55);
  background: rgba(var(--pill-rgb), 0.16);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 15px rgba(var(--pill-rgb), 0.3);
  text-shadow: 0 0 10px rgba(0,0,0,0.45);
}
.ppill i, .hpill i, .filter-btn i, .cat-btn i { font-size: 1rem; }

/* Named pill themes */
.ppill.clr-orange, .hpill.clr-orange, .filter-btn.clr-orange, .cat-btn.clr-orange {
  --pill-color: #f3a900;
  --pill-rgb: 243, 169, 0;
}
.ppill.clr-teal, .hpill.clr-teal, .filter-btn.clr-teal, .cat-btn.clr-teal {
  --pill-color: #3ddc84;
  --pill-rgb: 61, 220, 132;
}
.ppill.clr-navy, .hpill.clr-navy, .filter-btn.clr-navy, .cat-btn.clr-navy {
  --pill-color: #003791;
  --pill-rgb: 0, 55, 145;
}
.ppill.clr-white, .hpill.clr-white, .filter-btn.clr-white, .cat-btn.clr-white {
  --pill-color: #171a21;
  --pill-rgb: 23, 26, 33;
}
.ppill.clr-green, .hpill.clr-green, .filter-btn.clr-green, .cat-btn.clr-green {
  --pill-color: #107c10;
  --pill-rgb: 16, 124, 16;
}
.ppill.clr-black, .hpill.clr-black, .filter-btn.clr-black, .cat-btn.clr-black {
  --pill-color: #171a21;
  --pill-rgb: 23, 26, 33;
}

.ppill.active,
.ppill.active-pill,
.hpill.active,
.hpill.active-pill,
.filter-btn.active,
.filter-btn.active-pill,
.cat-btn.active,
.cat-btn.active-pill,
.ppill:hover,
.hpill:hover,
.filter-btn:hover,
.cat-btn:hover {
  background: rgba(var(--pill-rgb), 0.24);
  border-color: rgba(var(--pill-rgb), 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 18px rgba(var(--pill-rgb), 0.42),
    0 0 34px rgba(var(--pill-rgb), 0.22);
  transform: translateY(-1px);
}

.ppill:focus-visible,
.hpill:focus-visible,
.filter-btn:focus-visible,
.cat-btn:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 3px rgba(var(--pill-rgb), 0.18),
    0 0 18px rgba(var(--pill-rgb), 0.4);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.section-hdr h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-white);
}
.section-hdr h2 span {
  font-weight: 400;
  text-transform: none;
  font-size: 1rem;
  color: var(--text-muted);
}
.arr-btns {
  display: flex;
  gap: 4px;
}
.arr-btn {
  width: 26px;
  height: 26px;
  background: #0e1629;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.7rem;
  transition: 0.2s;
}
.arr-btn:hover { background: #1a2540; color: white; }

/* ================================================
   PRODUCT CARD GRID
   ================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.home-product-page {
  max-width: 1800px;
  width: 95%;
}

.home-featured-carousel {
  margin-bottom: 2.5rem;
}

.home-featured-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 0.2rem;
  margin-bottom: 0;
}

.home-featured-track::-webkit-scrollbar {
  display: none;
}

.home-featured-track .prod-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: calc((100% - 3rem) / 4);
  height: 100%;
  margin-bottom: 0;
}

.home-product-page .home-featured-track .prod-card {
  flex: 0 0 clamp(220px, calc((100% - 3rem) / 4), 260px);
  min-width: clamp(220px, calc((100% - 3rem) / 4), 260px);
}

.home-featured-carousel.is-static .home-featured-track {
  overflow: visible;
}

.home-category-carousel {
  margin-bottom: 2.5rem;
}

.home-category-track.gm-vitrin-grid {
  display: flex;
  grid-template-columns: none;
  gap: 1rem;
  margin-bottom: 0;
}

.home-category-track .gm-vitrin-card {
  flex: 0 0 clamp(220px, calc((100% - 3rem) / 4), 260px);
  min-width: clamp(220px, calc((100% - 3rem) / 4), 260px);
}

.home-category-track .gm-vitrin-thumb img {
  object-fit: cover;
}

.prod-grid.js-arrow-scroll-target,
.epin-grid.js-arrow-scroll-target,
.gift-grid.js-arrow-scroll-target {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.prod-grid.js-arrow-scroll-target::-webkit-scrollbar,
.epin-grid.js-arrow-scroll-target::-webkit-scrollbar,
.gift-grid.js-arrow-scroll-target::-webkit-scrollbar {
  display: none;
}

.prod-grid.js-arrow-scroll-target .prod-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: calc((100% - 3rem) / 4);
  margin-bottom: 0;
}

.epin-grid.js-arrow-scroll-target .epin-card {
  flex: 0 0 calc((100% - 1.5rem) / 3);
  min-width: calc((100% - 1.5rem) / 3);
}

.epin-grid.epin-grid--paged-six.js-arrow-scroll-target {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.epin-grid.epin-grid--paged-six.js-arrow-scroll-target .epin-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.epin-grid.epin-grid--paged-six.js-arrow-scroll-target .epin-card {
  flex: initial;
  min-width: 0;
}

.gift-grid.js-arrow-scroll-target .gift-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: calc((100% - 3rem) / 4);
  margin-bottom: 0;
}

.home-wide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.prod-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 10px rgba(240,90,40,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(240,90,40,0.2);
}
.prod-card.card-teal {
  border-color: var(--border-teal);
  box-shadow: 0 0 10px rgba(6,217,207,0.08);
}

.prod-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.prod-card-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--neon-orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}
.prod-card-badge.badge-teal {
  background: var(--neon-teal);
  color: #000;
}

.prod-card-body {
  padding: 0.7rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.prod-card-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
}
.prod-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.prod-card-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 2px 0;
}
.price-old {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: line-through;
}
.price-new {
  color: var(--neon-orange);
  font-weight: 800;
  font-size: 0.95rem;
}
.price-new.red { color: var(--neon-red); }

.btn-buy {
  display: block;
  width: 100%;
  background: var(--neon-teal);
  color: #000;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.42rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  transition: 0.2s;
  margin-top: auto;
}
.btn-buy:hover { background: #05bdb4; }

/* ================================================
   KAMPANYA / WIDE BANNER (horizontal promo)
   ================================================ */
.wide-promo {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 18px var(--neon-orange-glow);
  margin-bottom: 2rem;
  position: relative;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  min-height: 100px;
}
.wide-promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,32,0.97) 55%, rgba(10,14,32,0.5) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wide-promo-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 2rem;
  flex: 1;
}
.wide-promo-product-grid {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 0.6rem;
  width: 100%;
  max-width: none;
}
.wide-promo-content h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.wide-promo-content h3 .orange { color: var(--neon-orange); }
.wide-promo-content p {
  color: var(--neon-teal);
  font-weight: 600;
  font-size: 0.9rem;
}
.wide-promo-content span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 0.3rem;
}
.wide-promo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--neon-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
}

/* ================================================
   GAME SECTION (PopÃ¼ler / Kampanyalar style)
   Poster left + epin grid right
   ================================================ */
.game-section {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 15px rgba(240,90,40,0.07);
  overflow: hidden;
  padding: 1.2rem;
}
.game-section.teal-border {
  border-color: var(--border-teal);
  box-shadow: 0 0 15px rgba(6,217,207,0.07);
}

.game-poster {
  width: 200px;
  flex-shrink: 0;
  align-self: flex-start;
  aspect-ratio: 5 / 7;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--neon-orange);
  box-shadow: 0 0 20px var(--neon-orange-glow);
}
.game-poster.teal { border-color: var(--neon-teal); box-shadow: 0 0 20px var(--neon-teal-glow); }

.game-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-poster-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--neon-teal);
  color: black;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
}
.game-poster-badge.orange { background: var(--neon-orange); color: white; }
.game-poster-badge.red { background: var(--neon-red); color: white; }

.game-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.game-body-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.game-body-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Valorant special banner */
.valo-banner {
  background: rgba(6,217,207,0.06);
  border: 1px solid var(--border-teal);
  border-radius: 7px;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: inset 0 0 15px rgba(6,217,207,0.08), 0 0 10px rgba(6,217,207,0.1);
}
.valo-banner i {
  font-size: 2rem;
  color: var(--neon-teal);
}
.valo-banner-txt {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--neon-teal);
  line-height: 1.1;
  letter-spacing: 1px;
}

/* General "discount" inner banner */
.inner-banner {
  background: linear-gradient(90deg, rgba(6,217,207,0.12) 0%, rgba(6,217,207,0.04) 100%);
  border: 1px solid var(--border-teal);
  border-radius: 7px;
  padding: 0.8rem 1.2rem;
}
.inner-banner h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--neon-teal);
}

/* Epin Package Grid (3 columns) */
.epin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.epin-card {
  background: var(--bg-card-inner);
  border: 1px solid rgba(6,217,207,0.2);
  border-radius: 7px;
  padding: 0.75rem 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: 0.2s;
}
.epin-card:hover { border-color: var(--neon-teal); }
.epin-card.red-border { border-color: rgba(255,60,85,0.25); }
.epin-card.red-border:hover { border-color: var(--neon-red); }

.epin-card-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--neon-teal);
  color: black;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
}
.epin-card-badge.orange { background: var(--neon-orange); color: white; }
.epin-card-badge.red { background: var(--neon-red); color: white; }

.epin-icon {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.epin-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }

.epin-title {
  font-weight: 800;
  font-size: 0.9rem;
}
.epin-ref {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.epin-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* ================================================
   GIFT CARD GRID (Hediye KartlarÄ± - 4 cols)
   ================================================ */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  padding: 0.8rem 0.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  box-shadow: 0 0 8px rgba(240,90,40,0.06);
  transition: 0.25s;
}
.gift-card:hover {
  box-shadow: 0 0 20px rgba(240,90,40,0.2);
  transform: translateY(-3px);
}
.gift-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
}
.gift-card-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--neon-orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
}

/* roblox 3 col */
.gift-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
  padding: 3rem 0 2rem;
}
.features-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon-wrap {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(240,90,40,0.1);
  border: 1px solid rgba(240,90,40,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--neon-orange);
}
.feature-item-txt h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}
.feature-item-txt p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.payment-badges {
  display: flex;
  gap: 6px;
  margin-top: 5px;
}
.payment-badge {
  background: white;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 3rem 2rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-white);
  letter-spacing: 0.3px;
}
.sitemap-cols {
  display: flex;
  gap: 2.5rem;
}
.sitemap-cols ul {
  list-style: none;
}
.sitemap-cols ul li {
  margin-bottom: 10px;
}
.sitemap-cols ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s;
}
.sitemap-cols ul li a:hover { color: var(--text-white); }

.footer-knowledge-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s;
}
.footer-knowledge-links a:hover { color: var(--text-white); }

.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fpay {
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fpay.paypal { color: #003087; background: white; }
.fpay.mc { color: #eb001b; background: white; font-size: 1.3rem; }
.fpay.visa { color: #1a1f71; background: white; font-size: 1.3rem; }
.fpay.troy { color: #0087a3; background: white; font-size: 0.95rem; }
.fpay.bank-transfer { color: #113b66; background: white; }
.fpay.stripe { color: #635bff; background: white; }
.fpay.crypto { color: #f7931a; background: white; }
.fpay.papara { color: #F42B5B; background: white; }

.footer-socials {
  display: flex;
  gap: 10px;
}
.fsocial {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.fsocial:hover { background: rgba(255,255,255,0.14); color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ================================================
   PAGE HERO (PopÃ¼ler / Kampanyalar / Hediye)
   ================================================ */
.page-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}
.page-hero h1.glow-teal {
  color: var(--neon-teal);
  text-shadow: 0 0 15px rgba(6,217,207,0.5), 0 0 40px rgba(6,217,207,0.2);
}
.page-hero h1.glow-orange {
  color: var(--neon-orange);
  text-shadow: 0 0 15px var(--neon-orange-glow), 0 0 40px rgba(240,90,40,0.2);
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Search box (PopÃ¼ler) */
.page-search {
  position: relative;
  display: flex;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(240,90,40,0.1);
}
.page-search input {
  flex: 1;
  background: var(--bg-card);
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}
.page-search input::placeholder { color: var(--text-muted); }
.page-search button {
  background: var(--neon-orange);
  border: none;
  color: white;
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.page-search button:hover { background: #d94d20; }

/* ================================================
   UTILITY
   ================================================ */
.section-sep { margin: 2rem 0; }
img { max-width: 100%; }
a { color: inherit; }

/* ================================================
   TEXT OVERFLOW GUARDS
   ================================================ */
.break-safe,
.panel-info-value,
.ticket-subject,
.prod-card-title,
.prod-card-sub {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ================================================
   AUTH PAGES (KayÄ±t / GiriÅŸ / Åifre SÄ±fÄ±rla)
   ================================================ */
.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.auth-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.5rem 2.8rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5), 0 0 80px rgba(6,217,207,0.04);
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: 1.8rem;
}
.auth-logo h1 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0.5rem 0 0.3rem;
  letter-spacing: 0.5px;
}
.auth-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Alert */
.auth-alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  display: block;
}
.auth-alert-success {
  background: rgba(6,217,207,0.1);
  border: 1px solid rgba(6,217,207,0.3);
  color: #06d9cf;
}
.auth-alert-error {
  background: rgba(240,90,40,0.1);
  border: 1px solid rgba(240,90,40,0.35);
  color: #f05a28;
}

/* Form layout */
.auth-form { width: 100%; }

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  min-width: 0;
}
/* Prevent children from overflowing the grid column */
.auth-form-row > .auth-field {
  min-width: 0;
  overflow: hidden;
}

.auth-field {
  margin-bottom: 1.1rem;
}
.auth-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-input-wrap:focus-within {
  border-color: rgba(6,217,207,0.5);
  box-shadow: 0 0 0 3px rgba(6,217,207,0.1);
}
.auth-input-wrap > i {
  padding: 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.auth-input-wrap input,
.auth-input-wrap textarea,
.auth-input-wrap select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 0.75rem 0.5rem 0.75rem 0;
}
.auth-input-wrap input::placeholder { color: var(--text-muted); }
.toggle-pw {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.toggle-pw:hover { color: var(--text-white); }

/* Checkboxes */
.auth-checks { margin-bottom: 1.4rem; }
.auth-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.auth-check-label input[type="checkbox"] { display: none; }
.check-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  transition: 0.2s;
  position: relative;
}
.auth-check-label input:checked + .check-custom {
  background: var(--neon-orange);
  border-color: var(--neon-orange);
  box-shadow: 0 0 8px rgba(240,90,40,0.5);
}
.auth-check-label input:checked + .check-custom::after {
  content: '';
  position: absolute;
  inset: 3px 4px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transform-origin: center;
}
.auth-link {
  color: var(--neon-teal);
  text-decoration: none;
}
.auth-link:hover { text-decoration: underline; }

/* Auth options row */
.auth-opts {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.auth-link-btn {
  background: none;
  border: none;
  color: var(--neon-teal);
  font-size: 0.83rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-main);
  transition: opacity 0.2s;
}
.auth-link-btn:hover { opacity: 0.75; }

/* Submit button */
.btn-auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--neon-orange);
  border: none;
  border-radius: 10px;
  color: white;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 0 10px rgba(240,90,40,0.4), 0 0 20px rgba(240,90,40,0.2);
  transition: box-shadow 0.25s, transform 0.15s;
}
.btn-auth-submit:hover {
  box-shadow: 0 0 14px #f05a28, 0 0 28px rgba(240,90,40,0.55), 0 0 50px rgba(240,90,40,0.25);
  transform: translateY(-1px);
}
.btn-auth-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-alt {
  text-align: center;
  margin-top: 1.3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ================================================
   PANEL PAGE
   ================================================ */
.panel-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.8rem;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

/* Sidebar */
.panel-sidebar {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.panel-user-card {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(6,217,207,0.08) 0%, rgba(240,90,40,0.05) 100%);
}

.panel-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-orange) 0%, #c0362a 100%);
  box-shadow: 0 0 18px rgba(240,90,40,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.panel-user-info {
  text-align: center;
}
.panel-user-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}
.panel-user-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  word-break: break-all;
}

.panel-nav { padding: 0.5rem 0; }
.panel-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  border-left: 3px solid transparent;
}
.panel-nav-item i { width: 16px; text-align: center; font-size: 0.95rem; }
.panel-nav-item:hover { color: var(--text-white); background: rgba(255,255,255,0.04); }
.panel-nav-item.active {
  color: var(--neon-teal);
  border-left-color: var(--neon-teal);
  background: rgba(6,217,207,0.06);
  box-shadow: inset 0 0 12px rgba(6,217,207,0.04);
}
.panel-nav-logout {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.8rem;
  color: rgba(255,60,60,0.7);
}
.panel-nav-logout:hover { color: #ff6060; background: rgba(255,60,60,0.06); }

/* Panel content area */
.panel-content { min-width: 0; }

.panel-section {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem;
}

.panel-section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.panel-section-title i { color: var(--neon-teal); }

.panel-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel-info-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  min-width: 0;
}
.panel-info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.panel-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.panel-info-note {
  margin-top: 1.2rem;
  padding: 0.7rem 1rem;
  background: rgba(6,217,207,0.06);
  border: 1px solid rgba(6,217,207,0.15);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.panel-info-note i { color: var(--neon-teal); margin-top: 1px; flex-shrink: 0; }

.marketplace-rise-nft-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  padding: 0.48rem 0.65rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.28);
  border-radius: 8px;
  color: #bbf7d0;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 500;
}
.marketplace-rise-nft-note i {
  color: #22c55e;
  font-size: 0.78rem;
  margin-top: 0.08rem;
  flex-shrink: 0;
}

/* Panel empty state */
.panel-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.panel-empty i { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; display: block; }
.panel-empty p { margin-bottom: 1.5rem; }

.panel-payment-methods {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 0.85rem;
}

.panel-payment-method {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.panel-payment-method input {
  display: none;
}

.panel-payment-method i {
  color: var(--neon-orange);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.panel-payment-method img {
  width: 54px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
}

.panel-payment-method--wallet {
  min-height: 86px;
  align-items: center;
}

.panel-payment-method strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.panel-payment-method span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.panel-payment-method.active {
  border-color: rgba(6,217,207,0.38);
  box-shadow: 0 0 0 1px rgba(6,217,207,0.18) inset, 0 0 18px rgba(6,217,207,0.12);
  transform: translateY(-1px);
}

.panel-inline-list {
  display: grid;
  gap: 0.8rem;
}

.panel-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.panel-history-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.panel-history-row--static:hover {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.07);
}

.panel-history-main {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.panel-history-main strong {
  color: var(--text-white);
  font-size: 0.92rem;
}

.panel-history-main span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.panel-history-side {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  text-align: right;
  flex-shrink: 0;
}

.panel-history-amount {
  color: var(--neon-teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.panel-gm-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at left top, rgba(240,90,40,0.08), transparent 35%),
    rgba(255,255,255,0.025);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.panel-gm-order-card:hover {
  transform: translateY(-1px);
  border-color: rgba(240,90,40,0.35);
  background:
    radial-gradient(circle at left top, rgba(240,90,40,0.12), transparent 38%),
    rgba(255,255,255,0.04);
}

.panel-gm-order-main {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.panel-gm-order-title strong {
  display: block;
  color: var(--text-white);
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}

.panel-gm-order-title span,
.panel-gm-order-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.panel-gm-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.panel-gm-order-meta i {
  color: var(--neon-orange);
}

.panel-gm-order-side {
  display: grid;
  justify-items: end;
  gap: 0.4rem;
  text-align: right;
  flex-shrink: 0;
}

.panel-gm-order-total {
  color: var(--text-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.panel-gm-order-status {
  font-size: 0.82rem;
  font-weight: 800;
}

.panel-gm-order-status i {
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .panel-payment-methods {
    grid-template-columns: 1fr;
  }

  .panel-history-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-history-side {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .panel-gm-order-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-gm-order-side {
    width: 100%;
    justify-items: start;
    text-align: left;
  }
}

/* Balance */
.panel-balance-card {
  background: linear-gradient(135deg, rgba(6,217,207,0.12) 0%, rgba(6,217,207,0.04) 100%);
  border: 1px solid rgba(6,217,207,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-balance-label { color: var(--text-muted); font-size: 0.88rem; }
.panel-balance-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-teal);
  text-shadow: 0 0 12px rgba(6,217,207,0.5);
  font-family: var(--font-heading);
}

.panel-amounts {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.panel-amt-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: 0.2s;
}
.panel-amt-btn:hover, .panel-amt-btn.active {
  border-color: var(--neon-orange);
  color: var(--neon-orange);
  box-shadow: 0 0 10px rgba(240,90,40,0.25);
}

.wallet-pay-page {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.wallet-pay-shell {
  display: grid;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

.wallet-pay-summary,
.wallet-pay-meta,
.wallet-pay-frame,
.wallet-pay-result {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,14,32,0.94);
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

.wallet-pay-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
}

.wallet-pay-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.wallet-pay-summary h1 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.wallet-pay-summary p {
  color: var(--text-light);
  line-height: 1.7;
  max-width: 720px;
}

.wallet-pay-badges {
  display: grid;
  justify-items: end;
  gap: 0.6rem;
  flex-shrink: 0;
}

.wallet-pay-badges strong {
  color: #fff;
  font-size: 1.4rem;
}

.wallet-pay-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.wallet-pay-status--pending {
  background: rgba(240,90,40,0.12);
  color: var(--neon-orange);
  border: 1px solid rgba(240,90,40,0.3);
}

.wallet-pay-status--open {
  background: rgba(6,217,207,0.12);
  color: var(--neon-teal);
  border: 1px solid rgba(6,217,207,0.28);
}

.wallet-pay-status--success {
  background: rgba(14,168,0,0.14);
  color: #8fff84;
  border: 1px solid rgba(14,168,0,0.35);
}

.wallet-pay-status--error {
  background: rgba(255,60,85,0.12);
  color: #ff758a;
  border: 1px solid rgba(255,60,85,0.32);
}

.wallet-pay-meta {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 0.9rem;
  padding: 1.1rem;
}

.wallet-pay-meta-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.wallet-pay-meta-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.wallet-pay-meta-item strong {
  color: #fff;
  font-size: 1rem;
}

.wallet-pay-frame {
  padding: 1rem;
}

.wallet-pay-frame iframe {
  border-radius: 18px;
  background: #08111d;
}

.wallet-pay-help {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(6,217,207,0.18);
  background: rgba(6,217,207,0.06);
  color: var(--text-light);
}

.wallet-pay-help i {
  color: var(--neon-teal);
  margin-top: 0.15rem;
}

.wallet-pay-result {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
}

.wallet-pay-result i {
  font-size: 1.35rem;
  margin-top: 0.12rem;
}

.wallet-pay-result strong {
  display: block;
  color: #fff;
  margin-bottom: 0.3rem;
}

.wallet-pay-result p {
  color: var(--text-light);
  line-height: 1.65;
}

.wallet-pay-result--success {
  border-color: rgba(14,168,0,0.26);
  background: rgba(14,168,0,0.08);
}

.wallet-pay-result--success i {
  color: #8fff84;
}

.wallet-pay-result--error {
  border-color: rgba(255,60,85,0.28);
  background: rgba(255,60,85,0.08);
}

.wallet-pay-result--error i {
  color: #ff758a;
}

.wallet-pay-result--pending {
  border-color: rgba(240,90,40,0.24);
  background: rgba(240,90,40,0.08);
}

.wallet-pay-result--pending i {
  color: var(--neon-orange);
}

.wallet-pay-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .wallet-pay-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .wallet-pay-badges {
    justify-items: start;
  }
}

/* ================================================
   CART TOAST NOTIFICATION
   ================================================ */
.cart-notif {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(6,217,207,0.3);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  color: var(--text-white);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(6,217,207,0.15), 0 8px 24px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.cart-notif.show { transform: translateY(0); opacity: 1; }
.cart-notif i { color: var(--neon-teal); font-size: 1rem; }

/* ================================================
   CART PAGE (sepet.php)
   ================================================ */
.cart-page {
  padding: 3rem 0 2rem;
}
.cart-page-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.cart-page-title i { color: var(--neon-orange); }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

/* Cart items list */
.cart-items-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}
.cart-items-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
}
.cart-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: background 0.2s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: rgba(255,255,255,0.02); }
.cart-item-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.9rem;
}
.cart-item-game {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.cart-item-price { color: var(--neon-teal); font-weight: 700; }
.cart-item-total { color: var(--neon-orange); font-weight: 700; }
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  font-family: var(--font-main);
}
.cart-qty-btn:hover {
  border-color: var(--neon-teal);
  color: var(--neon-teal);
}
.cart-qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
}
.cart-remove-btn {
  background: transparent;
  border: none;
  color: rgba(255,80,80,0.5);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 4px;
}
.cart-remove-btn:hover { color: #ff5050; }

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.cart-empty i { font-size: 3rem; opacity: 0.3; display: block; margin-bottom: 1rem; }

/* Cart confirm change bar */
.cart-change-bar {
  background: rgba(6,217,207,0.08);
  border: 1px solid rgba(6,217,207,0.2);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  display: none;
}
.cart-change-bar.visible { display: flex; }
.cart-change-bar span { color: var(--text-muted); font-size: 0.85rem; }
.btn-confirm-cart {
  background: var(--neon-teal);
  border: none;
  border-radius: 8px;
  color: #07091a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-main);
  transition: box-shadow 0.2s;
}
.btn-confirm-cart:hover { box-shadow: 0 0 12px rgba(6,217,207,0.5); }

/* Cart expire timer */
.cart-expire-info {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.cart-expire-info i { color: var(--neon-orange); }

/* Summary panel */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.8rem;
  position: sticky;
  top: 80px;
}
.cart-summary-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-summary-row.total span:last-child { color: var(--neon-orange); }

.btn-pay-balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--neon-teal) 0%, #04aaa2 100%);
  border: none;
  border-radius: 10px;
  color: #07091a;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(6,217,207,0.45), 0 0 28px rgba(6,217,207,0.2);
  transition: box-shadow 0.25s, transform 0.15s;
  letter-spacing: 0.2px;
  text-align: center;
}
.btn-pay-balance:hover {
  box-shadow: 0 0 20px rgba(6,217,207,0.65), 0 0 40px rgba(6,217,207,0.3);
  transform: translateY(-1px);
}

.btn-pay-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.7rem;
  background: transparent;
  border: 1px solid rgba(240,90,40,0.4);
  border-radius: 10px;
  color: var(--neon-orange);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  text-align: center;
}
.btn-pay-checkout:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 12px rgba(240,90,40,0.25);
  background: rgba(240,90,40,0.05);
}

/* Secure badge */
.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.cart-secure i { color: var(--neon-teal); }

/* ================================================
   SUPPORT TICKET LIST
   ================================================ */
.ticket-list { margin-top: 2rem; }
.ticket-list-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticket-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: 0.2s;
  min-width: 0;
}
.ticket-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.ticket-subject {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}
.ticket-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.ticket-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  white-space: nowrap;
}
.ticket-status.open   { background: rgba(6,217,207,0.12); color: var(--neon-teal); }
.ticket-status.closed { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.ticket-status.pending { background: rgba(240,90,40,0.12); color: var(--neon-orange); }
.ticket-status.success { background: rgba(14,168,0,0.14); color: #8fff84; }
.ticket-status.error { background: rgba(255,60,85,0.12); color: #ff758a; }

.msg-bubble-user {
  width: fit-content;
  max-width: 68%;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  overflow: visible;
}

.msg-bubble-user.from-uye {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  align-self: flex-start;
}

.msg-bubble-user.from-admin {
  background: rgba(6,217,207,0.07);
  border: 1px solid rgba(6,217,207,0.15);
  align-self: flex-end;
  margin-left: auto;
}

.msg-sender-user {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--neon-teal);
}

.from-uye .msg-sender-user {
  color: var(--text-muted);
}

.msg-date-user {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ================================================
   GAME MONEY
   ================================================ */
body.modal-open {
  overflow: hidden;
}

.page-hero-game-money {
  padding-top: 3.6rem;
  padding-bottom: 2.2rem;
}

.game-money-page {
  padding-top: 1.4rem;
  padding-bottom: 3rem;
}

.gm-section-head,
.gm-order-summary__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gm-section-head h2,
.gm-order-summary__head h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.4px;
}

.gm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-teal);
  margin-bottom: 0.5rem;
}

.gm-mini-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  font-size: 0.88rem;
}

.gm-mini-note i {
  color: var(--neon-orange);
}

.gm-category-grid {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 1.2rem;
}

.gm-category-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(6,217,207,0.12), transparent 30%),
    linear-gradient(180deg, rgba(15,20,40,0.95), rgba(8,11,23,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gm-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,217,207,0.35);
  box-shadow: 0 22px 46px rgba(0,0,0,0.35), 0 0 24px rgba(6,217,207,0.12);
}

.gm-category-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.gm-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gm-category-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7,9,26,0.82));
}

.gm-category-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(240,90,40,0.18);
  border: 1px solid rgba(240,90,40,0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.gm-category-body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.gm-category-body h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.gm-category-body p {
  color: var(--text-light);
  line-height: 1.6;
  min-height: 3.1rem;
}

.gm-category-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--neon-orange);
  font-weight: 700;
}

.gm-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
}

.gm-breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
}

.gm-product-list {
  display: grid;
  gap: 1rem;
}

.gm-product-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(10,14,32,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.gm-product-media img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.gm-product-main {
  min-width: 0;
}

.gm-product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.gm-product-title-row h3 {
  font-size: 1.55rem;
  color: #fff;
}

.gm-product-unit {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.gm-product-price {
  min-width: 140px;
  text-align: right;
}

.gm-price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(6,217,207,0.38);
  background: rgba(6,217,207,0.08);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(6,217,207,0.16);
}

.gm-product-price small {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-muted);
}

.gm-delivery-line,
.gm-product-description {
  margin-top: 0.8rem;
  line-height: 1.7;
}

.gm-delivery-line {
  color: #ffbf96;
}

.gm-delivery-line span {
  color: var(--neon-orange);
  font-weight: 700;
}

.gm-product-description {
  color: var(--text-light);
}

.gm-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gm-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gm-info-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  font-size: 0.82rem;
}

.gm-product-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gm-action-btn {
  min-width: 138px;
  border: none;
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.gm-action-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.gm-buy-btn {
  background: linear-gradient(135deg, #ff7a37, var(--neon-orange));
  box-shadow: 0 0 22px rgba(240,90,40,0.22);
}

.gm-sell-btn {
  background: linear-gradient(135deg, rgba(6,217,207,0.95), rgba(8,143,163,0.95));
  color: #05111a;
  box-shadow: 0 0 22px rgba(6,217,207,0.2);
}

.gm-empty-state {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: 240px;
  padding: 2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.gm-empty-state i {
  font-size: 2rem;
  color: var(--neon-orange);
}

.gm-order-modal[hidden] {
  display: none;
}

.gm-order-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.gm-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,5,13,0.78);
  backdrop-filter: blur(7px);
}

.gm-order-modal__card {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  margin: 8vh auto 0;
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15,20,40,0.98), rgba(8,11,23,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45), 0 0 26px rgba(240,90,40,0.12);
}

.gm-order-modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
}

.gm-order-modal__eyebrow {
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.gm-order-modal__card h3 {
  margin-top: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.gm-order-modal__card p {
  color: var(--text-light);
  line-height: 1.6;
}

.gm-order-shell {
  display: grid;
  gap: 1rem;
}

.gm-order-summary,
.gm-order-flow__block {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(10,14,32,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

.gm-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.gm-status-new {
  background: rgba(240,90,40,0.12);
  color: var(--neon-orange);
  border: 1px solid rgba(240,90,40,0.3);
}

.gm-status-progress {
  background: rgba(6,217,207,0.12);
  color: var(--neon-teal);
  border: 1px solid rgba(6,217,207,0.28);
}

.gm-status-done {
  background: rgba(14,168,0,0.14);
  color: #8fff84;
  border: 1px solid rgba(14,168,0,0.35);
}

.gm-status-cancelled {
  background: rgba(255,60,85,0.12);
  color: #ff758a;
  border: 1px solid rgba(255,60,85,0.32);
}

.gm-order-grid {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 0.9rem;
}

.gm-order-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.gm-order-card span,
.gm-order-flow__item span,
.gm-credit-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.gm-order-card strong,
.gm-order-flow__item strong,
.gm-credit-box strong {
  color: #fff;
  font-size: 1rem;
}

.gm-order-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gm-order-flow__block h3 {
  margin-bottom: 1rem;
}

.gm-order-flow__item + .gm-order-flow__item {
  margin-top: 1rem;
}

.gm-order-flow__block p {
  color: var(--text-light);
  line-height: 1.75;
}

.gm-credit-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(14,168,0,0.1);
  border: 1px solid rgba(14,168,0,0.22);
}

@media (max-width: 900px) {
  .gm-product-row,
  .gm-order-flow {
    grid-template-columns: 1fr;
  }

  .gm-product-title-row,
  .gm-action-row,
  .gm-section-head,
  .gm-order-summary__head {
    flex-direction: column;
    align-items: stretch;
  }

  .gm-product-price {
    text-align: left;
  }

  .gm-product-actions {
    width: 100%;
    flex-direction: column;
  }

  .gm-action-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .gm-category-grid {
    grid-template-columns: 1fr;
  }

  .gm-product-row {
    padding: 0.85rem;
  }

  .gm-product-media img {
    height: 190px;
  }

  .gm-product-title-row h3 {
    font-size: 1.2rem;
  }

  .gm-price-tag {
    font-size: 1.15rem;
  }

  .gm-order-modal__card {
    margin-top: 4vh;
    padding: 1.2rem;
  }
}

.gm-hero-shell {
  padding: 2rem 0 0.75rem;
}

.gm-hero-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(240,90,40,0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(6,217,207,0.13), transparent 26%),
    linear-gradient(145deg, rgba(14,19,38,0.96), rgba(7,10,23,0.98));
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}

.gm-hero-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.gm-hero-card p {
  max-width: 720px;
  color: var(--text-light);
  line-height: 1.7;
}

.gm-hero-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.9rem;
  min-width: 260px;
}

.gm-hero-metric {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.gm-hero-metric strong {
  font-size: 1.45rem;
  color: #fff;
}

.gm-hero-metric span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.gm-hero-card--inner {
  align-items: center;
}

.gm-breadcrumbs--hero {
  margin-bottom: 0;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
}

.gm-showcase-frame,
.gm-product-list--framed,
.gm-order-shell--showcase {
  padding: 1.1rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

.gm-section-head--compact {
  margin-bottom: 1rem;
}

.gm-category-grid--compact {
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 0.95rem;
}

.gm-category-card--compact {
  border-radius: 20px;
}

.gm-category-thumb--compact {
  aspect-ratio: 16 / 8.8;
}

.gm-category-thumb--compact::after {
  background: linear-gradient(180deg, rgba(7,9,26,0.08), rgba(7,9,26,0.58));
}

.gm-category-body--compact {
  padding: 0.95rem 1rem 1rem;
}

.gm-category-body--compact h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.gm-product-row--market {
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    rgba(10,14,32,0.96);
}

.gm-product-media--market img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
}

.gm-action-row--market {
  display: grid;
  grid-template-columns: auto minmax(220px, 300px) 170px;
  align-items: center;
  gap: 1rem;
}

.gm-qty-box {
  display: grid;
  gap: 0.45rem;
  justify-self: start;
}

.gm-qty-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gm-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.gm-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.gm-qty-input {
  width: 54px;
  border: none;
  background: transparent;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
}

.gm-price-stack {
  display: grid;
  gap: 0.7rem;
}

.gm-price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.gm-price-panel span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.gm-price-panel strong {
  font-size: 1.05rem;
  color: #fff;
}

.gm-price-panel--sell {
  border-color: rgba(240,90,40,0.26);
  box-shadow: inset 0 0 0 1px rgba(240,90,40,0.04);
}

.gm-price-panel--buyback {
  border-color: rgba(6,217,207,0.24);
  box-shadow: inset 0 0 0 1px rgba(6,217,207,0.04);
}

.gm-product-actions--stack {
  display: grid;
  gap: 0.7rem;
  width: 100%;
}

.gm-product-actions--stack .gm-action-btn {
  width: 100%;
  min-width: 0;
}

.gm-order-shell--showcase {
  gap: 1.15rem;
}

@media (max-width: 980px) {
  .gm-hero-card,
  .gm-action-row--market {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gm-hero-side {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .gm-product-row--market {
    grid-template-columns: 1fr;
  }

  .gm-product-media--market img {
    width: 100%;
    height: 190px;
  }

.gm-price-stack,
.gm-product-actions--stack {
  width: 100%;
  }
}

.gm-category-grid--compact {
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
}

.gm-category-thumb--compact {
  aspect-ratio: 4 / 3;
}

.gm-category-thumb--compact img {
  max-height: 170px;
}

.gm-product-list--framed {
  display: grid;
  gap: 0.9rem;
}

.gm-product-row--compact-market {
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  padding: 0.95rem 1rem;
}

.gm-product-row--showcase {
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(240,90,40,0.55);
  box-shadow:
    0 0 0 1px rgba(240,90,40,0.16) inset,
    0 0 24px rgba(240,90,40,0.16);
  background:
    linear-gradient(180deg, rgba(12,19,38,0.98), rgba(7,12,26,0.96)),
    rgba(9,13,27,0.98);
}

.gm-product-row--compact-market .gm-product-media--market img {
  width: 84px;
  height: 84px;
}

.gm-product-main--showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.gm-product-title-row--showcase {
  margin-bottom: 0.85rem;
}

.gm-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8b47, #f05a28);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  box-shadow: 0 0 20px rgba(240,90,40,0.26);
}

.gm-product-unit--showcase {
  margin-top: 0.85rem;
  color: #3fd6ff;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.gm-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.gm-product-meta-item {
  min-width: 0;
}

.gm-product-meta-label {
  display: block;
  margin-bottom: 0.42rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gm-product-meta-value {
  color: #f0f5ff;
  font-size: 0.98rem;
  line-height: 1.5;
}

.gm-product-purchase {
  display: grid;
  grid-template-columns: auto auto minmax(240px, auto);
  align-items: center;
  gap: 0.85rem;
}

.gm-product-price-box {
  min-width: 118px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(240,90,40,0.68);
  background: rgba(18,22,37,0.9);
  box-shadow: inset 0 0 0 1px rgba(240,90,40,0.12);
  text-align: center;
}

.gm-product-price-box strong {
  color: #ffd3bb;
  font-size: 1.45rem;
  line-height: 1;
}

.gm-qty-box--showcase {
  gap: 0.35rem;
}

.gm-qty-box--showcase .gm-qty-label {
  padding-left: 0.4rem;
  color: #ffb58d;
  letter-spacing: 0.04em;
  text-transform: none;
}

.gm-qty-box--showcase .gm-qty-control {
  gap: 0.35rem;
  padding: 0.2rem;
  border-radius: 15px;
  border: 1px solid rgba(240,90,40,0.3);
  background: rgba(15,20,35,0.92);
}

.gm-qty-box--showcase .gm-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(240,90,40,0.12);
  color: #ff9f72;
}

.gm-qty-box--showcase .gm-qty-input {
  width: 44px;
  font-size: 1.05rem;
}

.gm-product-actions--showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gm-product-actions--showcase .gm-action-btn {
  min-width: 0;
  height: 52px;
  border-radius: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.gm-product-actions--showcase .gm-buy-btn {
  box-shadow: 0 0 18px rgba(240,90,40,0.3);
}

.gm-product-actions--showcase .gm-sell-btn {
  box-shadow: 0 0 18px rgba(6,217,207,0.24);
}

.gm-market-layout {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.gm-market-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gm-price-stack--inline {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  display: grid;
  gap: 0.75rem;
  flex: 1;
}

.gm-product-actions--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gm-product-meta-grid--single {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.gm-qty-input::-webkit-outer-spin-button,
.gm-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gm-qty-input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.gm-waiting-text {
  color: var(--neon-orange);
  animation: gmPulse 1s ease-in-out infinite;
}

.gm-ready-character {
  color: #4ade80;
}

@keyframes gmPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 900px) {
  .gm-market-top,
  .gm-product-actions--inline,
  .gm-price-stack--inline,
  .gm-product-main--showcase,
  .gm-product-meta-grid,
  .gm-product-purchase,
  .gm-product-actions--showcase {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gm-market-top,
  .gm-product-main--showcase,
  .gm-product-purchase {
    align-items: stretch;
  }

  .gm-product-row--showcase {
    grid-template-columns: 1fr;
  }

  .gm-product-row--showcase .gm-product-media--market img {
    width: 100%;
    height: 220px;
  }

  .gm-product-price-box,
  .gm-qty-box--showcase {
    width: 100%;
  }
}

/* ================================================
   STREAMERS
   ================================================ */
.streamer-hero {
  padding: 2rem 0 1.1rem;
}

.streamer-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(240,90,40,0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(6,217,207,0.15), transparent 30%),
    linear-gradient(145deg, rgba(14,19,38,0.97), rgba(7,10,23,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 64px rgba(0,0,0,0.28);
}

.streamer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--neon-teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.streamer-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.95;
  margin-bottom: 0.9rem;
}

.streamer-hero-copy p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 760px;
}

.streamer-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.streamer-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.86rem;
}

.streamer-hero-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-self: stretch;
}

.streamer-hero-metric {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.streamer-hero-metric:first-child {
  grid-column: 1 / -1;
}

.streamer-hero-metric strong {
  font-size: 1.8rem;
}

.streamer-hero-metric span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.streamer-hub {
  padding-top: 0.6rem;
  padding-bottom: 3rem;
}

.streamer-filter-bar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.streamer-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.streamer-search-box i {
  color: var(--neon-orange);
}

.streamer-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
}

.streamer-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.streamer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.streamer-chip:hover,
.streamer-chip.active {
  color: #fff;
  border-color: rgba(240,90,40,0.42);
  box-shadow: 0 0 18px rgba(240,90,40,0.12);
}

.streamer-featured-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.streamer-featured-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, rgba(14,19,38,0.98), rgba(7,10,23,0.98));
}

.streamer-featured-cover {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.34;
}

.streamer-featured-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,18,0.22), rgba(6,10,18,0.88));
}

.streamer-featured-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
  padding: 1.15rem;
}

.streamer-featured-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(240,90,40,0.18);
  border: 1px solid rgba(240,90,40,0.35);
  color: #fff;
}

.streamer-featured-content strong {
  color: #fff;
  font-size: 1.2rem;
}

.streamer-featured-content span:last-child {
  color: var(--text-light);
}

.streamer-grid {
  display: grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap: 1rem;
}

.streamer-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(14,19,38,0.98), rgba(7,10,23,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.streamer-card-top {
  position: relative;
  display: block;
  text-decoration: none;
}

.streamer-card-cover {
  height: 140px;
  background:
    linear-gradient(145deg, rgba(240,90,40,0.22), rgba(6,217,207,0.18)),
    linear-gradient(180deg, rgba(8,11,23,0.7), rgba(8,11,23,0.1));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.streamer-live-pill {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--streamer-accent, #ff3c55) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--streamer-accent, #ff3c55) 42%, transparent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.streamer-card-avatar {
  position: absolute;
  left: 1rem;
  bottom: -38px;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid rgba(8,11,23,0.98);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.streamer-card-body {
  padding: 3.3rem 1rem 1rem;
}

.streamer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.streamer-card-head h3 {
  font-size: 1.24rem;
  margin-bottom: 0.18rem;
}

.streamer-card-head p {
  color: var(--text-muted);
}

.streamer-min-pill {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 28%, transparent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.streamer-card-bio {
  margin-top: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  min-height: 4.7rem;
}

.streamer-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.streamer-card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.82rem;
}

.streamer-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.streamer-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-family: var(--font-main);
  line-height: 1.1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, filter .2s ease, transform .2s ease;
}

.streamer-btn--solid {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 46%),
    linear-gradient(135deg, color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 92%, #ffffff 8%), color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 78%, #050816 22%));
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 50%, rgba(255,255,255,.24)),
    0 12px 24px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 18%, transparent);
}

.streamer-btn--solid:hover,
.streamer-btn--solid:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 62%, rgba(255,255,255,.3)),
    0 16px 30px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 24%, transparent);
  filter: brightness(1.04);
}

.streamer-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}

.streamer-btn--ghost:hover,
.streamer-btn--ghost:focus-visible {
  background: rgba(255,255,255,0.075);
  border-color: color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 38%, rgba(255,255,255,0.08));
}

.streamer-btn:disabled,
.streamer-btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  filter: none;
  box-shadow: none;
}

.streamer-btn--block {
  width: 100%;
}

.streamer-detail-hero {
  position: relative;
  background:
    linear-gradient(145deg, rgba(240,90,40,0.16), rgba(6,217,207,0.12)),
    linear-gradient(180deg, rgba(8,11,23,0.88), rgba(8,11,23,0.98));
  background-size: cover;
  background-position: center;
}

.streamer-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,26,0.35), rgba(7,9,26,0.92));
}

.streamer-detail-shell {
  position: relative;
  z-index: 1;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.streamer-detail-profile {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
}

.streamer-detail-avatar {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.streamer-detail-copy {
  flex: 1;
}

.streamer-detail-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.streamer-detail-title h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.streamer-detail-sub {
  margin-top: 0.8rem;
  color: var(--text-light);
  max-width: 780px;
  line-height: 1.75;
}

.streamer-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.streamer-detail-tags span {
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 25%, rgba(255,255,255,0.1));
  font-size: 0.84rem;
}

.streamer-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.streamer-detail-stats div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 0.3rem;
}

.streamer-detail-stats strong {
  font-size: 1.28rem;
}

.streamer-detail-stats span {
  color: var(--text-muted);
}

.streamer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.2rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.streamer-detail-main {
  display: grid;
  gap: 1rem;
}

.streamer-panel,
.streamer-donate-card {
  padding: 1.35rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(14,19,38,0.96), rgba(7,10,23,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.streamer-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.streamer-panel-head h2,
.streamer-donate-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.streamer-socials {
  display: flex;
  gap: 0.55rem;
}

.streamer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 24%, rgba(255,255,255,0.08));
  color: #fff;
  text-decoration: none;
}

.streamer-socials a:hover {
  border-color: color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 58%, transparent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 16%, transparent);
}

.streamer-panel p,
.streamer-donate-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.streamer-panel-note {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.streamer-empty {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.streamer-support-list {
  display: grid;
  gap: 0.8rem;
}

.streamer-support-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.streamer-support-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.streamer-support-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.streamer-support-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.streamer-support-item b {
  color: var(--streamer-accent, var(--neon-orange));
  white-space: nowrap;
}

.streamer-donate-card {
  position: sticky;
  top: 84px;
}

.streamer-donate-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.streamer-amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.streamer-amount-btn {
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.streamer-amount-btn.active,
.streamer-amount-btn:hover {
  border-color: color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 40%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 12%, transparent);
}

.streamer-message-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: .92rem;
  padding: .9rem 1rem;
  line-height: 1.6;
  min-height: 132px;
  resize: vertical;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.streamer-message-textarea:focus {
  border-color: color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 42%, rgba(255,255,255,.1));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--streamer-accent, var(--neon-orange)) 10%, transparent);
  background: rgba(255,255,255,.05);
}

@media (max-width: 980px) {
  .streamer-hero-card,
  .streamer-detail-grid,
  .streamer-featured-row {
    grid-template-columns: 1fr;
  }

  .streamer-detail-stats {
    grid-template-columns: 1fr;
  }

  .streamer-donate-card {
    position: static;
  }
}

.listing-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 0.8rem 0;
}

.listing-controls__form {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.listing-controls label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.listing-controls select,
.listing-controls input[type="search"] {
  min-width: 170px;
  background: #121830;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  padding: 0.55rem 0.85rem;
  outline: none;
  color-scheme: dark;
}

.listing-controls input[type="search"] {
  min-width: 260px;
}

.listing-controls option {
  background: #121830;
  color: #fff;
}

.listing-controls__pages {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.listing-controls__current {
  color: #fff;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

.listing-controls .is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 720px) {
  .streamer-hero-side,
  .streamer-card-actions,
  .streamer-amount-grid,
  .streamer-detail-profile {
    grid-template-columns: 1fr;
    display: grid;
  }

  .streamer-detail-profile {
    align-items: start;
  }

  .streamer-card-head,
  .streamer-panel-head {
    flex-direction: column;
    align-items: stretch;
  }
}

.admin-tab-nav {
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
}

.admin-tab-btn {
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#cfe5ff;
  padding:.72rem 1rem;
  border-radius:999px;
  font:600 .82rem/1 'Outfit',sans-serif;
  cursor:pointer;
  transition:.2s ease;
}

.admin-tab-btn.active,
.admin-tab-btn:hover {
  background:rgba(6,217,207,.15);
  border-color:rgba(6,217,207,.35);
  color:#fff;
}

.admin-settings-panel {
  display:none;
}

.admin-settings-panel.active {
  display:block;
}

.admin-settings-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.admin-inline-checks {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  align-items:center;
}

.admin-inline-checks label,
.admin-module-card label {
  display:flex;
  gap:.55rem;
  align-items:center;
  color:#fff;
  font-weight:600;
}

.admin-info-card,
.admin-module-card,
.admin-current-media,
.admin-seo-preview {
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:1rem 1.1rem;
  color:#d9e7ff;
}

.admin-module-card {
  margin-bottom:1rem;
}

.admin-module-card p,
.admin-info-card div {
  color:var(--text-muted);
  line-height:1.6;
  margin:.35rem 0 0;
}

.admin-seo-title {
  color:#8ab4f8;
  font-size:.95rem;
  margin-bottom:.15rem;
}

.admin-seo-url {
  color:#34a853;
  font-size:.76rem;
  margin-bottom:.28rem;
}

.admin-seo-desc {
  color:rgba(255,255,255,.72);
  line-height:1.6;
  font-size:.84rem;
}

.marketplace-page {
  margin-top:2rem;
  margin-bottom:3rem;
  max-width: 1800px; /* Allow wide screens to fit 8 items */
  width: 95%;
}

.marketplace-page--wide-filters {
  max-width:1800px;
  width:95%;
}

.marketplace-hero {
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:flex-end;
  padding:2rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:radial-gradient(circle at top left, rgba(10,176,255,.12), transparent 35%), radial-gradient(circle at bottom right, rgba(255,122,40,.12), transparent 30%), rgba(7,12,24,.94);
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}

.marketplace-kicker {
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--neon-teal);
  margin-bottom:.7rem;
}

.marketplace-hero h1 {
  font-size:2rem;
  margin:0 0 .55rem;
}

.marketplace-hero p {
  margin:0;
  color:var(--text-muted);
  max-width:700px;
  line-height:1.7;
}

.marketplace-overview-bar {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.9rem;
  margin:1rem 0 1.2rem;
}

.marketplace-overview-item {
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:1rem 1.1rem;
}

.marketplace-overview-item span {
  display:block;
  color:var(--text-muted);
  font-size:.76rem;
  margin-bottom:.25rem;
}

.marketplace-overview-item strong {
  font-size:1.15rem;
  color:#fff;
}

.marketplace-category-cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:1rem;
  margin:1.2rem 0 1.8rem;
}

.marketplace-category-cards--select {
  margin-top:1.4rem;
}

.marketplace-category-card {
  --mp-cat-bg:#151A28;
  min-height:92px;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) 24px;
  align-items:center;
  gap:.95rem;
  padding:1rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg, var(--mp-cat-bg), rgba(7,12,24,.96));
  color:#fff;
  text-decoration:none;
  box-shadow:0 16px 36px rgba(0,0,0,.22);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.marketplace-category-card:hover {
  transform:translateY(-2px);
  border-color:rgba(0,229,255,.34);
  box-shadow:0 20px 42px rgba(0,0,0,.3), 0 0 22px rgba(0,229,255,.08);
}

.marketplace-category-card__icon {
  width:54px;
  height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
  padding:3px;
  color:var(--neon-teal);
  font-size:1.3rem;
  box-sizing:border-box;
}

.marketplace-category-card__icon img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:11px;
  display:block;
}

.marketplace-category-card__body {
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.28rem;
}

.marketplace-category-card__body strong {
  font-size:1rem;
  line-height:1.25;
}

.marketplace-category-card__body small {
  color:rgba(226,237,255,.74);
  font-size:.78rem;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.marketplace-category-card__arrow {
  color:rgba(255,255,255,.72);
  justify-self:end;
}

.marketplace-section-hdr {
  margin-top:.5rem;
}

.marketplace-section-hdr--grid-start {
  width:100%;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
  text-align:center;
}

.marketplace-section-hdr--grid-start h2 {
  width:100%;
}

.marketplace-selected-category {
  min-height:48px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem .9rem;
}

.marketplace-selected-category strong {
  color:#fff;
  line-height:1.25;
}

.marketplace-selected-category a {
  color:var(--neon-teal);
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}

.marketplace-category-strip {
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin:1.4rem 0 1.8rem;
}

.marketplace-chip {
  display:inline-flex;
  align-items:center;
  padding:.7rem 1rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#d7e7ff;
  text-decoration:none;
  transition:.2s ease;
}

.marketplace-chip.active,
.marketplace-chip:hover {
  background:rgba(240,90,40,.12);
  border-color:rgba(240,90,40,.35);
  color:#fff;
}

.marketplace-game-filter-top {
  display:grid;
  grid-template-columns:minmax(0,1fr) 230px;
  gap:.9rem;
  align-items:stretch;
  margin:1rem 0 1.15rem;
  padding:.8rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:linear-gradient(135deg, rgba(15,23,42,.84), rgba(7,12,24,.92));
  box-shadow:0 16px 40px rgba(0,0,0,.16);
}

.marketplace-page--wide-filters .marketplace-game-filter-top,
.marketplace-page--wide-filters .marketplace-filtered-listing-layout {
  width:90vw;
  max-width:2200px;
  margin-left:50%;
  transform:translateX(-50%);
}

.marketplace-server-panel {
  display:grid;
  align-content:start;
  gap:.55rem;
}

.marketplace-filter-toolbar-label {
  color:#fff;
  font-size:.82rem;
  font-weight:700;
}

.marketplace-server-strip {
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
}

.marketplace-server-strip .marketplace-chip {
  gap:.45rem;
}

.marketplace-sort-filter {
  display:grid;
  gap:.45rem;
  align-content:start;
  padding:0;
}

.marketplace-sort-filter label,
.marketplace-filter-group > label,
.marketplace-filter-group > span {
  color:#fff;
  font-size:.82rem;
  font-weight:700;
}

.marketplace-sort-filter select,
.marketplace-filter-group select,
.marketplace-filter-group input[type="text"],
.marketplace-price-filter-row input {
  width:100%;
  min-height:40px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  background:rgba(7,12,24,.92);
  color:#fff;
  padding:.55rem .65rem;
  outline:none;
}

.marketplace-filtered-listing-layout {
  display:grid;
  grid-template-columns:230px minmax(0,1fr);
  gap:1.8rem;
  align-items:start;
}

.marketplace-game-filter-panel {
  position:sticky;
  top:92px;
  padding:.85rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(15,23,42,.94), rgba(7,12,24,.96));
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}

.marketplace-game-filter-panel form,
.marketplace-filter-group {
  display:grid;
  gap:.75rem;
}

.marketplace-filter-group {
  padding-bottom:.75rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.marketplace-filter-choice-list {
  display:grid;
  gap:.42rem;
  max-height:190px;
  overflow:auto;
  padding-right:.15rem;
}

.marketplace-upgrade-type-tabs {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:.35rem;
}

.marketplace-upgrade-type-tabs button {
  min-height:32px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:9px;
  background:rgba(7,12,24,.88);
  color:#d7e7ff;
  font-size:.78rem;
  font-weight:700;
  cursor:pointer;
}

.marketplace-upgrade-type-tabs button.active {
  border-color:rgba(0,229,255,.7);
  background:rgba(0,229,255,.14);
  color:#fff;
  box-shadow:0 0 16px rgba(0,229,255,.14);
}

.marketplace-filter-choice-list label {
  display:flex;
  align-items:center;
  gap:.45rem;
  min-height:30px;
  color:#d7e7ff;
  font-size:.82rem;
  cursor:pointer;
}

.marketplace-filter-choice-list label[hidden] {
  display:none;
}

.marketplace-filter-choice-list input {
  accent-color:var(--neon-teal);
}

.marketplace-filter-choice-list input[type="radio"] {
  appearance:none;
  width:14px;
  height:14px;
  flex:0 0 14px;
  border:1px solid rgba(0,229,255,.55);
  border-radius:4px;
  background:rgba(7,12,24,.95);
  box-shadow:inset 0 0 0 2px rgba(7,12,24,.95);
}

.marketplace-filter-choice-list input[type="radio"]:checked {
  background:var(--neon-teal);
  border-color:var(--neon-teal);
}

.marketplace-price-filter-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
}

.marketplace-filter-submit {
  width:100%;
  justify-content:center;
}

.marketplace-filter-clear {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  color:#d7e7ff;
  text-decoration:none;
  background:rgba(255,255,255,.035);
  transition:.2s ease;
}

.marketplace-filter-clear:hover {
  border-color:rgba(240,90,40,.35);
  color:#fff;
  background:rgba(240,90,40,.12);
}

.marketplace-sort-filter__clear {
  width:100%;
}

.marketplace-listing-results {
  min-width:0;
}

.marketplace-item-searchbar {
  display:grid;
  gap:.55rem;
  margin:0 0 1rem;
}

.marketplace-page--wide-filters .marketplace-item-searchbar {
  width:90vw;
  max-width:2200px;
  margin-left:50%;
  transform:translateX(-50%);
}

.marketplace-item-searchbar label {
  color:#fff;
  font-size:.9rem;
  font-weight:800;
}

.marketplace-item-searchbar > div {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:.7rem;
  padding:.75rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.035);
}

.marketplace-item-searchbar input[type="search"] {
  min-height:44px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  background:rgba(7,12,24,.92);
  color:#fff;
  padding:.6rem .75rem;
  outline:none;
}

.marketplace-item-searchbar input[type="search"]:focus {
  border-color:rgba(0,229,255,.38);
  box-shadow:0 0 0 3px rgba(0,229,255,.08);
}

.marketplace-pagination {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
  margin:1.4rem 0 0;
}

.marketplace-pagination__btn,
.marketplace-pagination__current,
.marketplace-pagination__page {
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.marketplace-pagination__numbers {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  flex-wrap:wrap;
}

.marketplace-pagination__btn {
  padding:0 .95rem;
  transition:.2s ease;
}

.marketplace-pagination__page {
  min-width:42px;
  padding:0 .55rem;
  transition:.2s ease;
}

.marketplace-pagination__btn:not(.is-disabled):hover,
.marketplace-pagination__page:hover {
  border-color:rgba(0,229,255,.4);
  background:rgba(0,229,255,.1);
  color:#fff;
}

.marketplace-pagination__btn.is-disabled {
  opacity:.42;
  cursor:not-allowed;
}

.marketplace-pagination__current {
  min-width:42px;
  color:var(--neon-teal);
  border-color:rgba(0,229,255,.45);
  background:rgba(0,229,255,.12);
}

.marketplace-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap:1rem;
  align-items:start;
  justify-content:start;
}

.marketplace-grid--centered {
  justify-content:center;
}

.marketplace-card {
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  background:rgba(7,12,24,.95);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  min-height:280px;
  width:100%;
}

.marketplace-card--game-item {
  min-height:0;
  border-color:#FF5E00;
  box-shadow:0 18px 44px rgba(0,0,0,.22), 0 0 22px rgba(255,94,0,.22);
}

.marketplace-card:hover {
  transform:translateY(-2px);
  border-color:rgba(240,90,40,.3);
}

.marketplace-card-media {
  display:block;
  position:relative;
  width:100%;
  height:160px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.marketplace-card-media--game-item {
  height:auto;
  min-height:0;
  box-sizing:border-box;
  background:transparent;
  text-decoration:none;
}

.marketplace-set-badge {
  position:absolute;
  top:.75rem;
  left:.75rem;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:.35rem .65rem;
  border-radius:8px;
  background:rgba(255,94,0,.92);
  color:#fff;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:0;
  box-shadow:0 10px 24px rgba(255,94,0,.25);
}

.marketplace-set-badge--inline {
  position:static;
  top:auto;
  left:auto;
  min-height:30px;
  flex:0 0 auto;
}

.marketplace-set-badge--head {
  position:static;
  top:auto;
  left:auto;
  min-height:28px;
  flex:0 0 auto;
  text-transform:none;
  letter-spacing:0;
}

.marketplace-card-media img,
.listing-main-media img,
.listing-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.marketplace-card--rise-nft .marketplace-card-media--rise-nft {
  display:block;
  position:relative;
  height:260px;
  min-height:260px;
  aspect-ratio:1/1;
  overflow:hidden;
}

.marketplace-card--rise-nft .marketplace-card-media--rise-nft img {
  display:block;
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.marketplace-card-placeholder {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:rgba(255,255,255,.38);
  font-size:2rem;
}

.marketplace-item-media-panel {
  width:100%;
  height:100%;
  min-height:160px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:.55rem;
  padding:.9rem;
  background:radial-gradient(circle at top, rgba(255,94,0,.12), rgba(7,12,24,.96) 58%);
  color:#fff;
  text-align:center;
  overflow:hidden;
}

.marketplace-item-media-panel img,
.marketplace-item-media-empty {
  width:62px;
  height:62px;
  border-radius:12px;
  object-fit:contain;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.1);
  flex:0 0 auto;
}

.marketplace-item-media-empty {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
}

.marketplace-item-media-panel strong {
  max-width:100%;
  font-size:.9rem;
  line-height:1.25;
  overflow-wrap:anywhere;
}

.marketplace-item-feature-list {
  width:100%;
  display:grid;
  gap:.28rem;
  color:#cbd7ee;
  font-size:.72rem;
  line-height:1.25;
}

.marketplace-item-feature-list span {
  display:block;
  padding:.22rem .35rem;
  border-radius:6px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.055);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.marketplace-item-icon-strip {
  display:flex;
  justify-content:center;
  gap:.28rem;
  max-width:100%;
  margin-top:auto;
}

.marketplace-item-icon-strip--inline {
  justify-content:flex-start;
  margin-top:0;
  flex-wrap:wrap;
}

.marketplace-item-icon-strip img {
  width:16px;
  height:16px;
  border-radius:6px;
  object-fit:contain;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
}

.marketplace-item-icon-strip__empty {
  width:16px;
  height:16px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
  color:var(--text-muted);
  font-size:.72rem;
}

.marketplace-item-media-panel--card {
  min-height:160px;
}

.marketplace-item-media-panel--detail {
  min-height:260px;
  justify-content:center;
  padding:1.2rem;
}

.marketplace-item-media-panel--detail img,
.marketplace-item-media-panel--detail .marketplace-item-media-empty {
  width:92px;
  height:92px;
  border-radius:18px;
}

.marketplace-item-media-panel--detail strong {
  font-size:1.15rem;
}

.marketplace-item-media-panel--detail .marketplace-item-feature-list {
  max-width:520px;
  font-size:.9rem;
}

.marketplace-item-media-panel--detail .marketplace-item-feature-list span {
  white-space:normal;
  text-align:left;
  padding:.45rem .65rem;
}

.marketplace-card-server {
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  width:max-content;
  max-width:100%;
  margin:-.25rem 1rem .75rem;
  padding:.28rem .55rem;
  border-radius:8px;
  background:rgba(0,229,255,.1);
  color:#a5f3fc;
  font-size:.75rem;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.marketplace-status-badge {
  display:inline-flex;
  align-items:center;
  padding:.38rem .7rem;
  border-radius:999px;
  background:rgba(240,90,40,.14);
  color:#fff;
  font-size:.7rem;
  border:1px solid rgba(240,90,40,.28);
}

.marketplace-card-body {
  padding:1.1rem;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:.6rem;
}

.marketplace-card-set-row {
  display:flex;
  align-items:center;
  gap:.55rem;
  min-height:30px;
  margin-top:-.1rem;
  margin-bottom:.05rem;
}

.marketplace-card-meta {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  font-size:.78rem;
  color:var(--text-muted);
}

.marketplace-card-footer {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  font-size:.78rem;
  color:var(--text-muted);
  margin-top:auto;
}

.marketplace-card-category {
  color:var(--neon-teal);
}

.marketplace-card-headline {
  display:flex;
  justify-content:space-between;
  gap:.75rem;
  align-items:flex-start;
}

.marketplace-card h3 {
  margin:.55rem 0 .2rem;
  font-size:.98rem;
  line-height:1.35;
}

.marketplace-card h3 a {
  color:#fff;
  text-decoration:none;
}

.marketplace-card p {
  margin:0 0 .8rem;
  color:#94a7c6;
  font-size:.82rem;
  line-height:1.55;
}

.marketplace-card-footer strong,
.listing-price {
  color:#fff;
  font-size:1.3rem;
}

.marketplace-card-footer {
  align-items:flex-end;
}

.marketplace-card-footer div {
  display:flex;
  flex-direction:column;
  gap:.2rem;
}

.marketplace-seller-inline {
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}

.marketplace-online-dot {
  width:.48rem;
  height:.48rem;
  border-radius:999px;
  display:inline-block;
  flex:0 0 auto;
  background:#ef4444;
  box-shadow:0 0 0 1px rgba(239,68,68,.28);
}

.marketplace-online-dot.is-online {
  background:#22c55e;
  box-shadow:0 0 0 1px rgba(34,197,94,.35),0 0 8px rgba(34,197,94,.85);
  animation:marketplaceOnlinePulse 1.45s ease-in-out infinite;
}

@keyframes marketplaceOnlinePulse {
  0%,100% { opacity:.65; transform:scale(.92); }
  50% { opacity:1; transform:scale(1.18); }
}

.marketplace-card-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(6,217,207,.3);
  background:rgba(6,217,207,.08);
  border-radius:999px;
  padding:.5rem .85rem;
  font-size:.76rem;
  font-weight:700;
}

.marketplace-form-wrap,
.listing-comments-wrap {
  margin-top:1.5rem;
}

.marketplace-form-card,
.listing-comments-wrap {
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.95);
  padding:1.4rem;
}

.listing-sidebar-card {
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.95);
  padding:1.4rem;
  display:flex;
  flex-direction:column;
  align-self:start;
}

.marketplace-form-head h1 {
  margin:.35rem 0 .5rem;
}

.marketplace-form-head p {
  color:var(--text-muted);
  line-height:1.7;
}

.marketplace-form-grid {
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
  gap:1rem;
  margin-top:1.5rem;
}

.auth-field-full {
  grid-column:1/-1;
}

.marketplace-form-main {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.marketplace-plain-input {
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  color:var(--text-white);
  color-scheme:dark;
  font-family:var(--font-main);
  font-size:0.9rem;
  padding:0.85rem 1rem;
  outline:none;
  transition:border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.marketplace-plain-input:focus {
  border-color:rgba(6,217,207,0.5);
  box-shadow:0 0 0 3px rgba(6,217,207,0.1);
  background:rgba(255,255,255,0.05);
}

.marketplace-plain-input.is-invalid,
.marketplace-picked-items.is-invalid {
  border-color:rgba(240,90,40,.45);
  box-shadow:0 0 0 3px rgba(240,90,40,.08);
}

.marketplace-plain-input::placeholder {
  color:var(--text-muted);
}

.marketplace-plain-input--textarea {
  min-height:140px;
  resize:vertical;
  line-height:1.6;
}

.marketplace-plain-input option,
.auth-input-wrap select option {
  background:#0b1220;
  color:#ffffff;
}

.marketplace-plain-input[type="number"]::-webkit-outer-spin-button,
.marketplace-plain-input[type="number"]::-webkit-inner-spin-button {
  margin:0;
}

.marketplace-cs2-wear-extras {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  margin-top:.75rem;
}

.marketplace-form-preview {
  position:sticky;
  top:2rem;
  align-self:start;
}

.marketplace-form-preview-card {
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(12,19,34,.98), rgba(8,13,24,.98));
  overflow:hidden;
}

.marketplace-preview-media {
  aspect-ratio:1/1;
  background:rgba(255,255,255,.03);
}

.marketplace-preview-media img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.marketplace-preview-thumbs {
  display:flex;
  gap:.55rem;
  padding:.75rem .9rem 0;
  overflow-x:auto;
}

.marketplace-preview-thumb {
  width:62px;
  height:62px;
  border:none;
  border-radius:14px;
  overflow:hidden;
  padding:0;
  flex:0 0 auto;
  cursor:pointer;
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
}

.marketplace-preview-thumb.active {
  border-color:rgba(6,217,207,.45);
  box-shadow:0 0 0 2px rgba(6,217,207,.12);
}

.marketplace-preview-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.marketplace-preview-body {
  padding:1rem;
}

.marketplace-preview-kicker {
  display:inline-block;
  color:var(--neon-teal);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:.4rem;
}

.marketplace-preview-body h3 {
  margin:0 0 .35rem;
  font-size:1rem;
}

.marketplace-preview-body p {
  margin:0 0 .85rem;
  color:#96abc9;
}

.marketplace-preview-meta {
  display:flex;
  justify-content:space-between;
  gap:.8rem;
  align-items:flex-end;
}

.marketplace-preview-meta span {
  color:var(--text-muted);
  font-size:.8rem;
}

.marketplace-net-card {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:1rem;
}

.marketplace-net-card span {
  display:block;
  color:var(--text-muted);
  font-size:.78rem;
  margin-bottom:.3rem;
}

.marketplace-net-card strong {
  font-size:1.08rem;
}

.marketplace-cs2-extra-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:.65rem;
}

.marketplace-cs2-extra-grid label {
  display:flex;
  align-items:center;
  gap:.5rem;
  min-height:42px;
  padding:.65rem .75rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:rgba(255,255,255,.035);
  color:var(--text-light);
  font-size:.85rem;
  cursor:pointer;
}

.marketplace-cs2-extra-grid input {
  accent-color:var(--neon-orange);
}

.marketplace-item-builder {
  display:grid;
  gap:1rem;
  width:100%;
}

.marketplace-item-search {
  position:relative;
  display:grid;
  gap:.4rem;
}

.marketplace-item-search-filter {
  display:grid;
  gap:.4rem;
  margin-bottom:.7rem;
}

.marketplace-item-search-filter__label {
  color:var(--text-light);
  font-size:.85rem;
  font-weight:700;
}

.marketplace-item-search-results {
  position:absolute;
  top:calc(100% + .55rem);
  left:0;
  right:0;
  z-index:16;
  display:grid;
  gap:.5rem;
  max-height:320px;
  overflow:auto;
  padding:.7rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(11,15,25,.98);
  box-shadow:0 24px 50px rgba(0,0,0,.34);
}

.marketplace-item-search-results:empty {
  display:none;
}

.marketplace-item-search-result {
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  gap:.6rem;
  align-items:center;
  width:100%;
  padding:.65rem;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  color:#fff;
  text-align:left;
  cursor:pointer;
}

.marketplace-item-search-result img,
.marketplace-item-search-result__empty {
  border-radius:12px;
  object-fit:contain;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
}

.marketplace-item-search-result img {
  width:30px;
  height:30px;
  justify-self:center;
}

.marketplace-item-search-result__empty {
  width:30px;
  height:30px;
}

.marketplace-item-search-result__empty,
.marketplace-preview-thumb__empty {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
}

.marketplace-item-search-result span {
  display:grid;
  gap:.15rem;
  min-width:0;
}

.marketplace-item-search-result strong,
.marketplace-item-search-result small {
  display:block;
  overflow-wrap:anywhere;
}

.marketplace-item-search-result strong {
  font-size:.9rem;
}

.marketplace-item-search-result small,
.marketplace-item-search-results__empty {
  color:var(--text-muted);
  font-size:.8rem;
}

.marketplace-item-search-results__empty {
  padding:.2rem;
}

.marketplace-selected-config {
  display:grid;
  gap:.85rem;
  padding:1rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.marketplace-selected-config__head {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
}

.marketplace-selected-config__head strong {
  display:block;
  margin-top:.2rem;
  color:#fff;
  font-size:1.05rem;
}

.marketplace-selected-config__meta {
  color:var(--text-muted);
  font-size:.82rem;
  text-align:right;
}

.marketplace-rise-rune-field {
  border:1px solid rgba(255,94,0,.2);
  border-radius:12px;
  padding:.85rem;
  background:rgba(255,94,0,.06);
}

.marketplace-orb-hidden-field[hidden],
.marketplace-orb-hidden-field {
  display:none !important;
}

.marketplace-rise-rune-toggle,
.marketplace-rise-rune-count,
.marketplace-rise-rune-config,
.marketplace-rise-rune-slots {
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
  align-items:center;
}

.marketplace-rise-rune-config[hidden],
.marketplace-rise-rune-slots[hidden] {
  display:none !important;
}

.marketplace-rise-rune-toggle label {
  display:inline-flex;
  gap:.35rem;
  align-items:center;
  color:var(--text-light);
  font-size:.9rem;
}

.marketplace-rise-rune-count span {
  color:var(--text-light);
  font-size:.9rem;
  font-weight:700;
}

.marketplace-rise-rune-count label {
  display:inline-flex;
  min-width:42px;
  justify-content:center;
  gap:.35rem;
  align-items:center;
  padding:.45rem .65rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  color:var(--text-light);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}

.marketplace-rise-rune-config {
  margin-top:.75rem;
}

.marketplace-rise-rune-slots {
  flex:1 1 260px;
}

.marketplace-rise-rune-slots select {
  min-width:180px;
  flex:1 1 180px;
}

.marketplace-item-picker-grid {
  display:grid;
  grid-template-columns:minmax(150px,1fr) minmax(170px,1.2fr) minmax(110px,.7fr) minmax(130px,.8fr) auto;
  gap:.85rem;
  align-items:end;
}

.marketplace-character-profession-list {
  display:grid;
  gap:.7rem;
}

.marketplace-character-profession-row {
  display:grid;
  grid-template-columns:minmax(160px,1fr) minmax(220px,320px);
  gap:.75rem;
  align-items:center;
  padding:.65rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:rgba(11,15,25,.42);
}

.marketplace-character-profession-row > label {
  margin:0;
  color:#D9D9D9;
  font-weight:700;
}

.marketplace-character-profession-inputs {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.55rem;
}

.marketplace-character-profession-caption {
  color:#94a3b8;
  font-size:.72rem;
  font-weight:600;
  line-height:1;
}

.marketplace-item-add-field {
  justify-content:flex-end;
}

.marketplace-picked-items {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap:.75rem;
  border-radius:12px;
}

.marketplace-picked-item {
  display:grid;
  grid-template-columns:30px 1fr 34px;
  gap:.7rem;
  align-items:center;
  min-height:52px;
  padding:.65rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.04);
}

.marketplace-picked-item.is-active {
  border-color:rgba(255,94,0,.35);
  box-shadow:0 0 0 1px rgba(255,94,0,.18);
}

.marketplace-picked-item img,
.marketplace-picked-item__empty {
  border-radius:10px;
  object-fit:contain;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
}

.marketplace-picked-item img {
  width:30px;
  height:30px;
  justify-self:center;
}

.marketplace-picked-item__empty {
  width:30px;
  height:30px;
}

.marketplace-picked-item__empty {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
}

.marketplace-picked-item strong,
.marketplace-picked-item small {
  display:block;
  overflow-wrap:anywhere;
}

.marketplace-picked-item strong {
  color:var(--text-light);
  font-size:.92rem;
}

.marketplace-picked-item small {
  color:var(--text-muted);
  font-size:.78rem;
  margin-top:.15rem;
}

.marketplace-picked-item__main,
.marketplace-picked-item__remove {
  border:none;
  padding:0;
}

.marketplace-picked-item__main {
  display:block;
  background:transparent;
  color:inherit;
  text-align:left;
  cursor:pointer;
}

.marketplace-picked-item__remove {
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(239,68,68,.13);
  color:#fecaca;
  cursor:pointer;
}

.marketplace-field-error {
  margin-top:.45rem;
  color:#ff9d80;
  font-size:.78rem;
  line-height:1.5;
}

.marketplace-form-preview-card--game-item {
  overflow:hidden;
}

.marketplace-preview-media--game-item {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
  background:radial-gradient(circle at top, rgba(255,94,0,.12), rgba(6,12,24,.96) 62%);
}

.marketplace-preview-empty-copy {
  display:grid;
  gap:.65rem;
  justify-items:center;
  padding:1.6rem;
  text-align:center;
}

.marketplace-preview-empty-copy i {
  font-size:2rem;
  color:#ffb074;
}

.marketplace-preview-empty-copy strong {
  color:#fff;
  font-size:1rem;
}

.marketplace-preview-empty-copy span {
  color:var(--text-muted);
  font-size:.86rem;
  line-height:1.6;
}

.marketplace-preview-thumbs--game-item {
  flex-wrap:wrap;
  padding:0 1rem 1rem;
}

.marketplace-preview-thumb--item {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  background:#0b0f19;
}

.marketplace-preview-thumb--item img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.marketplace-ko-card {
  width:100%;
  max-width:360px;
  min-height:100%;
  padding:1rem;
  border:1px solid rgba(255,94,0,.24);
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(255,94,0,.28), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0,229,255,.18), transparent 32%),
    linear-gradient(180deg, rgba(12,18,32,.96), rgba(7,11,20,.98));
  box-shadow:0 30px 60px rgba(0,0,0,.28);
}

.marketplace-ko-card__head {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  margin-bottom:1rem;
}

.marketplace-ko-card__brand {
  color:#ffd7bf;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.marketplace-ko-card--compact {
  width:100%;
  min-height:0;
  border-radius:18px 18px 0 0;
  border:none;
  box-shadow:none;
  max-width:none;
  padding:.85rem;
}

.marketplace-ko-card--compact .marketplace-ko-card__icon,
.marketplace-ko-card--compact .marketplace-ko-card__icon-empty {
  width:38px;
  height:38px;
  border-radius:10px;
}

.marketplace-ko-card--compact .marketplace-ko-card__name {
  font-size:.95rem;
}

.marketplace-ko-card--compact .marketplace-ko-card__stats {
  gap:.4rem;
}

.marketplace-ko-card--compact .marketplace-ko-card__stats div {
  padding:.42rem .55rem;
  border-color:rgba(0,229,255,.09);
}

.marketplace-ko-card--detail {
  min-height:0;
  max-width:none;
}

.marketplace-ko-card--detail .marketplace-ko-card__icon,
.marketplace-ko-card--detail .marketplace-ko-card__icon-empty {
  width:58px;
  height:58px;
  border-radius:14px;
}

.listing-game-item-board {
  display:grid;
  gap:1rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.92);
  padding:1rem;
  height:100%;
}

.marketplace-card-set-row--detail {
  margin-top:0;
}

.marketplace-ko-card__variant {
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:.35rem .7rem;
  border-radius:999px;
  background:rgba(0,229,255,.12);
  color:#b7f7ff;
  font-size:.78rem;
}

.marketplace-ko-card__body {
  display:grid;
  gap:.8rem;
}

.marketplace-ko-card__icon,
.marketplace-ko-card__icon-empty {
  width:48px;
  height:48px;
  border-radius:12px;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
}

.marketplace-ko-card__icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.marketplace-ko-card__icon img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.marketplace-ko-card__icon-empty {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
}

.marketplace-ko-card__name {
  color:#fff;
  font-size:1.1rem;
  font-weight:800;
  line-height:1.3;
}

.marketplace-ko-card__stats {
  display:grid;
  gap:.55rem;
}

.marketplace-ko-card__stats div {
  display:flex;
  justify-content:space-between;
  gap:.8rem;
  align-items:center;
  padding:.6rem .75rem;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.marketplace-ko-card__stats span {
  color:#91a7ca;
  font-size:.78rem;
}

.marketplace-ko-card__stats strong {
  color:#fff;
  font-size:.86rem;
  text-align:right;
}

.marketplace-character-card {
  position:relative;
  display:flex;
  flex-direction:column;
  padding:1.25rem;
  border:2px solid #191108;
  border-radius:10px;
  background:
    linear-gradient(90deg, transparent 0 18px, rgba(139,150,88,.42) 18px 20px, transparent 20px calc(100% - 20px), rgba(139,150,88,.42) calc(100% - 20px) calc(100% - 18px), transparent calc(100% - 18px)),
    linear-gradient(180deg, transparent 0 18px, rgba(139,150,88,.34) 18px 20px, transparent 20px calc(100% - 20px), rgba(139,150,88,.34) calc(100% - 20px) calc(100% - 18px), transparent calc(100% - 18px)),
    radial-gradient(circle at top left, rgba(139,150,88,.18), transparent 34%),
    linear-gradient(180deg, #2A3020, #202619);
  box-shadow:
    inset 0 0 0 2px #29332A,
    inset 0 0 0 4px rgba(8,8,8,.72),
    inset 0 0 0 1px rgba(244,211,48,.08),
    0 26px 52px rgba(0,0,0,.32);
  color:#D9D9D9;
  overflow:hidden;
}

.marketplace-character-card::before,
.marketplace-character-card::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.marketplace-character-card::before {
  background:
    radial-gradient(circle at 12px 12px, #8B9658 0 3px, #191108 4px 5px, transparent 6px),
    radial-gradient(circle at calc(100% - 12px) 12px, #8B9658 0 3px, #191108 4px 5px, transparent 6px),
    radial-gradient(circle at 12px calc(100% - 12px), #8B9658 0 3px, #191108 4px 5px, transparent 6px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), #8B9658 0 3px, #191108 4px 5px, transparent 6px),
    linear-gradient(135deg, transparent 0 9px, #8B9658 9px 12px, #29332A 12px 17px, transparent 17px) left top / 34px 34px no-repeat,
    linear-gradient(225deg, transparent 0 9px, #8B9658 9px 12px, #29332A 12px 17px, transparent 17px) right top / 34px 34px no-repeat,
    linear-gradient(45deg, transparent 0 9px, #8B9658 9px 12px, #29332A 12px 17px, transparent 17px) left bottom / 34px 34px no-repeat,
    linear-gradient(315deg, transparent 0 9px, #8B9658 9px 12px, #29332A 12px 17px, transparent 17px) right bottom / 34px 34px no-repeat;
}

.marketplace-character-card::after {
  inset:7px;
  border:1px solid rgba(139,150,88,.55);
  border-radius:7px;
  box-shadow:
    inset 0 0 0 1px rgba(25,17,8,.82),
    inset 0 0 18px rgba(8,8,8,.42);
}

.marketplace-character-card > * {
  position:relative;
  z-index:1;
}

.marketplace-character-card-slider {
  display:flex;
  gap:1rem;
  overflow-x:auto;
  overflow-y:hidden;
  padding:.15rem .1rem .75rem;
  scroll-snap-type:x mandatory;
  scrollbar-color:rgba(255,94,0,.45) rgba(255,255,255,.06);
  scrollbar-width:thin;
}

.marketplace-character-card-slider::-webkit-scrollbar {
  height:8px;
}

.marketplace-character-card-slider::-webkit-scrollbar-track {
  background:rgba(255,255,255,.06);
  border-radius:999px;
}

.marketplace-character-card-slider::-webkit-scrollbar-thumb {
  background:rgba(255,94,0,.55);
  border-radius:999px;
}

.marketplace-character-card--slide {
  flex:0 0 min(100%, 420px);
  min-height:100%;
  scroll-snap-align:start;
}

.marketplace-character-card__page-title {
  margin-top:.35rem;
  text-align:center;
}

.marketplace-character-card-pager {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.65rem;
  flex-wrap:wrap;
  margin-top:.35rem;
}

.marketplace-character-card-pager__btn {
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  border:1px solid rgba(255,94,0,.34);
  border-radius:999px;
  background:rgba(255,94,0,.1);
  color:#D9D9D9;
  padding:.5rem .85rem;
  font-weight:800;
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}

.marketplace-character-card-pager__btn:hover {
  border-color:rgba(255,94,0,.65);
  background:rgba(255,94,0,.18);
  transform:translateY(-1px);
}

.marketplace-character-card-pager__count {
  color:#94a3b8;
  font-size:.82rem;
  font-weight:700;
}

.marketplace-character-card.marketplace-ko-card--listing {
  padding:1rem;
}

.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__head {
  margin-bottom:.42rem;
}

.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__body {
  gap:.36rem;
}

.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__icon,
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__icon-empty {
  width:34px;
  height:34px;
}

.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__name {
  font-size:.84rem;
}

.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__stats div {
  padding:.28rem .38rem;
}

.marketplace-character-card .marketplace-ko-card__brand {
  color:#D9D9D9;
}

.marketplace-character-card .marketplace-ko-card__variant {
  color:#FDF4C1;
  border:1px solid #191108;
  background:
    radial-gradient(circle at 50% 38%, #B58223 0%, #B58223 34%, #7A4F18 68%, #5A380E 100%);
  box-shadow:
    inset 0 1px 0 rgba(253,244,193,.38),
    inset 0 -2px 4px rgba(25,17,8,.7),
    0 2px 0 #191108,
    0 0 16px rgba(181,130,35,.35);
  text-shadow:
    0 1px 1px #191108,
    0 0 7px rgba(253,244,193,.45);
}

.marketplace-character-card .marketplace-ko-card__name {
  color:#D9D9D9;
}

.marketplace-character-card .marketplace-ko-card__stats div {
  background:#080808;
  border-color:rgba(244,211,48,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(25,17,8,.22);
}

.marketplace-character-card .marketplace-ko-card__stats span {
  color:#F4D330;
}

.marketplace-character-card .marketplace-ko-card__stats strong {
  color:#D9D9D9;
}

.marketplace-character-card .marketplace-ko-card__footer {
  border-top-color:rgba(244,211,48,.16);
}

.marketplace-character-card .marketplace-ko-card__category,
.marketplace-character-card .marketplace-seller-inline {
  color:#D9D9D9;
}

.marketplace-character-card .marketplace-ko-card__price strong {
  color:#F4D330;
}

.marketplace-character-card .marketplace-ko-card__btn {
  border-color:#191108;
  background:linear-gradient(135deg, #B58223, #5A380E);
  color:#FDF4C1;
}

.marketplace-character-card .marketplace-ko-card__body {
  display:flex;
  flex:1;
  flex-direction:column;
  min-height:0;
}

.marketplace-character-card .marketplace-character-exp-meter {
  margin-top:auto;
  padding:.48rem .52rem .46rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  box-shadow:none;
  overflow:hidden;
}

.marketplace-character-card .marketplace-character-exp-meter::before,
.marketplace-character-card .marketplace-character-exp-meter::after {
  content:"";
  position:absolute;
  z-index:0;
  pointer-events:none;
}

.marketplace-character-card .marketplace-character-exp-meter::before {
  inset:3px;
  border:1px solid rgba(255,255,255,.04);
  border-radius:5px;
}

.marketplace-character-card .marketplace-character-exp-meter::after {
  left:9px;
  right:9px;
  bottom:4px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,204,0,.26), transparent);
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__head,
.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__track,
.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__value {
  position:relative;
  z-index:1;
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__head {
  margin-bottom:.18rem;
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__head span {
  color:#FFCC00;
  font-size:.6rem;
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__track {
  height:8px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
  overflow:hidden;
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__track::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:var(--character-exp-percent, 0%);
  background:#FFCC00;
  box-shadow:0 0 8px rgba(255,204,0,.34);
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__marker {
  width:3px;
  height:18px;
  border:0;
  border-radius:999px;
  background:#fff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.65),
    0 0 10px rgba(255,204,0,.55);
}

.marketplace-character-card .marketplace-character-exp-meter .marketplace-cs2-float-meter__value {
  color:#FFCC00;
  margin-top:.16rem;
  font-size:.6rem;
}

.marketplace-character-card--rise .marketplace-character-exp-meter .marketplace-cs2-float-meter__head span,
.marketplace-character-card--rise .marketplace-character-exp-meter .marketplace-cs2-float-meter__value {
  color:#CBB576;
}

.marketplace-character-card--rise .marketplace-character-exp-meter .marketplace-cs2-float-meter__track::before {
  background:#CBB576;
  box-shadow:0 0 8px rgba(203,181,118,.34);
}

.marketplace-character-card--rise .marketplace-character-exp-meter .marketplace-cs2-float-meter__marker {
  box-shadow:
    0 0 0 1px rgba(0,0,0,.65),
    0 0 10px rgba(203,181,118,.55);
}

.marketplace-character-card:not(.marketplace-character-card--alternative) {
  padding:1rem;
  border:1px solid rgba(255,94,0,.24);
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(255,94,0,.28), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0,229,255,.18), transparent 32%),
    linear-gradient(180deg, rgba(12,18,32,.96), rgba(7,11,20,.98));
  box-shadow:0 30px 60px rgba(0,0,0,.28);
  color:inherit;
  overflow:visible;
}

.marketplace-character-card:not(.marketplace-character-card--alternative)::before,
.marketplace-character-card:not(.marketplace-character-card--alternative)::after {
  display:none;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__brand {
  color:#ffd7bf;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__variant {
  color:#b7f7ff;
  border:0;
  background:rgba(0,229,255,.12);
  box-shadow:none;
  text-shadow:none;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__name {
  color:#fff;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats {
  width:100%;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats div {
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.06);
  box-shadow:none;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats span {
  color:#91a7ca;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats strong {
  color:#fff;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__footer {
  padding-left:0;
  padding-right:0;
  border-top-color:rgba(255,255,255,0.05);
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__category {
  color:var(--neon-teal);
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-seller-inline {
  color:inherit;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__price strong {
  color:#fff;
}

.marketplace-character-card:not(.marketplace-character-card--alternative) .marketplace-ko-card__btn {
  border-color:rgba(0,229,255,.28);
  background:rgba(0,229,255,.10);
  color:#b7f7ff;
}

.marketplace-cs2-card {
  display:flex;
  flex-direction:column;
  border-color:rgba(255,94,0,.34);
  background:
    radial-gradient(circle at top left, rgba(255,94,0,.32), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,229,255,.14), transparent 30%),
    linear-gradient(180deg, rgba(16,20,30,.98), rgba(7,10,18,.98));
}

.marketplace-cs2-card .marketplace-ko-card__brand {
  color:#fff;
}

.marketplace-cs2-card .marketplace-ko-card__variant {
  background:var(--cs2-rarity-color, rgba(255,94,0,.14));
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.6);
  box-shadow:0 0 16px color-mix(in srgb, var(--cs2-rarity-color, #00E5FF) 45%, transparent);
}

.marketplace-cs2-card .marketplace-ko-card__body {
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:center;
  gap:.38rem;
  min-height:0;
}

.marketplace-cs2-card .marketplace-ko-card__icon {
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}

.marketplace-cs2-card .marketplace-ko-card__icon img {
  width:182%;
  height:182%;
  object-fit:contain;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.45));
  transform:translate(-22.5%, -18%);
}

.marketplace-cs2-card .marketplace-ko-card__name,
.marketplace-cs2-card .marketplace-ko-card__stats {
  width:100%;
}

.marketplace-cs2-card .marketplace-ko-card__name {
  text-align:center;
  margin-top:-.15rem;
}

.marketplace-cs2-card > .marketplace-cs2-float-meter {
  display:none;
}

.marketplace-cs2-card--full .marketplace-ko-card__icon,
.marketplace-cs2-card--full .marketplace-ko-card__icon-empty {
  width:136px;
  height:136px;
}

.listing-item-list {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  gap:.65rem;
  margin:.9rem 0 1rem;
}

.listing-item-list--detail-flow {
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  margin:1rem 0 0;
  align-items:stretch;
}

.listing-item-pill {
  display:grid;
  grid-template-columns:42px 1fr;
  gap:.65rem;
  align-items:center;
  padding:.55rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  width:100%;
  border-width:1px;
  color:inherit;
  text-align:left;
  cursor:pointer;
}

.listing-item-pill.is-active {
  border-color:rgba(255,94,0,.35);
  box-shadow:0 0 0 1px rgba(255,94,0,.18);
}

.listing-item-pill img,
.listing-item-pill span {
  width:42px;
  height:42px;
  border-radius:9px;
  object-fit:contain;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
}

.listing-item-pill span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
}

.listing-item-pill strong {
  color:var(--text-light);
  font-size:.9rem;
  overflow-wrap:anywhere;
}

.listing-item-pill strong small {
  display:block;
  margin-top:.1rem;
  color:var(--text-muted);
  font-size:.72rem;
}

.listing-server-line {
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  width:max-content;
  max-width:100%;
  margin:.25rem 0 .8rem;
  padding:.38rem .65rem;
  border-radius:8px;
  background:rgba(0,229,255,.1);
  color:#a5f3fc;
  font-size:.82rem;
}

.listing-layout {
  display:grid;
  grid-template-columns:minmax(260px,360px) minmax(0,1fr) minmax(190px,230px);
  gap:1rem;
  align-items:stretch;
}

.listing-layout--game-item {
  grid-template-columns:minmax(260px,360px) minmax(0,1fr) minmax(190px,230px);
}

.listing-gallery {
  display:flex;
  flex-direction:column;
  min-width:0;
}

.listing-main-media {
  overflow:hidden;
  min-height:320px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,12,24,.95);
}

.listing-main-media-wrap {
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.92);
  padding:1rem;
  height:100%;
}

.listing-main-media-button {
  display:block;
  width:100%;
  height:100%;
  background:transparent;
  border:none;
  padding:0;
  cursor:zoom-in;
}

.listing-main-media-wrap--rise-nft {
  padding:0;
  overflow:hidden;
}

.listing-main-media--rise-nft {
  width:100%;
  height:100%;
  min-height:420px;
  aspect-ratio:auto;
}

.listing-main-media--rise-nft .listing-main-media-button {
  display:block;
  width:100%;
  height:100%;
}

.listing-main-media--rise-nft img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.listing-main-media-wrap--rise-nft .listing-gallery-note {
  display:none;
}

.listing-gallery-note {
  margin-top:.75rem;
  font-size:.78rem;
  color:var(--text-muted);
}

.listing-thumb-row {
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-top:.65rem;
  overflow:visible;
  padding-bottom:0;
}

.listing-thumb {
  width:64px;
  height:64px;
  border:none;
  padding:0;
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}

.listing-thumb.active,
.marketplace-preview-thumb.active {
  border-color:rgba(255,94,0,.75);
  box-shadow:0 0 0 2px rgba(255,94,0,.18);
}

.listing-sidebar-card h1 {
  margin:.55rem 0 .25rem;
}

.listing-detail-card {
  min-width:0;
  height:100%;
}

.listing-detail-card > .btn-auth-submit,
.listing-detail-card > .admin-info-card[style*="margin-top:auto"] {
  margin-top:.75rem !important;
}

.listing-number-line {
  color:var(--text-muted);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:0;
  margin-bottom:.55rem;
}

.listing-product-name {
  color:#9bb1d4;
  margin:0 0 .75rem;
}

.listing-info-chip-row {
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin:.25rem 0 .85rem;
}

.listing-info-chip {
  display:grid;
  gap:.16rem;
  min-height:48px;
  min-width:118px;
  padding:.45rem .62rem;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.045);
  color:#cbdaf3;
  line-height:1.2;
  text-decoration:none;
}

.listing-info-chip span {
  color:var(--text-muted);
  font-size:.68rem;
  font-weight:500;
}

.listing-info-chip strong {
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  overflow-wrap:anywhere;
}

.listing-info-chip--server {
  background:rgba(34,197,94,.11);
  border-color:rgba(34,197,94,.24);
}

.listing-info-chip--server strong {
  color:#b8f7ce;
}

.listing-info-chip--steam {
  border-color:rgba(255,94,0,.34);
  background:rgba(255,94,0,.12);
}

.listing-info-chip--steam strong {
  color:#ffb48f;
}

.listing-info-chip--steam:hover {
  border-color:rgba(255,94,0,.62);
  background:rgba(255,94,0,.18);
}

.listing-meta-list {
  display:grid;
  gap:.75rem;
  margin-bottom:1rem;
}

.listing-meta-list div {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:var(--text-muted);
}

.listing-meta-list strong {
  color:#fff;
}

.listing-description {
  color:#d3e2fb;
  line-height:1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.listing-description-card {
  margin-top:1rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.95);
  padding:1.25rem 1.4rem;
}

.listing-description-card__head {
  margin-bottom:.75rem;
}

.listing-description-card__head h2 {
  margin:0;
  font-size:1rem;
  color:#fff;
}

.listing-seller-card {
  display:flex;
  flex-direction:column;
  gap:1rem;
  min-width:0;
  height:100%;
  align-self:stretch;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.95);
  padding:1.05rem;
}

.listing-seller-card__head {
  display:grid;
  gap:.35rem;
}

.listing-seller-card__head strong {
  color:#fff;
  font-size:.98rem;
}

.listing-seller-card__head > span {
  color:var(--text-muted);
  font-size:.76rem;
}

.listing-seller-stats {
  display:grid;
  gap:.55rem;
}

.listing-seller-stats div,
.listing-seller-stat-link {
  display:grid;
  gap:.18rem;
  padding:.58rem .65rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(255,255,255,.035);
}

.listing-seller-stat-link {
  cursor:pointer;
  text-decoration:none;
  transition:border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.listing-seller-stat-link:hover {
  border-color:rgba(0,229,255,.45);
  background:rgba(0,229,255,.08);
  box-shadow:0 0 18px rgba(0,229,255,.12);
  transform:translateY(-1px);
}

.listing-seller-stats span,
.listing-detail-follow span {
  color:var(--text-muted);
  font-size:.74rem;
}

.listing-seller-stats strong,
.listing-seller-stats a {
  color:#fff;
  font-size:.92rem;
  text-decoration:none;
}

.listing-seller-stat-link strong {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.45rem;
}

.listing-seller-stat-link small {
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  color:var(--neon-teal);
  font-size:.68rem;
  font-weight:600;
  white-space:nowrap;
}

.listing-detail-follow {
  display:grid;
  gap:.45rem;
  margin-top:auto;
  padding:.75rem;
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
  background:rgba(255,255,255,.035);
}

.listing-detail-follow strong {
  color:#fff;
}

.listing-detail-follow form {
  margin-top:.3rem;
}

.listing-detail-follow .btn-auth-submit {
  width:100%;
  justify-content:center;
  padding:.68rem .75rem;
  background:rgba(6,217,207,.12);
  border-color:rgba(6,217,207,.32);
  color:var(--neon-teal);
  box-shadow:none;
}

.listing-comments-head {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  margin-bottom:1rem;
}

.listing-comment-form textarea,
.listing-reply-form textarea {
  width:100%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  color:#fff;
  font-family:'Outfit',sans-serif;
  padding:.9rem 1rem;
  resize:vertical;
  min-height:120px;
}

.listing-comment-form button,
.listing-reply-form button {
  margin-top:.75rem;
}

.listing-comments-list {
  display:grid;
  gap:1rem;
  margin-top:1.2rem;
}

.listing-comment-card,
.listing-reply-card,
.panel-marketplace-card {
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:1rem 1.1rem;
}

.listing-comment-author {
  color:#fff;
  font-weight:700;
}

.listing-comment-date {
  color:var(--text-muted);
  font-size:.76rem;
  margin:.2rem 0 .65rem;
}

.listing-comment-card p,
.listing-reply-card p {
  margin:0;
  line-height:1.8;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}

.listing-reply-card {
  margin-top:.9rem;
  margin-left:1.2rem;
  border-color:rgba(6,217,207,.18);
}

.listing-reply-form {
  margin-top:.9rem;
}

.panel-marketplace-card {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  margin-bottom:.8rem;
}

.panel-marketplace-main {
  display:flex;
  flex-direction:column;
  gap:.28rem;
}

.panel-marketplace-main a {
  color:#fff;
  text-decoration:none;
}

.panel-marketplace-main span {
  color:var(--text-muted);
  font-size:.82rem;
}

.panel-marketplace-actions {
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}

.marketplace-lightbox {
  position:fixed;
  inset:0;
  background:rgba(3,7,16,.92);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
}

.marketplace-lightbox[hidden] {
  display:none;
}

.marketplace-lightbox img {
  max-width:min(92vw, 1400px);
  max-height:90vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.marketplace-lightbox-close {
  position:absolute;
  top:1.2rem;
  right:1.2rem;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.marketplace-empty {
  margin-top:1rem;
}

@media (max-width: 980px) {
  .listing-layout,
  .marketplace-form-grid,
  .admin-settings-grid,
  .marketplace-net-card,
  .marketplace-overview-bar,
  .marketplace-form-main {
    grid-template-columns:1fr;
  }

  .marketplace-hero,
  .panel-marketplace-card {
    flex-direction:column;
    align-items:flex-start;
  }

  .marketplace-item-picker-grid {
    grid-template-columns:1fr;
  }

  .marketplace-character-profession-row {
    grid-template-columns:1fr;
  }

  .marketplace-card {
    grid-template-columns:96px minmax(0,1fr);
    min-height:120px;
  }

  .marketplace-card-media {
    min-height:120px;
  }
}

@media (min-width: 1600px) {
  .marketplace-grid {
    grid-template-columns:repeat(auto-fill,minmax(220px,260px));
  }
}

/* ================================================
   HAMBURGER MENÜ & MOBİL NAV DRAWER
   ================================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.hamburger-btn:hover {
  background: rgba(255, 94, 0, 0.08);
  border-color: rgba(255, 94, 0, 0.35);
}
.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.75);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;

}

/* Drawer - Glassmorphic */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: rgba(8, 12, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 94, 0, 0.25);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5), inset 1px 0 0 rgba(255, 255, 255, 0.05);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.mobile-nav-close:hover {
  background: rgba(255, 94, 0, 0.1);
  border-color: rgba(255, 94, 0, 0.4);
  color: var(--neon-orange);
}

.mobile-nav-links {
  flex: 1;
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}
.mobile-nav-links a i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.mobile-nav-links a .menu-icon-img {
  width: 18px;
  height: 18px;
}
.mobile-nav-links a:hover {
  color: #fff;
  background: rgba(255, 94, 0, 0.05);
  border-left-color: rgba(255, 94, 0, 0.5);
}
.mobile-nav-links a.active {
  color: var(--neon-orange);
  background: rgba(255, 94, 0, 0.1);
  border-left-color: var(--neon-orange);
  font-weight: 700;
  box-shadow: inset 4px 0 10px rgba(255, 94, 0, 0.05);
}
.mobile-nav-links a.active i { color: var(--neon-orange); }



.mobile-nav-section-title {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 0.2rem 0.25rem;
}

.mobile-nav-links a.mobile-nav-sub-link {
  font-size: 0.86rem;
  background: rgba(255,255,255,0.025);
}

.mobile-nav-user {
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}
.mobile-nav-user-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.2s;
}
.mobile-nav-user-btn:hover {
  background: rgba(255,255,255,0.09);
}
.mobile-nav-user-btn--accent {
  background: rgba(240,90,40,0.12);
  border-color: rgba(240,90,40,0.3);
  color: var(--neon-orange);
}
.mobile-nav-user-btn--danger {
  background: rgba(255,60,60,0.08);
  border-color: rgba(255,60,60,0.2);
  color: #ff6060;
}

/* nav-open: body scroll kilidi */
body.nav-open { overflow: hidden; }

/* ================================================
   OYUN PARASI KATEGORI - REFERANS KART TASARIMI
   ================================================ */
.gm-product-list--framed {
  display: grid;
  gap: 1rem;
}

.gm-product-row--ref {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,14,28,0.98), rgba(6,9,20,0.99));
  border: 1px solid rgba(240,90,40,0.55);
  box-shadow: 0 0 18px rgba(240,90,40,0.1), inset 0 0 0 1px rgba(240,90,40,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gm-product-row--ref:hover {
  border-color: rgba(240,90,40,0.85);
  box-shadow: 0 0 32px rgba(240,90,40,0.2), inset 0 0 0 1px rgba(240,90,40,0.12);
}

/* Sol: Gorsel */
.gm-ref-media {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}
.gm-ref-media img {
  width: 130px;
  height: 100%;
  min-height: 110px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Orta: bilgi */
.gm-ref-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  justify-content: center;
}

/* Urun adi - turuncu badge */
.gm-ref-name-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #ff6a1f, #f05a28);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(240,90,40,0.35);
  letter-spacing: 0.02em;
}

/* Birim etiketi - buyuk teal */
.gm-ref-unit {
  color: var(--neon-teal);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(6,217,207,0.45);
}

/* Teslimat yeri */
.gm-ref-delivery {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.1rem;
}
.gm-ref-delivery-val {
  color: var(--text-light);
  font-size: 0.83rem;
  line-height: 1.4;
}

/* Adet stepper satiri */
.gm-ref-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.gm-ref-qty .gm-qty-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Sag: Butonlar kolonu */
.gm-ref-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: center;
  min-width: 140px;
  max-width: 160px;
}

.gm-ref-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  gap: 0.15rem;
  transition: 0.2s ease;
  font-family: var(--font-main);
}

.gm-ref-btn-price {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.gm-ref-btn-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  opacity: 0.88;
  text-transform: uppercase;
}

/* Satin Al - turuncu */
.gm-ref-btn--buy {
  background: linear-gradient(135deg, #ff8635, var(--neon-orange));
  color: #fff;
  box-shadow: 0 0 22px rgba(240,90,40,0.4);
}
.gm-ref-btn--buy:hover {
  background: linear-gradient(135deg, #ff9e55, #d94d20);
  box-shadow: 0 0 32px rgba(240,90,40,0.55);
  transform: translateY(-1px);
}

/* Bize Sat - teal cerceveli */
.gm-ref-btn--sell {
  background: rgba(6,217,207,0.08);
  color: var(--neon-teal);
  border: 1.5px solid rgba(6,217,207,0.5);
  box-shadow: 0 0 14px rgba(6,217,207,0.12);
}
.gm-ref-btn--sell:hover {
  background: rgba(6,217,207,0.18);
  box-shadow: 0 0 24px rgba(6,217,207,0.28);
  transform: translateY(-1px);
}

/* Mobil responsive - referans kart */
@media (max-width: 900px) {
  .gm-product-row--ref {
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto;
  }
  .gm-ref-media img {
    width: 110px;
    min-height: 90px;
  }
  .gm-ref-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: 0;
    max-width: 100%;
  }
  .gm-ref-btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .gm-product-row--ref {
    grid-template-columns: 1fr;
  }
  .gm-ref-media img {
    width: 100%;
    height: 140px;
    min-height: unset;
    border-radius: 10px;
  }
  .gm-ref-unit { font-size: 1.2rem; }
}

/* ================================================
   MASTERCARD LOGO
   ================================================ */
.feature-mc-svg {
  display: inline-flex;
  align-items: center;
}

/* Hamburger sadece mobilde gorunur - geniÅŸ ekranda gizlidir */
.hamburger-btn { display: none; }

/* ================================================
   OYUN PARASI ANA SAYFA - VITRIN KATEGORI KARTI
   ================================================ */
.gm-vitrin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.all-games-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  justify-content: center;
}

.gm-vitrin-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 10px rgba(0,229,255,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.gm-vitrin-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,229,255,0.7);
  box-shadow: 0 0 28px rgba(0,229,255,0.18), 0 8px 32px rgba(0,0,0,0.3);
}

.gm-vitrin-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(0,229,255,0.05);
}

.gm-vitrin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gm-vitrin-card:hover .gm-vitrin-thumb img {
  transform: scale(1.06);
}

.gm-vitrin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,229,255,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.gm-vitrin-card:hover .gm-vitrin-overlay {
  opacity: 1;
}

.gm-vitrin-overlay i {
  color: var(--neon-teal);
  font-size: 2rem;
  text-shadow: 0 0 18px rgba(0,229,255,0.8);
  transform: translateY(8px);
  transition: transform 0.25s;
}

.gm-vitrin-card:hover .gm-vitrin-overlay i {
  transform: translateY(0);
}

.gm-vitrin-body {
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.gm-vitrin-body h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.3px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.gm-vitrin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.28);
  color: var(--neon-teal);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Responsive Vitrin */
@media (max-width: 900px) {
  .marketplace-game-filter-top,
  .marketplace-filtered-listing-layout {
    grid-template-columns:1fr;
  }

  .marketplace-game-filter-panel {
    position:static;
  }

  .marketplace-item-searchbar > div {
    grid-template-columns:1fr;
  }

  .gm-vitrin-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gm-vitrin-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gm-vitrin-body h3 { font-size: 0.85rem; }
}
@media (max-width: 380px) {
  .gm-vitrin-grid { grid-template-columns: 1fr; }
}

/* ================================================
   OYUN PARASI KATEGORI - REFERANS KART TASARIMI
   ================================================ */
.gm-product-list--framed {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gm-product-row--ref {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,94,0,0.25);
  box-shadow: 0 0 16px rgba(255,94,0,0.06), inset 0 0 0 1px rgba(255,94,0,0.05);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.gm-product-row--ref::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,94,0,0.08), transparent 50%);
  pointer-events: none;
}

.gm-product-row--ref:hover {
  border-color: rgba(255,94,0,0.7);
  box-shadow: 0 0 25px rgba(255,94,0,0.18), inset 0 0 0 1px rgba(255,94,0,0.1);
  transform: translateY(-2px);
}

/* Sol: Gorsel */
.gm-ref-media {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.gm-ref-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Orta: Bilgiler */
.gm-ref-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gm-ref-name-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,94,0,0.15);
  color: #fff;
  border: 1px solid rgba(255,94,0,0.3);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 0 8px rgba(255,94,0,0.2);
}

.gm-ref-unit {
  color: var(--neon-teal);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 12px rgba(0,229,255,0.3);
}

.gm-ref-delivery {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.gm-ref-delivery-val {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Sag: Miktar ve Butonlar (Hepsi Yanyana) */
.gm-ref-right-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.gm-ref-qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.gm-ref-qty .gm-qty-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.gm-qty-control {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.gm-qty-btn {
  background: transparent;
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s;
}
.gm-qty-btn:hover { background: rgba(255,255,255,0.1); }
.gm-qty-input {
  background: transparent;
  width: 40px;
  height: 26px;
  text-align: center;
  color: #fff;
  border: none;
  font-weight: 700;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.gm-ref-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gm-ref-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  gap: 0.15rem;
  transition: 0.2s ease;
  font-family: var(--font-main);
  min-width: 110px;
}
.gm-ref-btn-price {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}
.gm-ref-btn-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Satin Al Butonu - Blue/Accent */
.gm-ref-btn--buy {
  background: linear-gradient(135deg, #CC4B00, #FF5E00);
  color: #fff;
  box-shadow: 0 0 15px rgba(255,94,0,0.35);
}
.gm-ref-btn--buy:hover {
  background: linear-gradient(135deg, #FF8233, #FF8233);
  box-shadow: 0 0 25px rgba(255,94,0,0.5);
}

/* Bize Sat Butonu - Emerald/Success */
.gm-ref-btn--sell {
  background: rgba(0,229,255,0.1);
  color: var(--neon-teal);
  border: 1px solid rgba(0,229,255,0.5);
  box-shadow: 0 0 10px rgba(0,229,255,0.15);
}
.gm-ref-btn--sell:hover {
  background: rgba(0,229,255,0.2);
  box-shadow: 0 0 18px rgba(0,229,255,0.25);
}

/* Responsive Product Ref */
@media (max-width: 1024px) {
  .gm-product-row--ref {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .gm-ref-right-panel {
    margin-left: 0;
    align-self: flex-start;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .gm-product-row--ref {
    padding: 1rem;
  }
  .gm-ref-media {
    width: 90px;
    height: 90px;
    margin-right: 1rem;
  }
  .gm-ref-unit { font-size: 1.2rem; }
  .gm-ref-right-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .gm-ref-qty {
    flex-direction: row;
    justify-content: space-between;
  }
  .gm-ref-actions {
    flex-direction: column;
  }
  .gm-ref-btn { width: 100%; }
}

.gc-confirm-open {
  overflow: hidden;
}

.gc-confirm-modal[hidden] {
  display: none;
}

.gc-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.gc-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 22, 0.74);
  backdrop-filter: blur(8px);
}

.gc-confirm-dialog {
  position: relative;
  width: min(92vw, 420px);
  margin: min(18vh, 140px) auto 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(9, 14, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  padding: 1.5rem;
  text-align: center;
}

.gc-confirm-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 90, 40, 0.12);
  border: 1px solid rgba(240, 90, 40, 0.24);
  color: var(--neon-orange);
  font-size: 1.35rem;
  box-shadow: 0 0 24px rgba(240, 90, 40, 0.14);
}

.gc-confirm-dialog h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.gc-confirm-dialog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.gc-confirm-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.gc-confirm-btn {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.gc-confirm-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.gc-confirm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gc-confirm-btn--solid {
  background: var(--neon-orange);
  color: #fff;
  box-shadow: none;
}

.gc-confirm-btn--solid:hover {
  background: color-mix(in srgb, var(--neon-orange) 85%, #000 15%);
  box-shadow: none;
  transform: none;
}

@media (max-width: 560px) {
  .gc-confirm-dialog {
    margin-top: 12vh;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .gc-confirm-actions {
    flex-direction: column-reverse;
  }
}


/* ================================================
   GC CONFIRM MODAL
   ================================================ */
.gc-confirm-modal[hidden] {
  display: none !important;
}

.gc-confirm-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9998;
}

.gc-confirm-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 420px;
  background: linear-gradient(145deg, rgba(21, 26, 40, 0.98), rgba(11, 15, 25, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  animation: gcModalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes gcModalPop {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.gc-confirm-icon {
  font-size: 3.5rem;
  color: var(--neon-orange);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 16px rgba(255, 94, 0, 0.4));
}

#gcConfirmTitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

#gcConfirmMessage {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.gc-confirm-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.gc-confirm-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.gc-confirm-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.gc-confirm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.gc-confirm-btn--solid {
  background: var(--neon-orange);
  border: none;
  color: #fff;
  box-shadow: none;
}

.gc-confirm-btn--solid:hover {
  background: color-mix(in srgb, var(--neon-orange) 85%, #000 15%);
  box-shadow: none;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9996;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__inner {
  width: min(100%, 980px);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(21, 26, 40, 0.98), rgba(11, 15, 25, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  pointer-events: auto;
}

.cookie-consent__content {
  display: grid;
  gap: 0.35rem;
}

.cookie-consent__content strong {
  color: #fff;
  font-size: 1rem;
}

.cookie-consent__content p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent__btn {
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-consent__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cookie-consent__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-consent__btn--solid {
  background: linear-gradient(135deg, color-mix(in srgb, var(--neon-orange) 82%, #fff 18%), var(--neon-orange));
  border: none;
  color: #121212;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.32);
}

.cookie-consent__btn--solid:hover {
  box-shadow: 0 0 26px rgba(255, 94, 0, 0.46);
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}


/* Set Item Selector Buttons */
.btn-ko-item-select {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  overflow: hidden;
}
.btn-ko-item-select img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.btn-ko-item-select:hover {
  border-color: var(--neon-teal);
  transform: scale(1.05);
}
.btn-ko-item-select.active {
  border-color: var(--neon-orange);
  box-shadow: 0 0 10px rgba(255,94,0,0.3);
  background: rgba(255,94,0,0.1);
}

.marketplace-ko-card--listing {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
  max-width: none;
  padding: .75rem;
  border-radius: 18px;
}
.marketplace-ko-card--listing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,229,255,0.15);
}
.marketplace-ko-card--listing .marketplace-ko-card__head {
  gap: .55rem;
  margin-bottom: .55rem;
}
.marketplace-ko-card--listing .marketplace-set-badge--head {
  min-height: 22px;
  padding: .22rem .45rem;
  border-radius: 6px;
  font-size: .64rem;
  font-weight: 600;
}
.marketplace-ko-card--listing .marketplace-ko-card__variant {
  min-height: 24px;
  padding: .2rem .48rem;
  border-radius: 8px;
  font-size: .68rem;
  font-weight: 500;
}
.marketplace-ko-card--listing .marketplace-ko-card__body {
  gap: .48rem;
}
.marketplace-ko-card--listing .marketplace-ko-card__icon,
.marketplace-ko-card--listing .marketplace-ko-card__icon-empty {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}
.marketplace-ko-card--listing .marketplace-ko-card__name {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.22;
}
.marketplace-ko-card--listing .marketplace-card-set-row {
  min-height: 22px;
  gap: .35rem;
  margin: -.05rem 0 0;
}
.marketplace-ko-card--listing .marketplace-item-icon-strip {
  gap: .2rem;
}
.marketplace-ko-card--listing .marketplace-item-icon-strip img,
.marketplace-ko-card--listing .marketplace-item-icon-strip__empty {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats {
  gap: .32rem;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats div {
  gap: .5rem;
  padding: .34rem .46rem;
  border-radius: 8px;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats span {
  font-size: .69rem;
  font-weight: 400;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats strong {
  font-size: .73rem;
  font-weight: 500;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo {
  justify-content: center;
  text-align: center;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo span {
  display: none;
}
.marketplace-ko-card--listing .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo strong {
  width: 100%;
  text-align: center;
}
.marketplace-character-card.marketplace-ko-card--listing {
  padding:1rem;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__head {
  padding-left:2%;
  padding-right:2%;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__body {
  gap:.36rem;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__icon,
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__icon-empty {
  width:34px;
  height:34px;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__name {
  font-size:.84rem;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__stats div {
  padding:.28rem .38rem;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__stats {
  width:97%;
  justify-self:center;
  align-self:center;
}
.marketplace-character-card.marketplace-ko-card--listing .marketplace-ko-card__footer {
  padding-left:2%;
  padding-right:2%;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) {
  padding:.78rem;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__head {
  padding-left:0;
  padding-right:0;
  margin-bottom:.55rem;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__body {
  gap:.48rem;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__icon,
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__icon-empty {
  width:38px;
  height:38px;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__name {
  font-size:.92rem;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats {
  width:100%;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__stats div {
  padding:.34rem .46rem;
}
.marketplace-character-card.marketplace-ko-card--listing:not(.marketplace-character-card--alternative) .marketplace-ko-card__footer {
  padding-left:0;
  padding-right:0;
}
.marketplace-cs2-card--listing .marketplace-ko-card__brand {
  color: #fff;
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.marketplace-cs2-card--listing .marketplace-ko-card__variant {
  background: var(--cs2-rarity-color, #00E5FF);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  box-shadow: 0 0 16px color-mix(in srgb, var(--cs2-rarity-color, #00E5FF) 45%, transparent);
}
.marketplace-cs2-card--listing .marketplace-ko-card__body {
  align-items: center;
  padding-top: .58rem;
}
.marketplace-cs2-card--listing .marketplace-ko-card__icon {
  width: 90px;
  height: 90px;
  margin: .5rem auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.marketplace-cs2-card--listing .marketplace-ko-card__icon img {
  width: 200%;
  height: 200%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.45));
  transform: translate(-25%, -16%);
}
.marketplace-cs2-card--listing .marketplace-ko-card__icon-empty {
  width: 90px;
  height: 90px;
  margin-inline: auto;
}
.marketplace-cs2-card--listing .marketplace-ko-card__name {
  width: 100%;
  text-align: center;
  margin-top: -.45rem;
}
.marketplace-cs2-card--listing .marketplace-ko-card__stats {
  width: 100%;
  min-height: 118px;
  align-content: start;
  margin-top: .28rem;
}
.marketplace-cs2-card--full .marketplace-ko-card__brand {
  color: #fff;
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.marketplace-cs2-card--full .marketplace-ko-card__variant {
  background: var(--cs2-rarity-color, #00E5FF);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  box-shadow: 0 0 16px color-mix(in srgb, var(--cs2-rarity-color, #00E5FF) 45%, transparent);
}
.marketplace-cs2-card--full .marketplace-ko-card__body {
  align-items: center;
  padding-top: .58rem;
}
.marketplace-cs2-card--full .marketplace-ko-card__icon,
.marketplace-cs2-card--full .marketplace-ko-card__icon-empty {
  width: 90px;
  height: 90px;
  margin: .5rem auto 0;
}
.marketplace-cs2-card--full .marketplace-ko-card__icon {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.marketplace-cs2-card--full .marketplace-ko-card__icon img {
  width: 200%;
  height: 200%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.45));
  transform: translate(-25%, -16%);
}
.marketplace-cs2-card--full .marketplace-ko-card__name {
  width: 100%;
  text-align: center;
  margin-top: -.45rem;
}
.marketplace-cs2-card--full .marketplace-ko-card__stats {
  width: 100%;
  min-height: 118px;
  align-content: start;
  margin-top: .28rem;
}
.marketplace-cs2-card--full .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo {
  justify-content: center;
  text-align: center;
}
.marketplace-cs2-card--full .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo span {
  display: none;
}
.marketplace-cs2-card--full .marketplace-ko-card__stats div.marketplace-ko-card__stat--solo strong {
  width: 100%;
  text-align: center;
}
.marketplace-cs2-float-meter {
  position: relative;
  z-index: 11;
  width:100%;
  margin: auto 0 .15rem;
  padding: .34rem .42rem .32rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}
.marketplace-cs2-float-meter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .24rem;
}
.marketplace-cs2-float-meter__head span {
  color: #91a7ca;
  font-size: .68rem;
  font-weight: 400;
}
.marketplace-cs2-float-meter__head strong {
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
}
.marketplace-cs2-float-meter__track {
  position: relative;
  height: 6px;
  overflow: visible;
  border-radius: 999px;
  background: linear-gradient(90deg, #2ecc71 0%, #8bd450 7%, #d8d049 15%, #f0a43a 38%, #e4573f 45%, #8b1e1e 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.marketplace-cs2-float-meter__marker {
  position: absolute;
  top: 50%;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.55), 0 0 10px rgba(255,255,255,.8);
}
.marketplace-cs2-float-meter__value {
  margin-top: .18rem;
  color: #dbe7ff;
  font-size: .68rem;
  font-weight: 500;
  text-align: right;
}
.marketplace-ko-card__link-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
}
.marketplace-ko-card__footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 11;
  pointer-events: none;
}
.marketplace-ko-card--listing .marketplace-ko-card__footer {
  padding-top: .65rem;
}
.marketplace-ko-card__price {
  display: flex;
  flex-direction: column;
}
.marketplace-ko-card__price strong {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}
.marketplace-ko-card__price span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.marketplace-ko-card__category {
  color:var(--neon-teal) !important;
  margin-bottom:.2rem;
  font-weight:600;
  font-size:.8rem !important;
}
.marketplace-ko-card__btn {
  background: transparent;
  border: 1px solid var(--neon-teal);
  color: var(--neon-teal);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}
.marketplace-ko-card--listing:hover .marketplace-ko-card__btn {
  background: var(--neon-teal);
  color: #000;
}

/* Marketplace listing pages: keep every listing type in the same neon visual family. */
.marketplace-grid > .marketplace-card {
  position: relative;
  border-color: rgba(255,94,0,.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255,94,0,.24), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0,229,255,.16), transparent 34%),
    linear-gradient(180deg, rgba(12,18,32,.96), rgba(7,11,20,.98));
  box-shadow: 0 30px 60px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.marketplace-grid > .marketplace-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,94,0,.18), transparent 28%),
    linear-gradient(315deg, rgba(0,229,255,.12), transparent 30%);
  opacity: .72;
}

.marketplace-grid > .marketplace-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,.38);
  box-shadow: 0 10px 30px rgba(0,229,255,.15), 0 30px 60px rgba(0,0,0,.3);
}

.marketplace-grid > .marketplace-card .marketplace-card-media {
  background:
    radial-gradient(circle at top, rgba(255,94,0,.14), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.marketplace-grid > .marketplace-card--game-item .marketplace-card-media--game-item {
  padding:1%;
  background:#FF5E00;
  border-bottom:1px solid rgba(255,94,0,.75);
}

.marketplace-grid > .marketplace-card .marketplace-card-media img {
  filter: saturate(1.06) contrast(1.03);
}

.marketplace-grid > .marketplace-card .marketplace-card-body,
.marketplace-grid > .marketplace-card .marketplace-card-media,
.marketplace-grid > .marketplace-card .marketplace-card-footer {
  position: relative;
  z-index: 1;
}

.marketplace-grid > .marketplace-card .marketplace-card-category {
  display:block;
  width:auto;
  max-width:100%;
  padding:0;
  border-radius:0;
  border:0;
  background:transparent;
  color:var(--neon-teal);
  font-weight: 600;
}

.marketplace-card-category-text {
  color:var(--neon-teal);
  font-size:.8rem;
  font-weight:600;
  margin-bottom:.2rem;
}

.marketplace-grid > .marketplace-card .marketplace-card-meta,
.marketplace-grid > .marketplace-card .marketplace-status-badge {
  display:none;
}

.marketplace-grid > .marketplace-card .marketplace-status-badge {
  border-color: rgba(255,94,0,.34);
  background: rgba(255,94,0,.16);
  box-shadow: 0 0 14px rgba(255,94,0,.12);
}

.marketplace-grid > .marketplace-card .marketplace-card-server {
  border: 1px solid rgba(0,229,255,.22);
  background: rgba(0,229,255,.1);
  box-shadow: 0 0 14px rgba(0,229,255,.08);
}

.marketplace-grid > .marketplace-card .marketplace-card-footer {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: .65rem;
}

.marketplace-grid > .marketplace-card .marketplace-card-footer strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.marketplace-grid > .marketplace-card .marketplace-card-link {
  border-color: var(--neon-teal);
  background: transparent;
  color: var(--neon-teal);
  border-radius: 20px;
  transition: all .2s ease;
}

.marketplace-grid > .marketplace-card:hover .marketplace-card-link {
  background: var(--neon-teal);
  color: #000;
}

.marketplace-card h3 a,
.marketplace-card-footer strong,
.listing-price,
.marketplace-ko-card__name,
.marketplace-ko-card__stats strong,
.marketplace-ko-card__price strong,
.marketplace-cs2-float-meter__head strong,
.marketplace-cs2-card .marketplace-ko-card__brand,
.marketplace-cs2-card .marketplace-ko-card__variant,
.marketplace-cs2-card--listing .marketplace-ko-card__brand,
.marketplace-cs2-card--listing .marketplace-ko-card__variant,
.marketplace-cs2-card--full .marketplace-ko-card__brand,
.marketplace-cs2-card--full .marketplace-ko-card__variant {
  color:#D9D9D9;
}


/* Custom style for small teal pagination buttons like 'Uygula', 'Geri', 'Ileri' */
.btn-sm-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--neon-teal);
  border: none;
  color: #0a0e20;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  height: 36px;
  padding: 0 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  outline: none;
  box-shadow: 0 0 8px var(--neon-teal-glow);
}

.btn-sm-teal:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 16px var(--neon-teal);
  transform: translateY(-1px);
}

.btn-sm-teal.is-disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.panel-content .listing-controls .btn-sm-teal {
  background: rgba(6,217,207,.12);
  border: 1px solid rgba(6,217,207,.28);
  color: var(--neon-teal);
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.panel-content .listing-controls .btn-sm-teal:hover,
.panel-content .listing-controls .btn-sm-teal:focus-visible {
  background: rgba(6,217,207,.18);
  border-color: rgba(6,217,207,.4);
  color: #9ffefa;
  box-shadow: none;
  transform: translateY(-1px);
}

.panel-content .listing-controls .btn-sm-teal:active {
  background: rgba(6,217,207,.22);
  border-color: rgba(6,217,207,.48);
  color: var(--neon-teal);
  box-shadow: none;
  transform: translateY(0);
}

.panel-content .listing-controls .btn-sm-teal.is-disabled {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  box-shadow: none;
}

.listing-controls .btn-sm-teal {
  background: rgba(6,217,207,.12);
  border: 1px solid rgba(6,217,207,.28);
  color: var(--neon-teal);
  box-shadow: none;
}

.listing-controls .btn-sm-teal:hover,
.listing-controls .btn-sm-teal:focus-visible {
  background: rgba(6,217,207,.18);
  border-color: rgba(6,217,207,.4);
  color: #9ffefa;
  box-shadow: none;
}

.listing-controls .btn-sm-teal:active {
  background: rgba(6,217,207,.22);
  border-color: rgba(6,217,207,.48);
  color: var(--neon-teal);
  box-shadow: none;
}

.listing-controls .btn-sm-teal.is-disabled {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  box-shadow: none;
}
