/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen black background */
html, body {
  width: 100%;
  height: 100%;
  background-color: #000;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Main container */
.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Logo wrapper */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Canvas logo */
#logoCanvas {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Tagline overlay */
.tagline-overlay {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin-top: -0.5rem;
}

/* Contact info */
.contact {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: 2rem;
}

/* Footer */
.footer {
  font-size: 0.8rem;
  color: #777;
  text-align: center;
  margin-top: 1rem;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .tagline-overlay {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  #logoCanvas {
    max-width: 280px;
  }
}