#intro-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: url('../img/my/background.jpg') no-repeat center center/cover;
}

/* 2. MUM YAPISI */
#candle-container {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#candle-wick {
  width: 4px;
  height: 15px;
  background: #444;
  position: relative;
}

#candle-body {
  width: 25px;
  height: 60px;
  background: #ddd;
  border-radius: 4px;
}

.flame {
  width: 25px;
  height: 40px;
  background: var(--gold);
  border-radius: 50% 50% 20% 50%;
  transform: rotate(-45deg) scale(0);
  position: absolute;
  top: -45px;
  filter: blur(2px);
  box-shadow: 0 0 20px var(--fire-color), 0 0 40px var(--gold);
  z-index: 5;
}

/* 3. LENS & LOGO */
#lens-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*opacity: 0;*/
  pointer-events: none;
  z-index: 90;
  background: url('../img/my/background.jpg') no-repeat center center/cover;
}

#lens-img {
  width: 100%;
  transform: scale(.1);
  /*filter: brightness(1) contrast(1.2) saturate(1.5);*/
}



.lenslogo-text {
  position: absolute;
  color: white;
  opacity: 0;
  font-size: 3rem;
  letter-spacing: 10px;
}

@media (max-width: 768px) {
  .lenslogo-text {
    font-size: 2.4rem;
    letter-spacing: 7px;
  }
}



#main-site {
  opacity: 0;
  display: none;
  padding: 50px;
  color: white;
  text-align: center;
}

.spotlight {
  position: absolute;
  top: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.spot-left {
  left: -10%;
  transform: rotate(20deg);
}

.spot-right {
  right: -10%;
  transform: rotate(-20deg);
}

/* --- NEON YAZI --- */
#neon-title {
  color: #fff;
  font-size: 4rem;
  letter-spacing: 10px;
  opacity: 0;
  margin-bottom: 50px;
  z-index: 10;
  font-weight: 800;
  transition: 0.1s;
}

.neon-on {
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon), 0 0 40px var(--neon), 0 0 80px var(--neon);
  color: #fff !important;
}