* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#bubble-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -3;
}

body, html {
  height: 100%;
  overflow: hidden;
  color: white;
  background-color: black;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
}

.content h1 {
  font-size: 4em;
  letter-spacing: 3px;
  margin-bottom: 0.3em;
  text-shadow: 0 0 15px #00f7ff;
}

.content p {
  font-size: 1.5em;
  margin-bottom: 1em;
  color: #ccc;
}

#animated-text {
  font-size: 1.8em;
  font-weight: bold;
  min-height: 2.5em;
  background: linear-gradient(90deg, #ff4d4d, #00ffe7, #ffcc00);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}



#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 120%;
    min-height: 120%;
    top: -10%;
    left: -10%;

}

.buttons a,
.buttons button {
  margin: 0 10px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 5px;
}

.buttons a:hover,
.buttons button:hover {
  background: white;
  color: black;
}
