/* ── GLOBAL DESIGN SYSTEM ── */
:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --surface: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --text: #fdfdfd; /* Pure white for primary headings */
  --text2: #cfcfcf; /* Elevated for better clarity */
  --text3: #999999; /* Elevated for muted labels */
  --accent: #e8a857; /* Refined Gold to match logo */
  --accent-rgb: 232, 168, 87;
  --accent2: #d4643a;
  --live: #e84040;
  --teal: #3ec9a7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --r: 10px;
  --r2: 16px;

  /* Bootstrap Core Overrides */
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-primary: var(--accent);
  --bs-light: var(--surface);
  --bs-dark: var(--bg2);
  --bs-border-color: var(--border);
  --bs-card-bg: var(--surface);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 144px; /* Ticker (36px) + Navbar (64px) + Category Nav (44px) */
}

/* Hard Overrides for Legacy Bootstrap Utility Classes */
.bg-white { background-color: var(--surface) !important; }
.bg-light { background-color: var(--bg2) !important; }
.bg-dark { background-color: #000 !important; }
.text-dark { color: var(--text) !important; }
.text-muted { color: var(--text2) !important; }
.border-end, .border-bottom, .border-top, .border-start, .border { border-color: var(--border) !important; }
.card { background-color: var(--surface) !important; border-color: var(--border) !important; color: var(--text) !important; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.5) !important; }
.container { max-width: 1400px; }

.form-control, .form-select {
    background-color: var(--bg2) !important;
    border-color: var(--border2) !important;
    color: var(--text) !important;
    font-weight: 400 !important;
}
.form-control::placeholder { color: var(--text3) !important; }

/* ── NAV ── */
nav.custom-nav {
  position: fixed !important; top: 36px !important; left: 0; right: 0; z-index: 1060 !important;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.custom-nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.custom-nav .logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.custom-nav .logo span { color: var(--accent); }

.custom-nav .nav-links {
  display: flex; gap: 36px; list-style: none; margin: 0; padding: 0;
}
.custom-nav .nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.custom-nav .nav-links a:hover { color: var(--text); }

.custom-nav .nav-right {
  display: flex; align-items: center; gap: 16px; min-width: 140px; justify-content: flex-end;
}

/* ── SEARCH BAR ── */
.search-container {
  flex: 1; max-width: 480px; margin: 0 40px; position: relative;
}
.search-input-wrap {
  position: relative; display: flex; align-items: center;
}
.search-icon {
  position: absolute; left: 16px; color: var(--text3); font-size: 18px;
}
#headerSearch {
  width: 100%; padding: 10px 16px 10px 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text); font-size: 14px;
  transition: all 0.2s;
}
#headerSearch:focus {
  background: rgba(255,255,255,0.07);
  border-color: rgba(var(--accent-rgb), 0.5);
  outline: none; box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.search-results-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0;
  border-radius: 16px; padding: 12px;
  z-index: 1100; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: fadeIn 0.2s ease-out;
}
.search-item {
  display: flex; align-items: center; gap: 12px; padding: 10px;
  border-radius: 10px; text-decoration: none; color: var(--text2);
  transition: background 0.2s;
}
.search-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.search-item img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.search-item .title { font-size: 14px; font-weight: 500; }
.search-item .meta { font-size: 11px; color: var(--text3); text-transform: uppercase; }

.custom-nav .btn-outline {
  padding: 8px 20px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.custom-nav .btn-outline:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }

.custom-nav .btn-primary {
  padding: 8px 22px;
  border: none;
  border-radius: 100px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.custom-nav .btn-primary:hover { background: #f0b96a; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 5vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232,168,87,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(62,201,167,0.05) 0%, transparent 50%);
}

.hero-grid-line {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 30%, transparent 80%);
  opacity: 0.2; /* Subtler grid */
}

.hero-content { position: relative; max-width: 640px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(232,168,87,0.3);
  background: rgba(232,168,87,0.07);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  font-weight: 500;
}
.hero-tag::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}
h1.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 16px; color: var(--text2); line-height: 1.7;
  max-width: 460px; margin-bottom: 40px; font-weight: 400;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-lg {
  padding: 14px 32px; font-size: 15px; border-radius: 100px;
  background: var(--accent); color: #0a0a0a;
  font-family: var(--font-body); font-weight: 500;
  border: none; cursor: pointer; transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-lg:hover { background: #f0b96a; transform: translateY(-1px); }

.btn-ghost {
  padding: 14px 32px; font-size: 15px; border-radius: 100px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--text); font-family: var(--font-body); font-weight: 400;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--surface); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 500; color: var(--text);
}
.stat-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.hero-right {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px;
}

/* ── LIVE CARD (hero floating) ── */
.live-preview {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.live-thumb {
  position: relative; height: 160px;
  background: linear-gradient(135deg, #1a1208 0%, #2d1f0a 50%, #1a120a 100%);
  display: flex; align-items: center; justify-content: center;
}
.live-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.live-play {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.live-play svg { fill: white; }
.live-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--live); color: white;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  display: flex; align-items: center; gap: 5px;
}
.live-badge::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: white;
  animation: pulse 1.5s infinite;
}
.live-viewers {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 11px; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 4px;
}
.live-info { padding: 14px; }
.live-vendor { font-size: 12px; color: var(--text2); margin-bottom: 4px; font-weight: 500; }
.live-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.live-products { display: flex; gap: 6px; }
.live-prod-chip {
  padding: 3px 10px; border-radius: 100px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 11px; color: var(--text2);
}

.notification-card {
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.notif-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(232,168,87,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.notif-text { font-size: 12px; color: var(--text2); line-height: 1.5; font-weight: 400; }
.notif-text strong { color: var(--text); font-weight: 600; }

/* ── SECTIONS ── */
section { padding: 80px 5vw; }
section + section { border-top: 1px solid var(--border); }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}
.section-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px; font-weight: 600;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500; letter-spacing: -0.5px; color: var(--text); line-height: 1.15;
}
.see-all {
  font-size: 13px; color: var(--text2); text-decoration: none;
  border-bottom: 1px solid var(--border2); padding-bottom: 2px;
  white-space: nowrap; transition: color 0.2s, border-color 0.2s;
  font-weight: 500;
}
.see-all:hover { color: var(--accent); border-color: var(--accent); }

/* ── FEATURED LIVES ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  border-radius: var(--r2); overflow: hidden;
}
.feat-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--surface);
}
.feat-item:first-child {
  grid-column: 1 / 3; grid-row: 1 / 3;
  min-height: 480px;
}
.feat-item:not(:first-child) { min-height: 234px; }

.feat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.6);
}
.feat-item:hover .feat-bg { transform: scale(1.04); }

.feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.feat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.feat-content-top {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}

.badge-live {
  background: var(--live); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: white;
  animation: pulse 1.5s infinite;
}
.badge-upcoming {
  background: rgba(232,168,87,0.2); color: var(--accent);
  border: 1px solid rgba(232,168,87,0.3);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.badge-viewers {
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px; padding: 4px 10px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
  font-weight: 600;
}

.feat-vendor { font-size: 12px; color: var(--text); font-weight: 600; margin-bottom: 4px; opacity: 0.7; }
.feat-title { font-size: 18px; font-weight: 500; color: white; margin-bottom: 12px; line-height: 1.3; }
.feat-item:first-child .feat-title { font-size: 26px; font-family: var(--font-display); }
.feat-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.feat-tag {
  padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
  font-size: 11px; color: rgba(255,255,255,0.8);
}

/* ── CURRENT LIVE VENDORS ── */
.vendor-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px; }
.vendor-scroll::-webkit-scrollbar { height: 0; }

.vendor-card {
  flex-shrink: 0; width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 20px; text-align: center;
  cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.vendor-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.vendor-card.is-live { border-color: rgba(232,64,64,0.3); }

.vendor-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--bg3), var(--surface));
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; color: var(--text);
  position: relative;
}
.vendor-live-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--live);
  animation: ring-pulse 2s infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

.vendor-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.vendor-cat { font-size: 12px; color: var(--text3); margin-bottom: 16px; font-weight: 500; }
.vendor-btn {
  width: 100%; padding: 10px; border-radius: 100px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--text2); font-family: var(--font-body); font-size: 12px;
  cursor: pointer; transition: all 0.2s; font-weight: 600;
}
.vendor-card.is-live .vendor-btn {
  background: var(--bg); border: 1px solid var(--live); color: #ff6b6b;
}

/* ── UPCOMING LIVES ── */
.upcoming-list { display: flex; flex-direction: column; gap: 2px; }
.upcoming-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.upcoming-item:hover { background: var(--surface); border-color: var(--border2); }

.upcoming-time {
  min-width: 80px; text-align: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--text);
  line-height: 1;
}
.upcoming-time-sub { font-family: var(--font-body); font-size: 11px; color: var(--text3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

.upcoming-divider { width: 1px; height: 40px; background: var(--border2); flex-shrink: 0; }

.upcoming-vendor-av {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: var(--text2);
}

.upcoming-info { flex: 1; min-width: 0; }
.upcoming-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.upcoming-vendor { font-size: 12px; color: var(--text3); }

.upcoming-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.upcoming-remind {
  padding: 7px 16px; border-radius: 8px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--text2); font-family: var(--font-body); font-size: 12px;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.upcoming-remind:hover { background: rgba(232,168,87,0.1); border-color: rgba(232,168,87,0.3); color: var(--accent); }

/* ── UPCOMING DROPS ── */
.drops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.drop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden; cursor: pointer; transition: all 0.25s;
}
.drop-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.drop-img {
  height: 240px; position: relative;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.drop-countdown {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 8px 16px;
  display: flex; gap: 12px; align-items: center; white-space: nowrap;
}
.cd-unit { text-align: center; }
.cd-num { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--text); line-height: 1; }
.cd-label { font-size: 9px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.cd-sep { font-size: 18px; color: var(--text3); margin-top: -4px; }
.drop-info { padding: 16px; }
.drop-brand { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.drop-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.drop-price { display: flex; align-items: center; gap: 8px; }
.drop-price-new { font-size: 16px; font-weight: 500; color: var(--accent); }

/* ── PRODUCTS (Trending & New) ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden; cursor: pointer; transition: all 0.25s;
  text-decoration: none;
}
.product-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.product-img {
  height: 220px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-trending { background: rgba(232,168,87,0.2); color: var(--accent); border: 1px solid rgba(232,168,87,0.3); }

.product-wish {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  cursor: pointer; color: var(--text2); font-size: 13px;
}
.product-card:hover .product-wish { opacity: 1; }

.product-info { padding: 14px; }
.product-brand { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.product-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 15px; font-weight: 500; color: var(--text); }
.product-rating { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 3px; }
.star { color: var(--accent); }

.prod-shape {
  width: 100px; height: 100px; border-radius: 50%;
  position: absolute; filter: blur(30px); opacity: 0.3;
}
.prod-icon { font-size: 48px; position: relative; z-index: 1; opacity: 0.8; }

/* ── TABS ── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab {
  padding: 12px 24px; font-size: 14px; color: var(--text3);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body); letter-spacing: 0;
}
.tab.active { color: var(--text) !important; border-bottom-color: var(--accent) !important; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  position: relative; overflow: hidden;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 72px; line-height: 0.5;
  color: var(--border2); position: absolute; top: 20px; right: 20px;
  font-weight: 500;
}
.testi-text {
  font-size: 14px; color: var(--text2); line-height: 1.75;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: var(--text2);
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--text); }
.testi-meta { font-size: 12px; color: var(--text3); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--accent); }

/* ── NEWSLETTER / CTA ── */
.cta-section {
  margin: 0 5vw 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(232,168,87,0.06) 0%, transparent 60%);
}
.cta-text { position: relative; max-width: 440px; }
.cta-text h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px);
  font-weight: 500; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px;
}
.cta-text p { font-size: 15px; color: var(--text2); }

/* ── FOOTER ── */
footer.custom-footer {
  padding: 48px 5vw 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.custom-footer .footer-top {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.custom-footer .footer-brand .logo { display: block; margin-bottom: 12px; font-family: var(--font-display); font-size:22px; color:var(--text); font-weight:600; text-decoration:none; }
.custom-footer .footer-brand .logo span { color: var(--accent); }
.custom-footer .footer-brand p { font-size: 13px; color: var(--text3); max-width: 260px; line-height: 1.7; margin-bottom:0;}
.custom-footer .footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.custom-footer .footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.custom-footer .footer-col a { display: block; font-size: 13px; color: var(--text3); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.custom-footer .footer-col a:hover { color: var(--text2); }
.custom-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--border); padding-top: 24px; }
.custom-footer .footer-socials { display: flex; gap: 12px; }
.custom-footer .social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text3); font-size: 14px;
  transition: all 0.2s; text-decoration: none;
}
.custom-footer .social-btn:hover { border-color: var(--border2); color: var(--text2); }

/* ── TICKER ── */
.ticker-wrap {
  background: #ffcc00; /* Vibrant Yellow */
  color: #000;
  overflow: hidden; height: 36px; display: flex; align-items: center;
  position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 1070 !important;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.ticker {
  display: flex; gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 11px; color: #000;
  letter-spacing: 0.04em; text-transform: uppercase;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-right { display: none; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .feat-item:first-child { grid-column: 1 / 3; grid-row: 1; min-height: 300px; }
  .feat-item:not(:first-child) { min-height: 180px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-item:first-child { grid-column: 1; min-height: 280px; }
  nav.custom-nav { padding: 0 4vw; }
  section { padding: 56px 4vw; }
  .hero { padding: 60px 4vw; }
  .hero-stats { gap: 24px; }
  .cta-section { padding: 40px 6%; }
  .footer-links { gap: 32px; }
}


/* ── GLASS & UTILS ── */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-deep {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── STREAM SPECIFIC OVERRIDES ── */
.stream-container {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  height: calc(100vh - 64px);
  background: #000;
}

.stream-panel {
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.stream-main {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-chat {
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

/* ── MOBILE FOOTER NAV ── */
.mobile-footer-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px; background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-around;
  z-index: 1100;
  padding: 0 10px;
}

@media (min-width: 992px) {
  .mobile-footer-nav { display: none !important; }
}

.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; color: var(--text3); transition: all 0.2s;
}
.mobile-nav-item i { font-size: 20px; }
.mobile-nav-item span { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.mobile-nav-item.active { color: var(--accent); }
.mobile-nav-item:hover { color: var(--text); }

/* ── IMAGE FALLBACK ── */
.img-fallback {
  width: 100%; height: 100%; min-height: 180px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  color: var(--border2); font-size: 48px;
  border: 1px dashed var(--border);
  border-radius: inherit;
}
.img-fallback i { opacity: 0.5; color: var(--accent); }

.chat-user { font-weight: 600; color: var(--accent); margin-right: 6px; }
.chat-text { color: var(--text2); }

.stream-host-info { padding: 16px; border-bottom: 1px solid var(--border); }

/* Responsive Stream */
@media (max-width: 1100px) {
  .stream-container { grid-template-columns: 240px 1fr; }
  .stream-chat { position: fixed; right: -320px; top: 64px; bottom: 0; width: 320px; transition: right 0.3s; z-index: 100; }
  .stream-chat.open { right: 0; }
}

@media (max-width: 800px) {
  .stream-container { grid-template-columns: 1fr; }
  .stream-panel { display: none; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
