@import url(https://fonts.googleapis.com/css2?family=Poppins%3Awght%40100%3B200%3B300%3B400%3B500%3B600&display=swap%27%29%3B);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
   cursor: none;
   user-select: none;
}

.cursor-plus {
    position: fixed;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
    transition: transform 0.05s ease-out;
    text-shadow: 0.8px 0.8px 1px rgba(0, 0, 0, 0.5);
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    perspective: 600px;
}

.background {
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('truejeff.png') center center / cover no-repeat;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('truejeff.png') center center / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.05); 
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 00px;
}


@media (min-width: 501px) and (max-width: 768px){
}

@media (min-width: 1025px) {
  h1{
    font-size: 160px;
  }
}

@media (max-width: 500px){
  h1{
    display: flex;
    position: relative;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: clamp(2.8rem, 6vw, 4rem);
    margin: 10rem;
  }
}

@media (min-width: 1026px){
  h1{
    font-size: 60px;
  }
}

@media (min-width: 360px){
  h1{
    font-size: 40px;
  }
}

@media (min-width: 492px){
  .image-container img{
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 375px){
  .image-container img{
    width: 60px;
    height: 60px;
    position: relative;
  }
}

@media (max-width: 384px){
  .image-container img{
    height: 30px;
    width: 30px;
  }
}

@media (max-width: 384px){
  .image-container{
    height: 30px;
    width: 300px;
  }
}

@media (min-width: 375px){
  .background{
    object-fit: cover;
  }
}


.name-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 10, 0.6);
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: clamp(10px, 4vw, 30px) clamp(30px, 6vw, 80px);
  display: flex;
  gap: clamp(90px, 5vw, 60px);
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 90vw;
  opacity: 0;
  transition: opacity 1s ease;
}

.name-box.show {
  opacity: 1;
}

.name {
  color: white;
  font-size: clamp(0.2rem, 3vw, 1.5rem);
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.name:hover {
  transform: scale(1.1);
  color: #999999;
  text-shadow: 0 0 8px rgba(95, 95, 95, 0.8);
  cursor: none;
}

@media (max-width: 600px) {
  .name-box {
    flex-direction: column;
  }
}

.name {
  display: flex;
  flex-direction: column; 
  align-items: center;  
  justify-content: center;
  color: white;
  font-size: clamp(0.8rem, 3vw, 1.5rem);
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  text-align: center;
}


.name-box img {
  width: 3rem;
  height: 3rem;
  display: block; 
  margin: 5px 0;
  cursor: none;
}


.volume-container {
  position: fixed;
  top: calc(50% + 8rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.6);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  cursor: none;
}

.volume-container.show {
  opacity: 1;
}

.volume-label {
  color: white;
  font-size: 0.75rem;
}

#volumeSlider {
  width: 150px;
  cursor: none;
}

h5{
  font-size: 12px;
}

h4{
  font-size: 23px;
}

@media (max-width: 600px) {
  .volume-container {
    top: calc(74% + 4rem);
    padding: 5px 10px;
    gap: 5px;
  }

  #volumeSlider {
    width: 100px;
  }

  .volume-label {
    font-size: 0.5rem;
  }
}
