/* ============================================================
   VEGAS DECODED — Website Stylesheet
   Derived directly from Brand_Kit_V2_Vegas_Decoded.html
   ============================================================ */

:root {
  --gold: #F0B429;
  --gold-light: #FFD166;
  --gold-dark: #C8922A;
  --red: #FF3B5C;
  --green: #2ECC71;
  --bg: #080B14;
  --bg2: #0E1220;
  --bg3: #161B2E;
  --card: rgba(14, 18, 32, 0.92);
  --white: #FFFFFF;
  --muted: #8892A4;
  --border: rgba(240, 180, 41, 0.18);

  --maxw: 1200px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.mono {
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  background: var(--gold);
  color: #0A0A0A !important;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 24px; cursor: pointer; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 96px 0 84px;
  background: var(--bg2);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 78% 40%, rgba(240,180,41,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero background photo (home page). Drop your image at assets/img/hero.jpg.
   Gradients keep the left-aligned gold headline readable over any photo.
   If the image is missing, the dark --bg2 base still shows — no broken layout. */
.hero.has-hero-image {
  /* Height scales with viewport WIDTH so the crop ratio (how much of the
     photo shows) stays consistent on any monitor — prevents the "zoomed in
     on a wide screen" problem. Capped so it never dominates the page. */
  height: 46vw;
  min-height: 520px;
  max-height: 780px;
  display: flex;
  align-items: center;
  border-bottom: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(90deg, rgba(8,11,20,0.9) 0%, rgba(8,11,20,0.68) 42%, rgba(8,11,20,0.32) 74%, rgba(8,11,20,0.5) 100%),
    linear-gradient(180deg, rgba(8,11,20,0.18) 0%, rgba(8,11,20,0) 44%, rgba(8,11,20,0.5) 80%, rgba(8,11,20,0.9) 94%, rgba(8,11,20,1) 100%),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
}
@media (max-width: 760px) {
  .hero.has-hero-image {
    height: auto;
    min-height: 480px;
    max-height: none;
    background-position: center 52%;
    background-image:
      linear-gradient(180deg, rgba(8,11,20,0.68) 0%, rgba(8,11,20,0.5) 44%, rgba(8,11,20,0.85) 88%, rgba(8,11,20,1) 100%),
      url('../img/hero.jpg');
  }
}
.hero-inner { position: relative; max-width: 820px; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 104px);
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.hero h1 span { color: var(--gold); }
.hero p {
  margin-top: 18px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 620px;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--gold); color: #0A0A0A; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ── SECTION ── */
.section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.section-head .see-all {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-head .see-all:hover { color: var(--gold-light); }

/* ── VIDEO GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,180,41,0.4);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.8);
}
.card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg3);
  overflow: hidden;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,11,20,0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover .card-thumb .play { opacity: 1; }
.card-thumb .play svg {
  width: 58px; height: 58px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.card-foot {
  margin-top: auto;
  padding-top: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: flex; gap: 14px; align-items: center;
}

/* Location badge (from brand kit) */
.vd-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 4px 13px 2px;
  border-radius: 100px;
  align-self: flex-start;
}
.vd-badge .dot { width: 6px; height: 6px; background: #0A0A0A; border-radius: 50%; }

/* ── POST CARD ── */
.post-card { }
.post-card .card-body { gap: 12px; }
.post-card .card-title { font-size: 20px; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,0.10);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}
.read-time {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── EMPTY / LOADING STATES ── */
.state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── ARTICLE (single post) ── */
.article { padding: 56px 0 80px; }
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-header { margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.article-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin: 14px 0 16px;
}
.article-meta {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.article-body { font-size: 17px; line-height: 1.8; color: #E7EAF0; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 44px;
}
.article-body h3 {
  font-size: 20px; font-weight: 700; color: var(--white); margin-top: 32px;
}
.article-body a { color: var(--gold); border-bottom: 1px solid var(--border); }
.article-body a:hover { color: var(--gold-light); }
.article-body strong { color: var(--white); }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-top: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(240,180,41,0.06);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  color: var(--white);
  font-style: italic;
}
.article-body img { border-radius: 12px; margin: 28px 0; }
.article-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 32px 0;
}
.article-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Verdict + tip components carried from brand kit for use in posts */
.vd-verdict {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px 8px; border-radius: 12px;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.1em;
}
.vd-verdict.worth-it { background: rgba(46,204,113,0.15); border: 1.5px solid var(--green); color: var(--green); }
.vd-verdict.skip-it { background: rgba(255,59,92,0.15); border: 1.5px solid var(--red); color: var(--red); }
.vd-tip {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(240,180,41,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 18px; border-radius: 0 10px 10px 0;
}
.vd-tip-icon {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.15em;
  background: var(--gold); color: #0A0A0A; padding: 2px 8px; border-radius: 4px; flex-shrink: 0; margin-top: 2px;
}
.vd-tip-text { font-size: 14px; color: var(--white); line-height: 1.55; font-weight: 500; }

/* Stat blocks — for key data points inside posts */
.vd-stats-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.vd-stat-block {
  background: rgba(8,11,20,0.9); border: 1px solid rgba(240,180,41,0.3);
  border-radius: 14px; padding: 16px 20px; text-align: center; min-width: 120px; flex: 1;
}
.vd-stat-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gold);
  line-height: 1; letter-spacing: 0.03em;
}
.vd-stat-number .unit { font-size: 22px; vertical-align: super; }
.vd-stat-label {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.12em; margin-top: 6px;
}

/* Price rows — for menus / fees inside posts */
.vd-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.vd-item-label {
  background: rgba(8,11,20,0.88); border: 1px solid rgba(240,180,41,0.25);
  color: var(--white); font-size: 14px; font-weight: 500; padding: 8px 18px; border-radius: 100px;
}
.vd-price-badge {
  background: var(--gold); color: #0A0A0A; font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.05em; padding: 6px 16px 4px; border-radius: 100px; margin-left: auto;
}

/* Head-to-head comparison rows — for posts */
.vd-compare {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vd-compare:last-child { border-bottom: none; }
.vd-compare-label { flex: 1; font-size: 14px; font-weight: 500; color: var(--white); }
.vd-compare-a, .vd-compare-b {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.05em;
  min-width: 70px; text-align: center; padding: 4px 12px 2px; border-radius: 6px;
}
.vd-compare-a { background: rgba(255,59,92,0.15); color: var(--red); }
.vd-compare-b { background: rgba(46,204,113,0.15); color: var(--green); }
.vd-compare-vs {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.1em;
}

/* TL;DR / Quick Answer box — top of long posts */
.tldr-box {
  background: rgba(240,180,41,0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.tldr-label {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.tldr-box ul { margin: 0; padding-left: 20px; }
.tldr-box li { margin-top: 8px; color: #E7EAF0; font-size: 15px; }

/* FAQ section — for SEO + skimmers */
.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
}
.faq-q { font-weight: 700; color: var(--white); font-size: 16px; margin-bottom: 6px; }
.faq-a { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 0 40px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.footer-brand .brand { font-size: 34px; margin-bottom: 8px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--maxw); margin: 36px auto 0; padding: 22px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--muted);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeUp 0.5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 63px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; width: 100%; font-size: 16px; }
  .nav-links .nav-cta { margin-top: 8px; }
  .nav-toggle { display: block; }
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 34px; }
  .footer-inner { flex-direction: column; }
}
