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

html, body {
  height: 100%;
  font-family: 'Yu Gothic UI', sans-serif;
  background: black;
  color: white;
  overflow: hidden;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.logo-img-large {
  width: 180px;
  height: auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tagline {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 90vw;
}

.play-btn {
  background: white;
  color: black;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: black;
}

.bottom-links {
  margin-top: auto;
  text-align: center;
  padding-bottom: 20px;
}

.x-follow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

footer {
  font-size: 13px;
  color: #ccc;
}

footer a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 16px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn svg {
    width: 20px;
    height: 20px;
  }

  .x-follow {
    font-size: 12px;
    flex-direction: column;
  }

  footer {
    font-size: 12px;
  }
}
