body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  font-family: 'Century Gothic', 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #181c3a;
  color: #eaeaea;
  overflow-x: hidden;
}

html, body {
  height: auto !important;
  min-height: 100vh;
  overflow-y: auto !important;
}

.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 8px 24px 8px;
  box-sizing: border-box;
}

.container-builds {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: block;
  text-align: center;
  padding: 24px 8px 24px 8px;
  box-sizing: border-box;
}

.logo {
  width: 440px;
  max-width: 90vw;
  height: auto;
  margin-bottom: 48px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}

.odin {
  color: #fff;
}
.corporate {
  color: #b3aaff;
  font-weight: 400;
}

.tagline, .email {
  color: #fff;
  font-family: inherit;
  letter-spacing: 0.04em;
}

.tagline {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 18px;
  font-family: inherit;
  letter-spacing: 0.04em;
}

.divider {
  width: 340px;
  max-width: 80vw;
  border: none;
  border-top: 1px solid #fff;
  margin: 0 auto 18px auto;
}

.email {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
  font-family: inherit;
}
.email:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 600px) {
  .logo {
    width: 80vw;
    max-width: 95vw;
    margin-bottom: 32px;
  }
  .divider {
    width: 90vw;
    max-width: 95vw;
  }
  .container {
    padding: 16px 2vw 16px 2vw;
  }
  .tagline, .email {
    font-size: 1rem;
  }
} 