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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000000;
  color: #ffffff;
  min-height: 100vh;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #000000;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 2rem 2rem;
  padding-top: 4rem;
}

.welcome-section {
  text-align: center;
  animation: fadeInScale 0.8s ease-out;
}

.welcome-section h1 {
  font-size: 5.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  margin-top: 0;
}

.login-status {
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 1rem;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .welcome-section h1 {
    font-size: 3rem;
  }

  .main-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .welcome-section h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 1rem;
  }
}
