body {
  background-color: #050505;
  color: #E5E4E2;
  overflow-x: hidden;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
}

#canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.glass-panel {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gold-gradient {
  background: linear-gradient(to right, #D4AF37, #F7E7CE, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.tech-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  width: 100%;
  opacity: 0.3;
  margin: 2rem 0;
}

.sc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.menu-link {
  display: block;
  padding: 14px 0;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E5E4E2;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-link:hover { color: #D4AF37; }

.gallery-tile {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 0.78;
  transition: opacity 250ms ease, transform 250ms ease, border-color 250ms ease;
}
.gallery-tile:hover {
  opacity: 1;
  transform: scale(1.01);
  border-color: rgba(212,175,55,0.40);
}

.press-img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.25rem;
  opacity: 0.92;
  transition: transform 300ms ease, opacity 300ms ease, border-color 300ms ease;
}
.press-img:hover {
  transform: scale(1.01);
  opacity: 1;
  border-color: rgba(212,175,55,0.45);
}

.stat-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 12px;
  text-align: center;
}
.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(229,228,226,0.70);
  font-family: Montserrat, sans-serif;
}
.stat-value {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: Montserrat, sans-serif;
}

.cta-primary, .cta-secondary { position: relative; z-index: 30; }
