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

body {
  font-family: 'Work Sans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* change from center to flex-start */
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  padding-top: 40px; /* <-- Push things down slightly */
  padding-bottom: 140px; /* <-- Make sure enough space above bottom GIFs */
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}


#logo-container {
  width: 560px;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: -140px;
}

#3d-logo {
  width: 100%;
  height: 100%;
}

.coming-soon {
  max-width: 400px;
  width: 90%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}

.coming-soon h1 {
  font-weight: 600; /* 600 looks smoother than 700 in Work Sans */
  font-size: 26px;
  margin-bottom: 21px;
  font-family: 'Work Sans', sans-serif;
}


.coming-soon p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  color: black;
}

button {
  padding: 12px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif; /* Add this line */
  font-weight: 600; /* Slightly bolder for clean look */
  cursor: pointer;
  transition: background-color 0.3s;
}


button:hover {
  background-color: #333333;
}

#confirmation-message {
  color: green;
  font-size: 14px;
  margin-top: 20px;
}

.vector-image {
  width: 50px; /* Bigger size */
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Make the first GIF move a little left */
.vector-image:first-child {
  transform: translateX(-14px); /* Move left by 10px */
}

/* Optional: Still grow slightly when hovering */
.vector-image:hover {
  transform: scale(1.2);
}

#bottom-vectors {
  position: fixed; /* 👈 LOCKS them to a fixed spot */
  bottom: 20px; /* distance from bottom */
  left: 50%;
  transform: translateX(-50%); /* center horizontally */
  display: flex;
  justify-content: center;
  gap: 40px;
  z-index: 10; /* make sure they stay above background */
}

@media (max-width: 600px) {
  body {
    padding-bottom: 180px; /* <-- EVEN more space on small phones */
  }

  #logo-container {
    width: 300px; /* Smaller logo for mobile */
    height: 300px;
    margin-bottom: -60px; /* Less negative margin */
  }

  .coming-soon {
    max-width: 90%;
    padding: 20px 15px;
    border-radius: 10px;
  }

  .coming-soon h1 {
    font-size: 22px;
  }

  .coming-soon p {
    font-size: 13px;
  }

  input[type="email"],
  button {
    font-size: 14px;
    padding: 10px;
  }

  .vector-image {
    width: 40px; /* Make TikTok/Instagram GIFs smaller on mobile */
    height: 40px;
  }
}

#glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  z-index: 9999;
  mix-blend-mode: lighten; /* optional but makes color flashes look better */
}

@keyframes fake-glitch {
  0% { transform: translate(0, 0) skew(0deg); }
  10% { transform: translate(-5px, 5px) skew(-5deg); }
  20% { transform: translate(5px, -5px) skew(5deg); }
  30% { transform: translate(-3px, 3px) skew(-3deg); }
  40% { transform: translate(3px, -3px) skew(3deg); }
  50% { transform: translate(-2px, 2px) skew(-2deg); }
  60% { transform: translate(2px, -2px) skew(2deg); }
  70% { transform: translate(-1px, 1px) skew(-1deg); }
  80% { transform: translate(1px, -1px) skew(1deg); }
  90% { transform: translate(0, 0) skew(0deg); }
  100% { transform: translate(0, 0) skew(0deg); }
}

.fake-glitch {
  animation: fake-glitch 1s ease-in-out forwards;
}

#glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background: transparent;
  z-index: 9999;
}






