:root {
  --detail_page_container-bg-color: #333;
  --detail_page_left-bg-color: rgba(139, 67, 183, 0.5);
  --detail_page_left-button-hover-color: rgba(161, 11, 11, 0.3);
  --detail_page_right-bg-color: rgba(124, 148, 239, 0.5);
  --detail_page_right-button-hover-color: rgba(92, 92, 92, 0.3);
  --detail_page_hover-width: 75%;
  --detail_page_other-width: 25%;
  --detail_page_speed: 1000ms;
}

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(--detail_page_left-button-hover-color);
  border-color: var(--detail_page_left-button-hover-color);
}

.detail_page_split.detail_page_right .detail_page_button:hover {
  background-color: var(--detail_page_right-button-hover-color);
  border-color: var(--detail_page_right-button-hover-color);
}

.detail_page_container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--detail_page_container-bg-color);
  z-index: 0;
}

#detail_page_front {
  z-index: 1;
}

.detail_page_split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.detail_page_split.detail_page_left {
  left: 0;
  background: url('../media/images/left-background.png') center center no-repeat;
  background-size: cover;
}

.detail_page_split.detail_page_left:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--detail_page_left-bg-color);
}

.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(--detail_page_right-bg-color);
}

.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(--detail_page_speed) all ease-in-out;
}

.detail_page_hover-left .detail_page_left {
  width: var(--detail_page_hover-width);
}

.detail_page_hover-left .detail_page_right {
  width: var(--detail_page_other-width);
}

.detail_page_hover-left .detail_page_right:before {
  z-index: 2;
}

.detail_page_hover-right .detail_page_right {
  width: var(--detail_page_hover-width);
}

.detail_page_hover-right .detail_page_left {
  width: var(--detail_page_other-width);
}

.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(--detail_page_speed) 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);
  }
}