/* =========================================================
   DOTS MEDIA
   GLOBAL / BASE STYLES
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0705;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   SHARED BACKGROUND DOTS
   ========================================================= */

.dots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.dots-layer span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e8722c;
  opacity: 0.5;
}


/* =========================================================
   SHARED SECTION TAG DOT
   ========================================================= */

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a1a;
  flex-shrink: 0;
}



