:root {
  --brand-orange: #F4A85D;
}

/* Background canvas */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: black;
}

/* Glow text */
.glow-text {
  text-shadow: 0 0 10px rgba(244, 168, 93, 0.8), 0 0 20px rgba(244, 168, 93, 0.6);
}

/* Card style */
.card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(244, 168, 93, 0.3);
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(244, 168, 93, 0.1);
}

.card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 20px rgba(244, 168, 93, 0.3);
}

/* About section glass effect */
.about-section {
  background: rgba(20, 20, 20, 0.9);
  border-top: 1px solid rgba(244, 168, 93, 0.2);
  border-bottom: 1px solid rgba(244, 168, 93, 0.2);
}

/* Logo 3D animation */
.logo-3d {
  /*   can use for future   */
}
