@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Luxury Black & Gold Color System */
  --bg-primary: hsl(0, 0%, 2%);      /* Elegant Deep Charcoal-Black */
  --bg-secondary: hsl(0, 0%, 0%);    /* Absolute Pure Black */
  --bg-tertiary: hsl(0, 0%, 6%);     /* Carbon Graphite */
  --bg-light: hsl(0, 0%, 10%);       /* Sleek Card Background */
  
  --text-primary: hsl(45, 15%, 96%);  /* Warm Off-White */
  --text-secondary: hsl(45, 8%, 78%); /* Elegant Muted Gray-Gold */
  --text-muted: hsl(45, 5%, 52%);
  
  --accent-gold: hsl(45, 100%, 58%);   /* Brilliant Luminous Gold */
  --accent-gold-rgb: 255, 187, 41;
  --accent-gold-dark: hsl(45, 100%, 42%);
  --accent-gold-light: rgba(255, 187, 41, 0.18);
  
  --glass-bg: rgba(6, 6, 6, 0.85);
  --glass-border: rgba(255, 187, 41, 0.08);
  --glass-border-hover: rgba(255, 187, 41, 0.45);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Design Tokens */
  --border-width: 1px;               /* Ultra-delicate borders */
  --header-height: 64px;
  --max-width: 1200px;
  
  /* Sleek Rounded Cuts (High-end luxury feel) */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Smooth Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Background Ambient Glows (Luxury Gold Shimmer) */
.ambient-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.glow-top-left {
  top: -10%;
  left: -5%;
}

.glow-bottom-right {
  bottom: -10%;
  right: -5%;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Typography (Sleek Premium Editorial) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-top: 0.5rem;
}

.text-center {
  text-align: center;
}

.text-center h2::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.98rem;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Sleek Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: var(--border-width) solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-secondary);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(var(--accent-gold-rgb), 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-gold-rgb), 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  background-color: rgba(218, 175, 48, 0.05);
  box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.08);
}

/* Header & Sleek Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: var(--border-width) solid transparent;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: var(--border-width) solid var(--glass-border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-gold);
}

.logo-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--bg-secondary);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
}

/* Sleek Hero Section */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 24px 40px;
  z-index: 1;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tagline {
  color: var(--accent-gold);
  background-color: var(--accent-gold-light);
  border: var(--border-width) solid rgba(218, 175, 48, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 4px 14px;
  border-radius: 20px;
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.05;
}

.hero-title span {
  color: var(--accent-gold);
  display: inline-block;
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  font-weight: 300;
}

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

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 440px;
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 1px var(--accent-gold-light);
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(218, 175, 48, 0.3);
}

/* Premium Card Layouts (Sleek Glassmorphism) */
.section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
  border-top: var(--border-width) solid var(--glass-border);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  max-width: 700px;
  margin-bottom: 35px;
}

.section-subtitle {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  display: block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background-color: var(--glass-bg);
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
}

.card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 25px rgba(218, 175, 48, 0.06);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  color: var(--accent-gold);
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* Luxury Sponsored Banner (Sleek Frame) */
.sponsor-banner {
  background-color: var(--glass-bg);
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px; /* Increased top-bottom spacing */
  margin-top: 60px; /* Spacing out spotlight section */
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px; /* Increased gap */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sponsor-content {
  flex: 1.1;
  max-width: 55%;
  z-index: 2;
}

.sponsor-image-wrapper {
  flex: 0.9;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: var(--border-width) solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.sponsor-img:hover {
  transform: scale(1.02);
  border-color: var(--glass-border-hover);
}

/* Moving Glowing Border Outlines for Every Flake Counts Elements */
@keyframes moving-glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulsating-glow-shadow {
  0% {
    box-shadow: 0 10px 40px rgba(218, 175, 48, 0.08);
  }
  50% {
    box-shadow: 0 10px 50px rgba(218, 175, 48, 0.22);
  }
  100% {
    box-shadow: 0 10px 40px rgba(218, 175, 48, 0.08);
  }
}

.moving-glow-border,
.in-content-promo {
  position: relative;
  border: var(--border-width) solid transparent !important;
  animation: pulsating-glow-shadow 4s ease-in-out infinite;
}

.moving-glow-border::before,
.in-content-promo::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, 
    rgba(218, 175, 48, 0.1) 0%, 
    rgba(218, 175, 48, 0.8) 25%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(218, 175, 48, 0.8) 75%, 
    rgba(218, 175, 48, 0.1) 100%
  );
  background-size: 200% auto;
  border-radius: inherit;
  z-index: 1;
  animation: moving-glow 4s linear infinite;
  pointer-events: none;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
}

.in-content-promo > * {
  position: relative;
  z-index: 2;
}

.sponsor-badge {
  color: var(--bg-secondary);
  background-color: var(--accent-gold);
  padding: 2px 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-block;
  border-radius: 2px;
}

.sponsor-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.sponsor-desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
}

.sponsor-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 10px;
}

/* Sleek Blog Hub Grid */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.search-input-wrapper {
  flex-grow: 1;
  min-width: 240px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background-color: var(--bg-tertiary);
  border: var(--border-width) solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: rgba(218, 175, 48, 0.4);
  box-shadow: 0 4px 15px rgba(218, 175, 48, 0.05);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.filter-btn {
  padding: 8px 16px;
  background-color: var(--bg-tertiary);
  border: var(--border-width) solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-secondary);
  box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.15);
}

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

.blog-card {
  background-color: var(--glass-bg);
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 1px var(--accent-gold-light);
}

.blog-card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: var(--bg-secondary);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-gold);
  color: var(--bg-secondary);
  padding: 2px 8px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.25;
}

.blog-card-title a:hover {
  color: var(--accent-gold);
}

.blog-card-desc {
  font-size: 0.9rem;
  margin-bottom: 14px;
  flex-grow: 1;
  line-height: 1.4;
  color: var(--text-secondary);
  font-weight: 300;
}

.blog-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card-link:hover {
  color: var(--text-primary);
}

/* Sleek Article Page Elements */
.article-header {
  padding: 100px 24px 30px;
  text-align: center;
}

.article-category {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: inline-block;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 2px;
}

.article-title {
  max-width: 800px;
  margin: 0 auto 0.75rem;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 900;
}

.article-meta {
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.article-hero-wrapper {
  max-width: 900px;
  margin: 0 auto 35px;
  padding: 0 24px;
}

.article-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.article-content {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 2.25rem 0 1rem;
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-primary);
}

.article-content ul, 
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border: var(--border-width) solid var(--glass-border);
  background-color: var(--bg-tertiary);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 400;
}

/* Premium In-Content Promo Card (Sleek Frame) */
.in-content-promo {
  border: var(--border-width) solid var(--glass-border);
  border-radius: var(--radius-md);
  background-color: var(--bg-tertiary);
  padding: 20px;
  margin: 2.25rem 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  transition: var(--transition-smooth);
}

.in-content-promo:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 25px rgba(218, 175, 48, 0.05);
}

.promo-thumbnail-wrapper {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--glass-border);
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.promo-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.promo-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px !important;
  font-weight: 300;
}

.promo-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.promo-btn:hover {
  color: var(--text-primary);
}

.sponsored-disclaimer {
  font-size: 0.68rem !important;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 6px;
  margin-top: 6px;
  line-height: 1.2;
}

/* Compact Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: var(--border-width) solid var(--glass-border);
  padding: 40px 24px 20px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin-bottom: 1rem;
  max-width: 300px;
  font-size: 0.88rem;
  font-weight: 300;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .sponsor-banner {
    flex-direction: column;
    padding: 40px 30px;
    align-items: stretch;
    gap: 30px;
  }
  
  .sponsor-content {
    max-width: 100%;
  }
  
  .sponsor-image-wrapper {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: var(--border-width) solid var(--glass-border);
    z-index: 100;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .in-content-promo {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px;
  }
  
  .promo-thumbnail-wrapper {
    margin: 0 auto;
  }
}
