@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; }

body {
  font-family: var(--font-main);
  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;
}

/* 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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 2.5rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.header-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--neon-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 12px var(--neon-orange-glow);
}
.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;
}
.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;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 540px);
}
.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text-white); }
.header-nav a.active { color: var(--neon-orange); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  overflow: hidden;
  width: 240px;
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  width: 100%;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  background: var(--neon-orange);
  border: none;
  color: white;
  padding: 0.62rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
  line-height: 1;
}
.header-search button:hover { background: #d94d20; }

.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: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-light);
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-user:hover { color: white; }

/* KayÄ±t Ol button */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-register:hover {
  background: var(--neon-orange);
  color: white;
}
.header-cart {
  position: relative;
  color: var(--text-light);
  font-size: 1.1rem;
  text-decoration: none;
}
.header-cart:hover { color: white; }
.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;
}

/* ================================================
   PAGE WRAPPER
   ================================================ */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ================================================
   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, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.ptab {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1rem 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: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); }

/* ================================================
   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 (Index - 4 cols)
   ================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.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-featured-carousel.is-static .home-featured-track {
  overflow: visible;
}

.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-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-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-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; }

.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 {
  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; }

/* 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-fit, minmax(220px, 1fr));
  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 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-fit, minmax(180px, 1fr));
  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-fit, minmax(260px, 1fr));
  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-fit, minmax(180px, 1fr));
  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-fit, minmax(220px, 1fr));
  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-fit, minmax(170px, 1fr));
}

.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: cover;
  background-position: center;
  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-fit, minmax(280px, 1fr));
  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: cover;
  background-position: center;
}

.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: rgba(255,60,85,0.15);
  border: 1px solid rgba(255,60,85,0.35);
  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: rgba(6,217,207,0.11);
  border: 1px solid rgba(6,217,207,0.24);
  color: var(--neon-teal);
  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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.streamer-btn--solid {
  background: linear-gradient(135deg, #ff7a37, var(--neon-orange));
  color: #fff;
  box-shadow: 0 0 18px rgba(240,90,40,0.2);
}

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

.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 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 rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

.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(--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: rgba(240,90,40,0.4);
  box-shadow: 0 0 18px rgba(240,90,40,0.12);
}

.streamer-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

@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;
  }
}

@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;
}

.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-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-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
  gap:1rem;
}

.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:grid;
  grid-template-columns:120px minmax(0,1fr);
  min-height:140px;
}

.marketplace-card:hover {
  transform:translateY(-2px);
  border-color:rgba(240,90,40,.3);
}

.marketplace-card-media {
  display:block;
  position:relative;
  aspect-ratio:auto;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  min-height:140px;
}

.marketplace-card-media img,
.listing-main-media img,
.listing-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.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-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:1rem 1rem .95rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.marketplace-card-meta,
.marketplace-card-footer {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  font-size:.78rem;
  color:var(--text-muted);
}

.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-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-sidebar-card,
.listing-comments-wrap {
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(7,12,24,.95);
  padding:1.4rem;
}

.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-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;
}

.listing-layout {
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);
  gap:1.4rem;
}

.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;
}

.listing-main-media-button {
  display:block;
  width:100%;
  background:transparent;
  border:none;
  padding:0;
  cursor:zoom-in;
}

.listing-gallery-note {
  margin-top:.75rem;
  font-size:.78rem;
  color:var(--text-muted);
}

.listing-thumb-row {
  display:flex;
  gap:.75rem;
  margin-top:1rem;
  overflow-x:auto;
  padding-bottom:.3rem;
}

.listing-thumb {
  width:92px;
  height:92px;
  border:none;
  padding:0;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}

.listing-sidebar-card h1 {
  margin:.55rem 0 .25rem;
}

.listing-product-name {
  color:#9bb1d4;
  margin:0 0 1rem;
}

.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;
}

.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) {
  .marketplace-grid,
  .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-card {
    grid-template-columns:96px minmax(0,1fr);
    min-height:120px;
  }

  .marketplace-card-media {
    min-height:120px;
  }
}

/* ================================================
   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.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger-btn:hover {
  background: rgba(240,90,40,0.12);
  border-color: rgba(240,90,40,0.3);
}
.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(0,0,0,0.65);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: linear-gradient(180deg, #0a0e20 0%, #07091a 100%);
  border-left: 1px solid rgba(255,255,255,0.07);
  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: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.mobile-nav-close:hover {
  background: rgba(255,60,60,0.15);
  border-color: rgba(255,60,60,0.3);
}

.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.2s;
}
.mobile-nav-links a i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.mobile-nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(240,90,40,0.4);
}
.mobile-nav-links a.active {
  color: var(--neon-orange);
  background: rgba(240,90,40,0.08);
  border-left-color: var(--neon-orange);
  font-weight: 600;
}
.mobile-nav-links a.active i { color: var(--neon-orange); }

.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;
}

.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: space-between;
  gap: 0.5rem;
}

.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;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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) {
  .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%; }
}

