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.6;
}

.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%; /* 16:9 */
  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);
}
