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

:root {
  --bg-dark: #0A0C10;
  --bg-card: #131722;
  --bg-card-hover: #1A1F30;
  --primary-glow: #FF0055; /* Hot Electric Pink */
  --secondary-glow: #00F0FF; /* Electric Cyan */
  --accent-emerald: #10B981;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --border-neon: rgba(255, 0, 85, 0.15);
  --border-cyan: rgba(0, 240, 255, 0.15);
  --border-default: #1E2638;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --glow-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
  --cyan-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-glow);
  box-shadow: var(--glow-shadow);
}

/* High-tech grid background overlay */
.vault-grid {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
}

.vault-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 85, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header & Navigation */
header {
  border-bottom: 1px solid var(--border-default);
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-light);
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.logo span {
  color: var(--primary-glow);
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: var(--font-display);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-light);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-glow);
  transition: var(--transition);
}

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

.cta-button {
  background: linear-gradient(135deg, var(--primary-glow), #FF00AA);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: var(--font-display);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
  border: 1px solid transparent;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
  background: transparent;
  color: var(--primary-glow);
  border-color: var(--primary-glow);
}

/* Live Ticker representing limited production drops */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #050608;
  border-bottom: 1px solid var(--border-default);
  white-space: nowrap;
  padding: 0.6rem 0;
}

.ticker {
  display: inline-block;
  animation: marquee 35s linear infinite;
  padding-left: 100%;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ticker-item span.green {
  color: var(--secondary-glow);
  font-weight: bold;
}

.ticker-item span.gold {
  color: var(--primary-glow);
  font-weight: bold;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Main Container */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 0;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.2));
}

.hero p {
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Search Bar Wrapper */
.search-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  padding: 0.5rem;
  border-radius: 14px;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.05), inset 0 1px 2px rgba(255,255,255,0.05);
}

.search-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.search-wrapper input::placeholder {
  color: #55657E;
}

.search-wrapper button {
  background: linear-gradient(135deg, var(--secondary-glow), #00A6FF);
  border: none;
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 0 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.search-wrapper button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Grid & Cards */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title span {
  color: var(--primary-glow);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  border: 1px solid var(--border-neon);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 2.25rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-glow);
  box-shadow: 0 12px 25px rgba(255, 0, 85, 0.1);
  background: var(--bg-card-hover);
}

.category-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 0, 85, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-neon);
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.category-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-default);
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* Showcase Grid for Custom Premium Cards */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.product-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.product-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-glow);
  box-shadow: 0 15px 30px rgba(255, 0, 85, 0.15);
}

.product-showcase-image-container {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background: #111420;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-showcase-image-container svg {
  transition: var(--transition);
}

.product-showcase-card:hover .product-showcase-image-container svg {
  transform: scale(1.05);
}

.product-showcase-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

/* Leaderboard/Product Table Styles */
.table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow-x: auto;
  margin-bottom: 5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  background: rgba(10, 12, 16, 0.8);
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-default);
  font-family: var(--font-mono);
}

td {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-default);
  font-size: 0.9rem;
  vertical-align: middle;
}

tr.vault-row {
  cursor: pointer;
  transition: var(--transition);
}

tr.vault-row:hover {
  background: var(--bg-card-hover);
}

tr:last-child td {
  border-bottom: none;
}

.asset-cell {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.asset-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #1C2030;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
}

.asset-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-light);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
}

.asset-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.badge-rarity {
  background: rgba(255, 0, 85, 0.08);
  color: var(--primary-glow);
  border: 1px solid rgba(255, 0, 85, 0.2);
}

.badge-verified {
  background: rgba(0, 240, 255, 0.08);
  color: var(--secondary-glow);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.trend-up {
  color: var(--accent-emerald);
  font-weight: bold;
}

/* Feature/Detail Page Elements */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.spotlight-card:hover {
  border-color: var(--secondary-glow);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.spotlight-img-wrap {
  position: relative;
  height: 280px;
  background: #121622;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.spotlight-content {
  padding: 2.25rem;
}

.spotlight-tag {
  color: var(--primary-glow);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: 0.05em;
}

/* Details Page (asset-profile.html) custom styling */
.profile-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.asset-gallery {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.main-asset-img {
  width: 100%;
  border-radius: 12px;
  height: auto;
  max-width: 500px;
}

.provenance-tree {
  margin-top: 2.5rem;
  border-left: 2px solid var(--border-default);
  padding-left: 2rem;
}

.provenance-node {
  position: relative;
  margin-bottom: 2.5rem;
}

.provenance-node::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 7px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-glow);
  box-shadow: 0 0 10px var(--primary-glow);
}

.provenance-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.provenance-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Side bar metrics box */
.metrics-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 2.25rem;
  height: fit-content;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 1rem;
}

.metric-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-light);
}

/* Interactive Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 2px solid var(--primary-glow);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--secondary-glow);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn.accept {
  background-color: var(--primary-glow);
  color: #fff;
}

.cookie-btn.accept:hover {
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.cookie-btn.necessary {
  background-color: transparent;
  border-color: var(--border-default);
  color: var(--text-light);
}

.cookie-btn.necessary:hover {
  border-color: var(--text-muted);
}

/* Footer Section */
footer {
  background: #060709;
  border-top: 1px solid var(--border-default);
  padding: 5rem 1.5rem 2.5rem;
  margin-top: 8rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-default);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
}

.legal-links a:hover {
  color: var(--text-light);
}

/* Interactive Case Customizer / Preview Elements */
.case-customizer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 5rem;
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.03);
}

@media (max-width: 768px) {
  .case-customizer-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

.customizer-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.customizer-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customizer-tag {
  background: rgba(0, 240, 255, 0.1);
  color: var(--secondary-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-light);
  font-family: var(--font-display);
}

.form-control {
  width: 100%;
  background: #181D2B;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.15);
  outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-glow), #FF00AA);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-default);
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Technical Article Layouts */
.article-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.article-body {
  line-height: 1.9;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.article-body h2 {
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  color: var(--secondary-glow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 3px solid var(--primary-glow);
  padding: 1rem 1.5rem;
  background: rgba(255, 0, 85, 0.03);
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  color: var(--text-light);
  font-style: italic;
}

.diagram-container {
  background: #0f121d;
  border: 1px solid var(--border-cyan);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diagram-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 1rem;
  text-align: center;
}

/* Custom Additions for Images */
.featured-image-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: var(--glow-shadow);
  margin: 2.5rem 0;
  position: relative;
}

.featured-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.featured-image-container:hover .featured-image {
  transform: scale(1.02);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--primary-glow);
  box-shadow: var(--glow-shadow);
  display: block;
  background: var(--bg-dark);
}

.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: var(--transition);
}

.spotlight-card:hover .spotlight-img-wrap img {
  transform: scale(1.03);
  opacity: 1;
}