/* Cyberpunk Theme Base */
body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

/* Import a cyberpunk-style font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Text Block Style */
.CustomText {
  color: #ffffff;
  background: linear-gradient(to right, rgba(255, 102, 0, 0.1), rgba(0, 204, 255, 0.1));
  border-left: 4px solid #ff6600;
  border-right: 4px solid #00ccff;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.4), 0 0 15px rgba(0, 204, 255, 0.2);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

.CustomText:hover {
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.6), 0 0 25px rgba(0, 204, 255, 0.4);
}

/* Highlight in custom colors */
.CustomText strong {
  color: #ff6600;
}

.CustomText em {
  color: #00ccff;
}
/* Harmonized halo background for #CustomLogo */
#CustomLogo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#CustomLogo img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  transition: transform 0.3s ease;
  background: radial-gradient(
    circle at center,
    rgba(255, 102, 0, 0.08) 0%,
    rgba(0, 204, 255, 0.04) 25%,
    rgba(0, 0, 0, 0.96) 80%
  );
}

#CustomLogo img:hover {
  transform: scale(1.03);
}

#cyberpunk-canvas{
   background-color: rgba(0, 0, 0, 0.96);
    
}



