/* FOTC - Focus on the Caribbean | Main Stylesheet */
/* Guyana Flag Colors: Green #009E60, Gold #FCD116, Black #000, Red #CE1126, White #FFF */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --green: #009E60;
  --green-dark: #007845;
  --green-light: #e6f7ee;
  --gold: #FCD116;
  --gold-dark: #c9a500;
  --red: #CE1126;
  --red-light: #fce8ea;
  --black: #0f1a0f;
  --white: #ffffff;
  --gray-50: #f8f9f8;
  --gray-100: #eef0ee;
  --gray-200: #d8ddd8;
  --gray-400: #9aa49a;
  --gray-600: #5a6a5a;
  --gray-800: #2a3a2a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --nav-h: 68px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--gray-50);
  font-size: 16px;
  line-height: 1.65;
}

/* ─── PAGE MANAGEMENT ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 24px;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green) 50%, var(--gold) 50%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  color: var(--gray-200);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(252,209,22,0.10);
}

.nav-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-nav {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

.btn-nav-outline {
  border-color: var(--gray-400);
  color: var(--gray-200);
  background: transparent;
}

.btn-nav-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(252,209,22,0.08); }

.btn-nav-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-nav-gold:hover { background: var(--gold-dark); }

/* ─── FLAG STRIPE ─── */
.flag-stripe {
  height: 5px;
  background: linear-gradient(to right,
    var(--green) 0%, var(--green) 25%,
    var(--gold) 25%, var(--gold) 50%,
    var(--black) 50%, var(--black) 55%,
    var(--red) 55%, var(--red) 75%,
    var(--white) 75%, var(--white) 100%);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--black) 0%, #1a2e1a 60%, var(--green-dark) 100%);
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252,209,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--gold), var(--red));
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-region-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-region-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.hero-region-card:hover {
  background: rgba(252,209,22,0.1);
  border-color: rgba(252,209,22,0.4);
  transform: translateY(-2px);
}

.hero-region-card .flag-emoji { font-size: 28px; margin-bottom: 8px; display: block; }
.hero-region-card .region-name { font-size: 14px; font-weight: 600; color: var(--white); }
.hero-region-card .region-sub { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ─── BREAKING TICKER ─── */
.ticker-bar {
  background: var(--red);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  background: var(--black);
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.ticker-track {
  display: flex;
  animation: ticker 45s linear infinite;
  gap: 48px;
}

.ticker-track span { font-size: 13px; white-space: nowrap; }
.ticker-track span::before { content: '●'; margin-right: 12px; font-size: 8px; opacity: 0.6; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION COMMON ─── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.2;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.see-all:hover { border-bottom-color: var(--green); }

/* ─── NEWS GRID ─── */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.news-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.news-featured-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 60px;
}

.news-featured-body { padding: 24px; }

.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-gold { background: #fdf6d8; color: var(--gold-dark); }
.tag-red { background: var(--red-light); color: var(--red); }
.tag-blue { background: #e8f0fe; color: #1a56db; }

.news-featured-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.news-meta {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-sidebar { display: flex; flex-direction: column; gap: 14px; }

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.news-card-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.news-card-body .news-meta { font-size: 11px; }

/* ─── EVENTS ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.event-card-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.event-card-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.event-card-date-badge .day {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.event-card-date-badge .month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.event-card-body { padding: 16px 18px; }
.event-card-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.event-card-body p { font-size: 13px; color: var(--gray-600); }

/* ─── VIDEOS ─── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.video-thumb {
  height: 180px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.play-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(252,209,22,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.play-btn svg { width: 20px; height: 20px; fill: var(--black); margin-left: 3px; }

.video-card:hover .play-btn { transform: scale(1.1); background: var(--gold); }

.video-body { padding: 14px 16px; }
.video-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.35; }
.video-body p { font-size: 12px; color: var(--gray-400); }

/* ─── TOURISM ─── */
.tourism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.tourism-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tourism-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.tourism-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.tourism-card-body {
  background: var(--white);
  padding: 14px 16px;
}

.tourism-card-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.tourism-card-body p { font-size: 13px; color: var(--gray-600); }

.tourism-region-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ─── REGIONS MAP SECTION ─── */
.regions-section {
  background: var(--green-dark);
  padding: 64px 24px;
  color: var(--white);
}

.regions-inner { max-width: 1280px; margin: 0 auto; }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.region-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  color: var(--white);
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.region-btn:hover, .region-btn.selected {
  background: rgba(252,209,22,0.15);
  border-color: rgba(252,209,22,0.5);
  transform: translateY(-2px);
}

.region-btn .region-num {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.region-btn .region-title {
  font-size: 14px;
  font-weight: 600;
}

/* ─── SPORTS PAGE ─── */
.sports-hero {
  background: linear-gradient(135deg, #0f1a0f 0%, #1a0505 100%);
  padding: 56px 24px;
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}

.sports-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sports-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all 0.2s;
  font-family: var(--font-body);
}

.sports-tab.active, .sports-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

.score-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.score-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.score-sport-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.score-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.score-team-flag { font-size: 36px; }

.score-team-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}

.score-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score-numbers {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
}

.score-status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}

.status-live { background: var(--red-light); color: var(--red); }
.status-final { background: var(--gray-100); color: var(--gray-600); }
.status-upcoming { background: #e8f0fe; color: #1a56db; }

/* ─── MARKETPLACE ─── */
.marketplace-bar {
  background: var(--white);
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.search-bar {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 10px 16px;
}

.search-bar input {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  color: var(--gray-800);
}

.search-bar svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gray-400); }

.filter-select {
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  padding: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-100);
}

.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.listing-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.listing-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.listing-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  border: none;
}

.listing-body { padding: 12px 14px; }
.listing-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.listing-title { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.listing-loc { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }

.sell-btn-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}

.sell-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,158,96,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.sell-btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,158,96,0.5); }

/* ─── DATING ─── */
.dating-hero {
  background: linear-gradient(160deg, #1a0220 0%, #2d0a40 50%, #1a0220 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dating-hero::before {
  content: '💕';
  font-size: 200px;
  position: absolute;
  top: -20px;
  right: -30px;
  opacity: 0.07;
}

.dating-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.dating-hero h1 em { color: #ff6b9d; font-style: italic; }

.dating-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 36px; }

.profile-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.profile-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 180px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.profile-card:hover {
  background: rgba(255,107,157,0.15);
  border-color: rgba(255,107,157,0.4);
  transform: translateY(-4px);
}

.profile-avatar { font-size: 48px; margin-bottom: 10px; }
.profile-name { font-size: 15px; font-weight: 600; color: var(--white); }
.profile-info { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.dating-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 48px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.dating-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.dating-feature .icon { font-size: 36px; margin-bottom: 12px; }
.dating-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.dating-feature p { font-size: 14px; color: var(--gray-600); }

/* ─── COMING SOON REGIONS ─── */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 48px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.coming-soon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0.85;
  position: relative;
}

.coming-soon-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.coming-soon-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--black);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.coming-soon-body { padding: 18px 20px; }
.coming-soon-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.coming-soon-body p { font-size: 14px; color: var(--gray-600); }

.notify-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.notify-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
}

.notify-input:focus { border-color: var(--green); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 280px; margin: 12px 0; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; }

.footer-flag-stripe {
  height: 3px;
  background: linear-gradient(to right, var(--green) 20%, var(--gold) 20%, var(--gold) 40%, var(--black) 40%, var(--black) 50%, var(--red) 50%, var(--red) 70%, var(--white) 70%);
  margin-bottom: 0;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 { font-family: var(--font-display); font-size: 20px; }
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-family: var(--font-body);
}

.modal-body { padding: 24px; }

/* ─── POST LISTING FORM ─── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s;
}

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

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

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.blog-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.blog-card-body .author { font-size: 13px; color: var(--gray-400); margin-top: 12px; display: flex; align-items: center; gap: 6px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-region-cards { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 48px 16px 40px; }
  .hero-region-cards { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .marketplace-bar { padding: 12px 16px; }
}

/* ─── UTILITY ─── */
.bg-light { background: var(--gray-50); }
.bg-green-light { background: var(--green-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-6 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ─── GUYANA REGION CARDS ─── */
.gr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gr-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.gr-card-header {
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gr-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.gr-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.gr-capital {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.gr-body { padding: 18px 20px 20px; }

.gr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.gr-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.gr-tag-green { background: var(--green-light); color: var(--green-dark); }
.gr-tag-gold { background: #fdf6d8; color: var(--gold-dark); }
.gr-tag-blue { background: #e8f0fe; color: #1a56db; }
.gr-tag-red { background: var(--red-light); color: var(--red); }

.gr-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}

.gr-current {
  background: var(--gray-50);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
}

.gr-current-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.gr-current p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── CARICOM SECTION ─── */
.caricom-member {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.caricom-member-gy {
  background: rgba(252,209,22,0.15);
  color: var(--gold);
  font-weight: 600;
}

.caricom-news-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: background 0.2s;
}

.caricom-news-card:hover { background: rgba(255,255,255,0.08); }

.caricom-news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.caricom-news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.caricom-news-body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 10px;
}

.caricom-news-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ─── CARICOM COUNTRY CARDS ─── */
.caricom-country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s, transform 0.2s;
}

.caricom-country-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.ccc-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ccc-coming {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.ccc-body { padding: 18px 20px 20px; }

.ccc-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.ccc-capital {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.ccc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.ccc-tag {
  font-size: 11px;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.ccc-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ccc-notify {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ccc-notify .notify-input { flex: 1; font-size: 13px; }

/* ══════════════════════════════════════════
   NEW HERO V2 — Cinematic
══════════════════════════════════════════ */
.hero-v2 {
  min-height: 92vh;
  background: linear-gradient(135deg, #020d02 0%, #041a08 40%, #060f18 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animated glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,158,96,0.25) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(252,209,22,0.15) 0%, transparent 70%);
  top: 50px; right: -80px;
  animation-delay: 2s;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(206,17,38,0.12) 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: 4s;
}

@keyframes orb-float {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(-40px) scale(1.08); }
}

.hero-flag-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--green) 0%, var(--green) 25%,
    var(--gold) 25%, var(--gold) 50%,
    var(--black) 50%, var(--black) 55%,
    var(--red) 55%, var(--red) 75%,
    rgba(255,255,255,0.3) 75%);
}

.hero-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(252,209,22,0.08);
  border: 1px solid rgba(252,209,22,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
}

.hero-live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-v2-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4a 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-v2-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-v2-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(252,209,22,0.35);
}
.hero-btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(252,209,22,0.5);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
}

/* Hero island dropdown */
.hero-island-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0d1f0d;
  border: 1px solid rgba(252,209,22,0.25);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 260px;
  z-index: 500;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  max-height: 400px;
  overflow-y: auto;
}
.hero-island-dropdown.open { display: block; }
.hero-island-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}
.hero-island-dropdown a:hover { background: rgba(252,209,22,0.1); color: var(--white); }
.hero-island-dropdown a span:first-child { font-size: 20px; }
.hid-live {
  font-size: 10px;
  font-weight: 700;
  background: rgba(206,17,38,0.2);
  color: #ff6b6b;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: auto;
}

/* Stats row */
.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 0;
}
.hvs-item { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hvs-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.hvs-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hvs-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Showcase cards */
.hero-v2-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hsc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(255,255,255,0.08);
}
.hsc-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.hsc-card-main { height: 200px; }
.hsc-card-sm { height: 110px; }

.hsc-card-bg {
  position: absolute;
  inset: 0;
}

.hsc-card-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.hsc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(206,17,38,0.25);
  color: #ff8080;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.hsc-card-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.hsc-card-sm .hsc-card-content h3 { font-size: 15px; }

.hsc-card-content p { font-size: 13px; color: rgba(255,255,255,0.65); }

.hsc-arrow {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s;
}
.hsc-card:hover .hsc-arrow { transform: translateX(4px); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-arrow {
  animation: bounce-down 2s ease-in-out infinite;
  font-size: 18px;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════════════
   FEATURE STRIP
══════════════════════════════════════════ */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.fs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
  flex: 1;
  justify-content: center;
}
.fs-item:hover { background: var(--gray-50); }
.fs-icon { font-size: 24px; flex-shrink: 0; }
.fs-item div { display: flex; flex-direction: column; }
.fs-item strong { font-size: 13px; font-weight: 700; color: var(--gray-800); line-height: 1.2; }
.fs-item span { font-size: 11px; color: var(--gray-400); }
.fs-divider { width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0; }

/* ══════════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════════ */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0d1a0d;
  border: 1px solid rgba(252,209,22,0.2);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 300px;
  max-width: 340px;
  z-index: 2000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  max-height: 480px;
  overflow-y: auto;
}

.nav-dropdown-wrap.open .nav-dropdown,
.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-section { margin-bottom: 6px; }

.nav-dropdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 6px 10px 4px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: rgba(252,209,22,0.1); color: var(--white); }

.nav-dropdown-live {
  background: rgba(0,158,96,0.12);
  border: 1px solid rgba(0,158,96,0.2);
  margin-bottom: 4px;
}

.ndi-flag { font-size: 22px; flex-shrink: 0; }
.ndi-name { font-size: 13px; font-weight: 600; line-height: 1.2; }
.ndi-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.ndi-badge { margin-left: auto; font-size: 10px; color: var(--green); font-weight: 700; }

/* ══════════════════════════════════════════
   CONTACT CTA STRIP
══════════════════════════════════════════ */
.contact-cta-strip {
  background: linear-gradient(135deg, #0f1a0f 0%, #1a0a2e 100%);
  padding: 48px 24px;
  border-top: 3px solid var(--gold);
}

.contact-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 6px;
}

.contact-cta-text p { font-size: 15px; color: rgba(255,255,255,0.6); }

.contact-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px 40px; }
  .hero-v2-showcase { display: none; }
  .hero-v2 { min-height: auto; padding-bottom: 32px; }
  .feature-strip-inner { gap: 8px; }
  .fs-item span { display: none; }
}

@media (max-width: 640px) {
  .hero-v2-title { font-size: 38px; }
  .hvs-item { padding: 0 10px; }
  .hvs-num { font-size: 20px; }
  .nav-dropdown { max-height: 360px; left: -20px; }
  .feature-strip { overflow-x: auto; }
  .feature-strip-inner { flex-wrap: nowrap; min-width: max-content; }
  .contact-cta-inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   LIVE RSS NEWS STYLES
══════════════════════════════════════════ */

/* Source filter tabs */
.rss-source-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.rss-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all 0.2s;
}

.rss-tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.rss-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.rss-live-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.rss-live-badge.error { color: var(--red); }
.rss-live-badge.loaded { color: var(--green); }

/* Live news grid */
.live-news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  min-height: 320px;
}

/* Skeleton loaders */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.news-skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-lg);
}

.news-skeleton-featured {
  height: 380px;
  border-radius: var(--radius-lg);
}

.news-skeleton-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-skeleton-sidebar .news-skeleton {
  height: 82px;
  border-radius: var(--radius);
}

/* Live article card — featured */
.live-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-100);
}

.live-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.live-featured-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.live-featured-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.live-featured-body { padding: 20px 22px; }

.live-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.live-featured-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--gray-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-featured-body .live-summary {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-featured-body .news-meta { font-size: 12px; color: var(--gray-400); }

/* Live article card — sidebar */
.live-sidebar { display: flex; flex-direction: column; gap: 14px; }

.live-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-100);
}

.live-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.live-card-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

.live-card-img-placeholder {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.live-card-body h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-800);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-card-body .live-card-meta {
  font-size: 11px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* RSS error state */
.rss-error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-400);
}

.rss-error-state p { font-size: 15px; margin-bottom: 12px; }

@media (max-width: 700px) {
  .live-news-grid { grid-template-columns: 1fr; }
  .news-skeleton-featured { height: 220px; }
}

/* ── RSS image placeholder fix ── */
.live-featured-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
  position: relative;
}

.live-featured-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-card-img-placeholder {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
  position: relative;
}

.live-card-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
