* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  cursor: default;
}

#canvas-container {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: white;
}

.logo {
  display: flex;
  gap: 30px;
  font-size: 12px;
  text-transform: uppercase;
}

.content {
  position: absolute;
  bottom: 80px;
  left: 50px;
  color: white;
  max-width: 600px;
}

.title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
}

.title strong {
  color: #c9e300;
  font-weight: 700;
  display: inline-block;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 350px;
}

.tags {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.tag {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  font-size: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.tag:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}
