* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
}

/* Video */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Tıklama alanı */
#tap-area {
  position: fixed;
  inset: 0;
  cursor: pointer;
}

/* TAP FOR SOUND */
#hint {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  pointer-events: none;
  animation: pulse 1.8s ease-in-out infinite;
}

#hint .icon {
  font-size: 18px;
}

/* Coming soon */
#coming {
  position: fixed;
  bottom: 22px;
  right: 24px;
  color: rgba(255,255,255,0.35);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
}

/* Hafif nabız */
@keyframes pulse {
  0%   { opacity: 0.3; }
  50%  { opacity: 1; }
  100% { opacity: 0.3; }
}
