/* =====================
   COLOUR SCHEME
   ===================== */
:root {
  --gold:        #F0A500;
  --gold-dark:   #C98A00;
  --gold-glow:   rgba(240, 165, 0, 0.12);
  --gold-glow-strong: rgba(240, 165, 0, 0.22);
  --silver:      #9E9E9E;
  --bg-dark:     #1a1a1a;
  --bg-card:     #242424;
  --bg-card-2:   #2e2e2e;
  --bg-header:   #111111;
  --text-main:   #f0f0f0;
  --text-muted:  #9E9E9E;
  --border:      #333333;
  --border-gold: rgba(240, 165, 0, 0.3);
  --online:      #4CAF50;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(240,165,0,0.15);
}

/* =====================
   RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 52px;
}
h1, h2, h3, h4, .header-logo, .age-gate-logo, .footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
}
a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: #fff; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =====================
   BACKGROUND BLOBS
   Radial gradient glows — not flat dark
   ===================== */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,120,0,0.12) 0%, transparent 70%);
  top: 50px;
  right: 0;
}
.blob-ad {
  width: 300px;
  height: 150px;
  background: radial-gradient(circle, rgba(240,165,0,0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

/* =====================
   POPUP NOTIFICATION
   ===================== */
#popup-notification {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 16px 20px;
  width: 240px;
  z-index: 1000;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  display: none;
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
}
.popup-dot {
  width: 8px;
  height: 8px;
  background: var(--online);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 6px;
  animation: livePulse 1.5s infinite;
}
.popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}
.popup-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.popup-cta {
  display: block;
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 7px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

/* =====================
   ANNOUNCEMENT BAR
   ===================== */
.announce-bar {
  background: var(--gold);
  color: #000;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announce-marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-left: 100%;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   LEADERBOARD AD
   ===================== */
.leaderboard-ad {
  background: linear-gradient(135deg, rgba(240,165,0,0.1) 0%, rgba(20,12,0,0.9) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.leaderboard-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.leaderboard-cta {
  background: var(--gold);
  color: #000;
  padding: 7px 18px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.leaderboard-cta:hover { opacity: 0.85; color: #000; }

/* AD LABEL */
.ad-label {
  display: inline-block;
  background: #444;
  color: #888;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* =====================
   AGE GATE
   ===================== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.age-gate-box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(240,165,0,0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.age-gate-logo {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}
.age-gate-logo span { color: var(--gold); }
.age-gate-warning {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.age-gate-text {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 14px;
}
.age-gate-text strong { color: #fff; }
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
#enter-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  border: none;
  padding: 15px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(240,165,0,0.3);
}
#enter-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.exit-btn {
  display: block;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.2s;
}
.exit-btn:hover { color: #fff; border-color: #555; }
.age-gate-disclaimer { font-size: 11px; color: #444; }

/* =====================
   HEADER
   ===================== */
.header {
  background: var(--bg-header);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 58px;
}
.header-logo {
  font-size: 22px;
  white-space: nowrap;
  color: #fff;
}
.header-logo a { color: #fff; }
.header-logo a:hover { color: #fff; }
.header-logo span { color: var(--gold); }
.header-nav {
  display: flex;
  gap: 2px;
  flex: 1;
}
.header-nav a {
  color: var(--text-muted);
  padding: 7px 11px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.header-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.header-search {
  display: flex;
}
.header-search input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  border-radius: 4px 0 0 4px;
  width: 220px;
  outline: none;
  transition: border-color 0.2s;
}
.header-search input:focus { border-color: var(--border-gold); }
.header-search input::placeholder { color: #444; }
.header-search button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 8px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.header-search button:hover { opacity: 0.85; }

/* =====================
   HERO BANNER
   ===================== */
.hero-banner {
  background: linear-gradient(160deg, #111 0%, #1a1a1a 40%, #1e1800 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-banner .bg-blob { position: absolute; }
.hero-text { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-banner h1 {
  font-size: 64px;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.hero-banner h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-banner p {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
}

/* =====================
   LAYOUT
   ===================== */
.layout {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* =====================
   LEFT SIDEBAR
   ===================== */
.sidebar-left {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.2s;
}
.sidebar-section:hover { border-color: var(--border-gold); }
.sidebar-section h3 {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.location-list li { margin-bottom: 4px; }
.location-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  padding: 5px 0;
}
.location-list a:hover { color: var(--gold); }
.location-list span {
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.checkbox-item:hover { color: #fff; }
.checkbox-item input[type="checkbox"] { accent-color: var(--gold); }
.fake-ad {
  background: linear-gradient(135deg, rgba(240,165,0,0.08), rgba(30,20,0,0.6));
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.fake-ad-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.fake-ad-img-placeholder {
  width: 100%;
  height: 280px;
  background-color: #333;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 8px;
  object-fit: cover;
}
.fake-ad-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.fake-ad-btn {
  display: block;
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 6px;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.fake-ad-btn:hover { opacity: 0.85; color: #000; }
.fake-ad-alt {
  background: linear-gradient(135deg, rgba(200,0,50,0.08), rgba(30,0,10,0.8));
  border-color: rgba(200,0,80,0.3);
}
.fake-ad-alt .fake-ad-headline { color: #ff4d6d; }
.fake-ad-alt .fake-ad-btn { background: #ff4d6d; }

/* =====================
   MAIN CONTENT
   ===================== */
.main-content { flex: 1; min-width: 0; }

.ad-banner-wide {
  background: linear-gradient(135deg, rgba(240,165,0,0.08) 0%, rgba(30,20,0,0.8) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 22px 28px;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fake-banner-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.fake-banner-sub {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.section-header h2 { font-size: 28px; color: #fff; }
.sort-options select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  outline: none;
  cursor: pointer;
}

/* =====================
   PROFILE GRID
   ===================== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
}

/* Cards start invisible — GSAP animates them in */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25,0.8,0.25,1), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
}
.profile-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.profile-card.vip {
  border-color: var(--border-gold);
  box-shadow: 0 0 12px rgba(240,165,0,0.1);
}
.profile-card.vip:hover {
  box-shadow: var(--shadow-gold);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 200 / 296;
  overflow: hidden;
}
.img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2e2e2e 0%, #3a3a3a 100%);
  background-size: cover;
  background-position: center top;
}
.img-placeholder.blurred { filter: blur(10px); transform: scale(1.05); }

.badge-vip {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 3px;
  z-index: 2;
}
.badge-online {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--online);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  z-index: 2;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}
.profile-card:hover .card-overlay { opacity: 1; }
.view-btn {
  background: var(--gold);
  color: #000;
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s;
}
.view-btn:hover { background: #fff; color: #000; transform: scale(1.04); }

.unlock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.unlock-overlay span { font-size: 24px; }
.unlock-overlay p { font-size: 12px; color: #fff; font-weight: 600; }
.unlock-overlay button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 6px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.unlock-overlay button:hover { opacity: 0.85; }

.card-info { padding: 10px 12px 14px; }
.card-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.verified { color: var(--gold); font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 400; }
.new-badge {
  background: var(--online);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.card-location { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.card-stats { font-size: 11px; color: #5a5a5a; margin-bottom: 10px; }
.card-actions { display: flex; gap: 6px; }
.btn-whatsapp {
  background: #25D366;
  color: #000;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  flex: 1;
  text-align: center;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5b; color: #000; }
.btn-save {
  background: transparent;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-save:hover { color: var(--gold); border-color: var(--border-gold); }

/* Mid-feed ad */
.ad-card-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(240,165,0,0.07) 0%, rgba(26,18,0,0.8) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ad-card-full:hover { box-shadow: var(--shadow-gold); }
.ad-card-full .fake-ad-headline { font-size: 18px; }

/* Load more */
.load-more { text-align: center; margin-top: 28px; }
.load-more button {
  background: transparent;
  border: 2px solid var(--border-gold);
  color: var(--gold);
  padding: 13px 44px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s;
}
.load-more button:hover { background: var(--gold); color: #000; }

/* =====================
   RIGHT SIDEBAR
   ===================== */
.sidebar-right {
  width: 195px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cam-thumb { margin-bottom: 10px; }
.cam-img-placeholder {
  position: relative;
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #2e2e2e, #3a3a3a);
  border-radius: 5px;
  margin-bottom: 4px;
  overflow: hidden;
}
.live-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e53935;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}
.cam-thumb p { font-size: 12px; color: var(--text-muted); }
.see-all-link { display: block; font-size: 12px; color: var(--gold); margin-top: 6px; }
.fake-ad-right {
  background: linear-gradient(135deg, rgba(240,165,0,0.08), rgba(30,20,0,0.7));
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fake-ad-right {
  position: relative;
}
.fake-ad-right p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.fake-ad-right .ad-label {
  position: absolute;
  top: 6px;
  right: 6px;
}
.fake-ad-right-alt {
  background: linear-gradient(135deg, rgba(200,0,50,0.08), rgba(20,0,10,0.9));
  border-color: rgba(200,0,80,0.25);
}
.fake-ad-right-alt p { color: #ff4d6d; }

/* Inline ad card (fits in grid) */
.ad-card-inline {
  background: linear-gradient(135deg, rgba(240,165,0,0.07), rgba(20,14,0,0.9));
  border: 1px dashed var(--border-gold);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 120px;
}
.ad-card-inline .fake-ad-headline { font-size: 14px; margin-bottom: 2px; }
.ad-card-inline .fake-ad-sub { font-size: 11px; }

/* Bottom wide ad spacing */
.ad-banner-bottom { margin-top: 24px; margin-bottom: 0; }
.agency-list li { margin-bottom: 6px; }
.agency-list a { font-size: 13px; color: var(--text-muted); }
.agency-list a:hover { color: var(--gold); }
.blog-list li { margin-bottom: 8px; }
.blog-list a { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.blog-list a:hover { color: var(--gold); }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-header);
  border-top: 2px solid var(--border-gold);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a { font-size: 13px; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 11px; color: #444; margin-bottom: 4px; }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-bar {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { color: #444; }
.breadcrumb-current { color: var(--gold); }

/* =====================
   STICKY BOTTOM BAR
   ===================== */
#sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #111 0%, #1a1200 50%, #111 100%);
  border-top: 2px solid var(--gold);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
#sticky-bar p {
  font-size: 13px;
  color: var(--text-muted);
}
#sticky-bar strong { color: var(--gold); }
#sticky-bar a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}
#sticky-bar button {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  position: absolute;
  right: 16px;
}
#sticky-bar button:hover { color: #fff; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1200px) {
  .sidebar-right { display: none; }
}
@media (max-width: 900px) {
  .sidebar-left { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-banner h1 { font-size: 48px; }
}
@media (max-width: 600px) {
  .header-nav { display: none; }
  .header-search input { width: 140px; }
  .hero-banner h1 { font-size: 38px; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
