@font-face {
    font-family: "Morin";
    src: url(https://file.garden/aBMHISKj5T3zDZol/Fonts/YoungMorin-Regular.ttf);
}

@font-face {
    font-family: "Pinyon";
    src: url(https://file.garden/aBMHISKj5T3zDZol/Fonts/PinyonScript-Regular.ttf);
}


::selection {
    color: paleturquoise;
    background:transparent;
    text-decoration: underline;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace; /* or whatever fits your aesthetic */
  height: 100%;
  overflow: auto; 
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* fallback color while video loads */
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3); /* moody semi-transparent dark veil */
  z-index: 0;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.bg-audio {
  display: none;
}
.content {
  position: relative;
  z-index: 1;
}

header h1 {
  font-family: "Morin";
  font-weight: normal;
  font-size: 70px;
  text-align: center;
  background: url(https://file.garden/aBMHISKj5T3zDZol/Bg%20img/8484d81467076530cd283d7148b38a4a.jpg);
  background-size: 20px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(1px 1px 0 #000) drop-shadow(-.2px 1px 0 #000) drop-shadow(1px -.2px 0 #000) drop-shadow(-.2px -.2px 0 #000);
}

h2{
  font-family: "Pinyon";
  font-weight: normal;
  font-size: 40px;
  margin: auto;
  transform: translate(600px, -105px);
  background: url(https://file.garden/aBMHISKj5T3zDZol/Bg%20img/cc21ce5e.gif);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(1px 1px 0 #000) drop-shadow(-.2px 1px 0 #000) drop-shadow(1px -.2px 0 #000) drop-shadow(-.2px -.2px 0 #000);
}

h3 {
  color: #fff;
  font-family: times;
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  margin: auto;
  transform: translate(-100px, 15px);    
  filter: drop-shadow(1px 1px 0 #000) drop-shadow(-.2px 1px 0 #000) drop-shadow(1px -.2px 0 #000) drop-shadow(-.2px -.2px 0 #000);
}

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px; 
      width: 800px;
      margin: 5px;
      background-clip: padding-box;
      padding: 13px;
      filter: drop-shadow(0 0 3px rgb(0 0 0/50%));
    }

    .gallery > div {
      width: 200px;
      height: 150px;
      margin-right: 10px;
      margin-bottom: 10px;
      position: relative;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      cursor: pointer;
      z-index: 1;
      filter: drop-shadow(0 0 12px #a0d8ef); /* soft blue glow */
      transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.08) rotate(-1.5deg);
  filter:
    brightness(1.3)
    drop-shadow(0 0 15px #72e0ff)   /* aqua pop */
    drop-shadow(0 0 20px #00cfff)   /* deeper cyan vibe */
    drop-shadow(0 0 20px #0096c7);  /* ocean-core moment */;
}

    audio {
      display: none;
    }

.hanger {
  position: absolute;
  z-index: 7;
  width: 190px;
  height: 190px;
  transform: translate(-610px, -445px);
  pointer-events: auto;
  filter: drop-shadow(0px 0px 6px #000000);
}

.hanger a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.hanger img {
  width: 100%;
  height: 100%;
  display: block;
}

.hover-link-text {
  display: none;
  position: absolute;
  background: radial-gradient(ellipse at center, #ebebff, #99f);
  border-radius: 50%;
  box-shadow: 0 0 20px #99f, 0 0 40px #ccf, 0 0 60px #ddf;
  color: black;
  font-family: "Morin";
  font-size: 1.1rem;
  opacity: 85%;
  padding: 1vw;
  top: 5vw;
  left: 4vw;
}


.hanger:hover .hover-link-text {
  display: block;
}

    /* Scrollbar Styles */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background-image: url('https://file.garden/aA-GqMXzgguGJDg8/shells/sand');
  background-repeat: repeat;
  background-size: cover; /* Optional: covers the whole track */
}


/* Thumb */
::-webkit-scrollbar-thumb {
  background-image:url('https://file.garden/aBMHISKj5T3zDZol/Bg%20img/rocky');
  background-size:120px;
}

/* Thumb Hover */
::-webkit-scrollbar-thumb:hover {
  filter:brightness(1.5);
}

/* Thumb Active (when clicking) */
::-webkit-scrollbar-thumb:active {
  filter:brightness(1.5);
}

/* Buttons (optional, if you want up/down buttons styled too) */
::-webkit-scrollbar-button {
  display: none; /* Hide if you want cleaner look */
}