* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Manrope', sans-serif;
  color: white;
  overflow: hidden;
}

/* Video Arka Planlar */
.desktop-video, .mobile-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-color: black;
}

@media (min-width: 769px) {
  .desktop-video {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-video {
    display: block;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
  }

  .desktop-video {
    display: none !important;
  }

  .mobile-video::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
}

/* Gölgeleme Katmanı */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* İçerik Alanı */
.content {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.content h1 {
  font-size: 4vw;
  margin-bottom: 10px;
  line-height: 1.2;
}

.content p {
  font-size: 2vw;
  margin-bottom: 20px;
}

/* Geri Sayım */
.countdown-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0 40px;
  flex-wrap: wrap;
}

.time-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.time-box span {
  display: block;
  font-size: 32px;
  font-weight: bold;
}

.time-box small {
  font-size: 14px;
  color: #ccc;
}

/* İletişim Butonu */
.btn-contact {
  margin-top: 40px;
  padding: 16px 36px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.6vw;
  color: #00ff90;
  background-color: black;
  border: 2px solid #00ff90;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  animation: pulseMatrix 2s infinite;
  box-shadow: 0 0 8px #00ff90;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #00ff90;
  color: black;
  box-shadow: 0 0 15px #00ff90;
  transform: scale(1.05);
}

@keyframes pulseMatrix {
  0%, 100% { box-shadow: 0 0 8px #00ff90; }
  50% { box-shadow: 0 0 14px #00ff90; }
}

/* Sosyal Medya */
.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
}

.floating-social .instagram { background: #E1306C; }
.floating-social .youtube   { background: #FF0000; }
.floating-social .bionluk   { background: #E50914; }
.floating-social .whatsapp  { background: #25D366; }

.floating-social a:focus,
.floating-social a:active {
  outline: none;
  border: none;
}

/* Mobil Optimize */
@media (max-width: 768px) {
  .floating-social {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .floating-social a {
    flex: 1;
    border-radius: 6px;
  }

 html, body {
    font-size: 13px !important; /* zorla büyük font */
  }

  .content h1 {
    font-size: 20px !important;
  }

  .content p {
    font-size: 13px !important;
  }

  #fancy-text, #typing-text {
    font-size: 18px !important;
  }

  .time-box span {
    font-size: 28px;
  }

  .time-box small {
    font-size: 14px;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    top: 0;
    height: 100%;
    padding: 20px;
    text-align: center;
  }
}


/* Fancy Yazı Efekti */
#typing-text, #fancy-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.2vw;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
}

#fancy-text span {
  opacity: 0;
  display: inline-block;
  transform: scale(0.8);
  animation: popIn 0.6s ease forwards;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.bionluk {
  background: #E50914; /* Kırmızı ton */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bionluk .custom-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
