/*
Theme Name: BTT Discovery
Theme URI: https://blacktraveltube.com
Author: BlackTravelTube / Urban Events Global
Author URI: https://blacktraveltube.com
Description: The #1 global discovery platform for Black travelers — featuring destination search, video discovery, creator profiles, and event bookings powered by Urban Events Global.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: btt
Tags: travel, discovery, video, black-travel, events
*/

/* ============================================================
   BTT DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   Aligned with UEG brand | BTT pillar color: Purple #7C3AED
   ============================================================ */
:root {
  /* ── Core Dark ── */
  --btt-black:       #0a0a0a;
  --btt-deep:        #080808;
  --btt-dark:        #111111;
  --btt-charcoal:    #1a1a1a;
  --btt-graphite:    #242424;
  --btt-mid:         #2e2e2e;
  --btt-white:       #ffffff;
  --btt-off-white:   #f8f6f1;
  --btt-muted:       rgba(255,255,255,0.45);
  --btt-subtle:      rgba(255,255,255,0.10);

  /* ── BTT Brand Purple ── */
  --btt-purple:      #7C3AED;
  --btt-purple-light:#9F67F5;
  --btt-purple-dark: #5B21B6;
  --btt-purple-glow: rgba(124,58,237,0.20);
  --btt-purple-soft: rgba(124,58,237,0.12);

  /* ── UEG Gold (cross-brand) ── */
  --btt-gold:        #d4a843;
  --btt-gold-light:  #e8c46a;
  --btt-gold-glow:   rgba(212,168,67,0.18);

  /* ── Borders ── */
  --btt-border-dark:   rgba(255,255,255,0.08);
  --btt-border-purple: rgba(124,58,237,0.25);
  --btt-border-gold:   rgba(212,168,67,0.20);
  --btt-border-mid:    rgba(255,255,255,0.14);

  /* ── Typography ── */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* ── Layout ── */
  --content-width: 760px;
  --wide-width:    1140px;
  --full-width:    1440px;

  /* ── Radii ── */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 32px;

  /* ── Motion ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--btt-white);
  background: var(--btt-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--btt-border-purple);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s var(--ease-out), border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(8,8,8,0.98);
  border-bottom-color: rgba(124,58,237,0.40);
}

.header-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--btt-white);
  letter-spacing: -0.02em;
}

.site-logo-text span {
  color: var(--btt-purple-light);
}

/* Header Search Bar */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.header-search-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--btt-border-mid);
  border-radius: var(--radius-xl);
  padding: 0.6rem 1.2rem 0.6rem 3rem;
  color: var(--btt-white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.header-search-input:focus {
  border-color: var(--btt-purple);
  background: rgba(124,58,237,0.08);
}

.header-search-input::placeholder { color: var(--btt-muted); }

.header-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--btt-muted);
  pointer-events: none;
}

.header-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-purple);
  border-radius: var(--radius-md);
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.header-search-results.active { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--btt-border-dark);
}

.search-result-item:hover { background: var(--btt-graphite); }
.search-result-item:last-child { border-bottom: none; }

.search-result-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--btt-purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.search-result-text { font-size: 0.875rem; color: var(--btt-white); }
.search-result-type { font-size: 0.75rem; color: var(--btt-muted); }

/* Main Nav */
.main-nav { margin-left: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--btt-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--btt-white);
  background: var(--btt-subtle);
}

.main-nav a.current-menu-item { color: var(--btt-purple-light); }

.btn-nav-cta {
  background: var(--btt-purple);
  color: var(--btt-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-nav-cta:hover {
  background: var(--btt-purple-light) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--btt-white);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212,168,67,0.10) 0%, transparent 50%),
    var(--btt-black);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wide-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--btt-purple-light);
  background: var(--btt-purple-soft);
  border: 1px solid var(--btt-border-purple);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--btt-white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--btt-purple-light) 0%, var(--btt-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--btt-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Big Search Box */
.hero-search {
  max-width: 680px;
  margin: 0 auto 2rem;
  position: relative;
}

.hero-search-wrap {
  display: flex;
  gap: 0;
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-purple);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search-wrap:focus-within {
  border-color: var(--btt-purple);
  box-shadow: 0 0 0 4px var(--btt-purple-glow);
}

.hero-search-icon-wrap {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  color: var(--btt-muted);
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  background: none;
  border: none;
  padding: 1.1rem 0;
  color: var(--btt-white);
  font-size: 1.05rem;
  outline: none;
}

.hero-search-input::placeholder { color: rgba(255,255,255,0.35); }

.hero-search-btn {
  background: var(--btt-purple);
  color: var(--btt-white);
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  transition: background 0.2s;
  flex-shrink: 0;
  margin: 6px;
  border-radius: var(--radius-xl);
}

.hero-search-btn:hover { background: var(--btt-purple-light); }

.hero-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-purple);
  border-radius: var(--radius-md);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8);
}

.hero-search-results.active { display: block; }

/* Popular Destinations */
.hero-popular {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-popular-label {
  font-size: 0.8rem;
  color: var(--btt-muted);
}

.hero-popular-tag {
  font-size: 0.8rem;
  color: var(--btt-muted);
  background: var(--btt-subtle);
  border: 1px solid var(--btt-border-dark);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-xl);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-popular-tag:hover {
  color: var(--btt-purple-light);
  border-color: var(--btt-border-purple);
  background: var(--btt-purple-soft);
}

/* ============================================================
   SECTION PATTERNS
   ============================================================ */
.section {
  padding: var(--space-2xl) 2rem;
}

.section-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--btt-purple-light);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--btt-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--btt-purple-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: gap 0.2s;
}

.section-link:hover { gap: 0.6rem; }

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--btt-border-purple);
  box-shadow: 0 16px 40px rgba(124,58,237,0.15);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--btt-graphite);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s;
}

.video-card:hover .video-card-play { opacity: 1; }

.video-card-play-btn {
  width: 52px;
  height: 52px;
  background: var(--btt-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(124,58,237,0.5);
}

.video-card-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.video-card-country-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.video-card-body {
  padding: 1rem;
}

.video-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--btt-white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--btt-muted);
}

.video-card-creator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.video-card-creator img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.destination-card:hover .destination-card-img {
  transform: scale(1.08);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.destination-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.destination-card-country {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--btt-purple-light);
  margin-bottom: 0.25rem;
}

.destination-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--btt-white);
}

.destination-card-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* ============================================================
   CREATOR CARDS
   ============================================================ */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.creator-card {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.creator-card:hover {
  border-color: var(--btt-border-purple);
  transform: translateY(-3px);
}

.creator-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 2px solid var(--btt-border-purple);
}

.creator-card-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--btt-white);
  margin-bottom: 0.25rem;
}

.creator-card-country {
  font-size: 0.8rem;
  color: var(--btt-muted);
  margin-bottom: 0.75rem;
}

.creator-card-stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.creator-stat-num {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--btt-purple-light);
}

.creator-stat-label {
  font-size: 0.7rem;
  color: var(--btt-muted);
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.event-card:hover {
  border-color: var(--btt-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--btt-gold-glow);
}

.event-card.ueg-featured {
  border-color: var(--btt-gold);
  background: linear-gradient(135deg, rgba(212,168,67,0.06) 0%, var(--btt-charcoal) 100%);
}

.event-card.ueg-featured::before {
  content: '⭐ UEG Featured';
  display: block;
  background: var(--btt-gold);
  color: var(--btt-black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  text-align: center;
}

.event-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--btt-graphite);
  position: relative;
}

.event-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.event-card:hover .event-card-thumb img { transform: scale(1.04); }

.event-card-body { padding: 1.25rem; }

.event-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--btt-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--btt-white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.event-card-location {
  font-size: 0.8rem;
  color: var(--btt-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--btt-white);
}

.btn-event {
  background: var(--btt-gold);
  color: var(--btt-black);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.btn-event:hover {
  background: var(--btt-gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   TRENDING STRIP
   ============================================================ */
.trending-strip {
  background: var(--btt-charcoal);
  border-top: 1px solid var(--btt-border-dark);
  border-bottom: 1px solid var(--btt-border-dark);
  padding: 1rem 2rem;
  overflow: hidden;
}

.trending-scroll {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap;
}

.trending-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--btt-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}

.trending-item:hover { color: var(--btt-purple-light); }

.trending-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btt-purple);
  flex-shrink: 0;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   DESTINATION HERO (Taxonomy Pages)
   ============================================================ */
.destination-hero {
  padding: 9rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.destination-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.destination-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.95) 100%);
}

.destination-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wide-width);
  margin: 0 auto;
  width: 100%;
}

.destination-breadcrumb {
  font-size: 0.8rem;
  color: var(--btt-muted);
  margin-bottom: 1rem;
}

.destination-breadcrumb a {
  color: var(--btt-purple-light);
  transition: color 0.2s;
}

.destination-breadcrumb a:hover { color: var(--btt-white); }

.destination-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.destination-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.destination-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--btt-muted);
}

.destination-stat strong { color: var(--btt-white); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--btt-charcoal);
  border-bottom: 1px solid var(--btt-border-dark);
  padding: 0 2rem;
  position: sticky;
  top: 72px;
  z-index: 99;
}

.filter-bar-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-tab {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--btt-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.filter-tab:hover { color: var(--btt-white); }

.filter-tab.active {
  color: var(--btt-purple-light);
  border-bottom-color: var(--btt-purple);
}

/* ============================================================
   VIDEO SINGLE PAGE
   ============================================================ */
.video-single {
  padding-top: 5rem;
}

.video-embed-wrap {
  background: #000;
  max-width: var(--wide-width);
  margin: 0 auto;
  position: relative;
}

.video-embed {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-info {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 2rem;
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 1rem;
}

.video-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--btt-border-dark);
}

.video-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.video-tag {
  font-size: 0.75rem;
  background: var(--btt-purple-soft);
  color: var(--btt-purple-light);
  border: 1px solid var(--btt-border-purple);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
}

/* ============================================================
   CREATOR PROFILE PAGE
   ============================================================ */
.creator-profile-hero {
  padding: 8rem 2rem 3rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, var(--btt-black) 100%);
  border-bottom: 1px solid var(--btt-border-dark);
}

.creator-profile-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.creator-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--btt-purple);
  flex-shrink: 0;
}

.creator-profile-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 0.5rem;
}

.creator-verified {
  color: var(--btt-purple-light);
  font-size: 1rem;
}

.creator-profile-bio {
  color: var(--btt-muted);
  max-width: 520px;
  margin: 0.75rem 0 1.5rem;
}

.creator-profile-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.creator-stat-block { text-align: center; }

.creator-stat-block .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--btt-purple-light);
  display: block;
}

.creator-stat-block .label {
  font-size: 0.75rem;
  color: var(--btt-muted);
}

/* ============================================================
   CLAIM PROFILE SECTION
   ============================================================ */
.claim-banner {
  background: linear-gradient(135deg, var(--btt-purple-dark) 0%, var(--btt-purple) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.claim-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 0.35rem;
}

.claim-banner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.btn-claim {
  background: var(--btt-white);
  color: var(--btt-purple-dark);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* ============================================================
   FORMS
   ============================================================ */
.btt-form {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--btt-white);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--btt-graphite);
  border: 1px solid var(--btt-border-mid);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--btt-white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--btt-purple);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--btt-muted); }

.form-textarea { min-height: 120px; resize: vertical; }

.btn-primary {
  background: var(--btt-purple);
  color: var(--btt-white);
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--btt-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--btt-purple-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--btt-purple-light);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--btt-border-purple);
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--btt-purple-soft);
  color: var(--btt-white);
}

/* ============================================================
   TRAVEL INSIGHTS SECTION
   ============================================================ */
.travel-insights {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.travel-insights h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.insight-item {
  background: var(--btt-graphite);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.insight-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.insight-label { font-size: 0.75rem; color: var(--btt-muted); margin-bottom: 0.2rem; }
.insight-value { font-size: 0.875rem; font-weight: 600; color: var(--btt-white); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--btt-muted);
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--btt-purple);
  color: var(--btt-white);
  border-color: var(--btt-purple);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--btt-deep);
  border-top: 1px solid var(--btt-border-dark);
  padding: var(--space-2xl) 2rem var(--space-lg);
}

.footer-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--btt-border-dark);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--btt-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--btt-white);
  margin-bottom: 1.25rem;
}

.footer-links li + li { margin-top: 0.6rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--btt-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--btt-purple-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--btt-muted);
}

.footer-copy a { color: var(--btt-gold); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btt-muted);
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--btt-purple-soft);
  color: var(--btt-purple-light);
  border-color: var(--btt-border-purple);
}

/* ============================================================
   UEG CTA BANNER
   ============================================================ */
.ueg-cta-banner {
  background: linear-gradient(135deg, rgba(212,168,67,0.12) 0%, rgba(124,58,237,0.12) 100%);
  border: 1px solid var(--btt-border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ueg-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ueg-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--btt-gold);
  margin-bottom: 0.75rem;
}

.ueg-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 0.75rem;
}

.ueg-cta-subtitle {
  color: var(--btt-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
}

/* ============================================================
   NOTICE BARS & ALERTS
   ============================================================ */
.notice-bar {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-bar.success { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
.notice-bar.error   { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.notice-bar.info    { background: var(--btt-purple-soft); color: var(--btt-purple-light); border: 1px solid var(--btt-border-purple); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .video-grid  { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 768px) {
  .section { padding: var(--space-xl) 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
  .footer-top { grid-template-columns: 1fr; }
  .creator-profile-inner { flex-direction: column; }
  .claim-banner { flex-direction: column; }
  .destination-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
  .video-grid   { grid-template-columns: 1fr; }
  .event-grid   { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-purple  { color: var(--btt-purple-light); }
.text-gold    { color: var(--btt-gold); }
.text-muted   { color: var(--btt-muted); }
.bg-charcoal  { background: var(--btt-charcoal); }
.hidden       { display: none !important; }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════════════════
   BTT Phase 2 — Additional Styles
   Appended to style.css
═══════════════════════════════════════════════════════════ */

/* ── VIDEO GRID ─────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ── VIDEO CARD ─────────────────────────────────────────── */
.video-card {
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.2,0,.1,1), box-shadow 0.22s, border-color 0.2s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  border-color: var(--btt-border-purple);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-card-thumb img {
  transform: scale(1.04);
}
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
}
.video-card:hover .video-card-play {
  background: rgba(0,0,0,0.35);
}
.video-card-play-btn {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(124,58,237,0.5);
}
.video-card:hover .video-card-play-btn {
  opacity: 1;
  transform: scale(1);
}
.video-card-country-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.video-card-body {
  padding: 0.85rem 1rem;
}
.video-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--btt-white);
  line-height: 1.4;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-meta {
  font-size: 0.76rem;
  color: var(--btt-muted);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── DESTINATION CARD ───────────────────────────────────── */
.destination-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.2,0,.1,1), box-shadow 0.22s;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover .destination-card-img {
  transform: scale(1.06);
}
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.destination-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}
.destination-card-country {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--btt-gold);
  margin-bottom: 0.2rem;
}
.destination-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.destination-card-count {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--btt-purple-light);
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--btt-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* ── EVENT CARD ─────────────────────────────────────────── */
.btt-event-card {
  transition: transform 0.22s cubic-bezier(.2,0,.1,1), box-shadow 0.22s;
}
.btt-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── HERO ────────────────────────────────────────────────── */
.btt-hero {
  background: var(--btt-black);
}
.destination-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--btt-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

/* ── STICKY FILTER BAR ──────────────────────────────────── */
#destFilterBar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#destFilterBar::-webkit-scrollbar { display: none; }

.dest-tab {
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.dest-tab:hover {
  background: rgba(124,58,237,0.12) !important;
  color: var(--btt-purple-light) !important;
}

/* ── HERO SEARCH ────────────────────────────────────────── */
.hero-search-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.hero-search-wrap input:focus { border-color: #7C3AED !important; }

/* ── CHARCOAL HOVER ─────────────────────────────────────── */
.btt-charcoal-hover {
  background: var(--btt-charcoal) !important;
}

/* ── TRENDING STRIP ─────────────────────────────────────── */
.trending-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  background: rgba(124,58,237,0.08);
  border-top: 1px solid var(--btt-border-dark);
  border-bottom: 1px solid var(--btt-border-dark);
}
.trending-strip-inner {
  display: inline-block;
  animation: marquee 35s linear infinite;
}
.trending-strip:hover .trending-strip-inner {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FORM ELEMENTS ──────────────────────────────────────── */
.btt-form .form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--btt-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btt-form .form-input {
  width: 100%;
  background: var(--btt-charcoal);
  border: 1px solid var(--btt-border-mid);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--btt-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.btt-form .form-input:focus {
  border-color: var(--btt-purple);
}

/* ── MOBILE STICKY CTA ──────────────────────────────────── */
@media (max-width: 768px) {
  #bttCaptureBanner {
    flex-direction: column !important;
    text-align: center;
    padding: 1rem !important;
    gap: 0.75rem !important;
  }
  #bttCaptureBanner form {
    width: 100%;
    justify-content: center;
  }
  #bttCaptureBanner input {
    width: 100% !important;
    max-width: 280px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }
  .destination-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  .video-card-title {
    font-size: 0.82rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
}

/* ── AD SLOTS ───────────────────────────────────────────── */
.adsbygoogle {
  display: block;
}

/* ── SCROLL BEHAVIOR ─────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── PURPLE LIGHT VAR FALLBACK ───────────────────────────── */
:root {
  --btt-purple-light: #a78bfa;
  --btt-charcoal-hover: rgba(255,255,255,0.06);
  --btt-border-purple: rgba(124,58,237,0.4);
  --btt-border-mid: rgba(255,255,255,0.12);
  --radius-xl: 9999px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --wide-width: 1280px;
}
