html, body {
  padding: 0;
  margin: 0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

h1 {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.detail_page_button {
  display: block;
  position: absolute;
  left: 50%;
  top: 55%;
  height: 2.5rem;
  padding-top: 0.5rem;
  width: 15rem;
  text-align: center;
  color: #fff;
  border: #fff solid 0.2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateX(-50%);
}

.detail_page_split.detail_page_left .detail_page_button:hover {
  background-color: var(--dark_crimson);
  border-color: var(--dark_crimson);
}

.detail_page_split.detail_page_right .detail_page_button:hover {
  background-color: var(--dim_gray);
  border-color: var(--dim_gray);
}

.detail_page_container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gray);
  z-index: 0;
}

#detail_page_front {
  z-index: 1;
}

.detail_page_split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.detail_page_left {
  left: 0;
  /*background-position: center center;*/
  /*background-repeat:no-repeat;*/
  /*background-size: cover;*/
  /*background-attachment: fixed;*/
 
}
/* Background container */
.detail_page_left_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 40% of screen width */
  height: 100%;
  background: linear-gradient(135deg, #5f0f40, #9a2ec9, #4361ee);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  color: #f8f8f8; /* off-white */
}

/* </> symbol */
.detail_page_symbol {
  font-size: 15vw; /* scales with screen */
  font-weight: 900;
  background: linear-gradient(90deg, #e1f3fc, #a6c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15; /* soft, blended */
  user-select: none;
}
/* Binary particle container */
.binary_particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Binary particle style */
.binary_particles p {
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  font-weight: bold;
  font-size: calc(10px + 0.4vw);
  animation: floatBit var(--dur) ease-in-out infinite;
  transform: translateY(0);
  user-select: none;
  font-family: monospace;
}

/* Floating animation */
@keyframes floatBit {
  0%   { transform: translateY(0) scale(1); opacity: 0.2; }
  50%  { transform: translateY(-20px) scale(1.3); opacity: 0.5; }
  100% { transform: translateY(0) scale(1); opacity: 0.2; }
}


.detail_page_split.detail_page_left:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--amethyst_purple);
}

.detail_page_split.detail_page_right {
  right: 0;
  background-size: cover;
}

.detail_page_background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail_page_split.detail_page_right:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--periwinkle_blue);
}

.detail_page_split.detail_page_left,
.detail_page_split.detail_page_right,
.detail_page_split.detail_page_right:before,
.detail_page_split.detail_page_left:before {
  transition: var(--anim_duration_slow) all ease-in-out;
}

.detail_page_hover-left .detail_page_left {
  width: var(--percent_75);
}

.detail_page_hover-left .detail_page_right {
  width: var(--percent_25);
}

.detail_page_hover-left .detail_page_right:before {
  z-index: 2;
}

.detail_page_hover-right .detail_page_right {
  width: var(--percent_75);
}

.detail_page_hover-right .detail_page_left {
  width: var(--percent_25);
}

.detail_page_hover-right .detail_page_left:before {
  z-index: 2;
}

@media(max-width: 800px) {
  h1 {
    font-size: 2rem;
  }

  .detail_page_button {
    width: 12rem;
  }
  .detail_page_container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .detail_page_split {
    width: 100%;
    height: 50%;
    position: relative;
  }

  .detail_page_hover-left .detail_page_left {
    height: 75%;
    width: 100%;
  }

  .detail_page_hover-left .detail_page_right {
    height: 25%;
    width: 100%;
  }

  .detail_page_hover-right .detail_page_right {
    height: 75%;
    width: 100%;
  }

  .detail_page_hover-right .detail_page_left {
    height: 25%;
    width: 100%;
  }

  .detail_page_split {
    transition: var(--anim_duration_slow) all ease-in-out;
  }
  
  .rotating-image-container #background1 {
  width: 90% !important;
  height: auto !important;
  top: 2% !important;
  left: -5% !important;

}
.rotating-image-container #background2 {
  width: 60% !important;
  height: auto !important;
  top: 60% !important;
  right: 56% !important;
}
.rotating-image-container #background3 {
  width: 50% !important;
  height: auto !important;
  top: 1% !important;
  right: 1% !important;
}
.rotating-image-container #background4 {
  width: 40% !important;
  height: auto !important;
  top: 50% !important;
  left: 65% !important;
}
#particleCanvas {
  width: 100% !important;
  height: auto !important;
}
}

@media(max-height: 700px) {
  .detail_page_button {
    top: 70%;
  }
}
#header-username{
  font-size: 25px;
  color: #fff;
  text-decoration: none;
 margin-right: 20px;
  font-family: verdana;
  font-weight: lighter;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-left: auto;
}


.rotating-image-container {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 40%, #FFAA33, #FF6700, #FF3D00, #a74300);
  position: absolute;
  overflow: hidden;
  
}

.container_glow {
  width: 100%;
  height: 100%;
  position: relative;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
}


@keyframes glowPulse {
  0% { opacity: 0.6; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.6; transform: scale(0.8); }
}
.rotating-image-container #background1 {
  width: 700px;
  height: auto;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;

}
.rotating-image-container #background2 {
  width: 500px;
  height: auto;
  top: 70%;
  right: 66%;
  border-radius: 50%;
  position: absolute;
  animation: rotateopp 20s linear infinite;

}
.rotating-image-container #background3 {
  width: 400px;
  height: auto;
  top: 7%;
  right: 1%;
  border-radius: 50%;
  position: absolute;
  animation: rotateopp 20s linear infinite;

}
.rotating-image-container #background4 {
  width: 700px;
  height: auto;
  top: 50%;
  left: 45%;
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;

}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateopp {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}