@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap');

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: #111213;
  color: #c8c8c8;
  font-family: 'DM Mono', 'Courier New', monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
}

/* LOGO */

.logo {
  width: 250px;
  max-width: 78vw;
  height: auto;
  object-fit: contain;
  filter: invert(1) brightness(0.9);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.9s ease 0.1s forwards;
}


/* TEXT */

.label {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.8s forwards;
}

/* STATUS */

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.1s forwards;
}

.dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #2e6b2e;
  animation: blink 2.5s ease-in-out infinite;
}

.dot-text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  line-height: 1.8;
  max-width: 760px;
}

/* DASHBOARD */

.dashboard-link {
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.3s forwards;
}

.dashboard-link a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dashboard-link a:hover {
  color: #d0d0d0;
}

/* CORNERS */

.corner {
  position: fixed;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a2a2a;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.4s forwards;
}

.corner-bl {
  bottom: 28px;
  left: 32px;
}

.corner-br {
  bottom: 28px;
  right: 32px;
  text-align: right;
}

/* ANIMATIONS */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.22;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  body {
    padding: 28px 18px;
  }

  .corner {
    display: none;
  }

  .logo {
    width: 200px;
    max-width: 78vw;
  }

  .divider {
    height: 20px;
    margin: 18px 0 24px;
  }

  .label {
    font-size: 14px;
    letter-spacing: 0.14em;
    line-height: 1.8;
    max-width: 92vw;
  }

  .status {
    width: 100%;
    margin-top: 26px;
    gap: 9px;
  }

  .dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
  }

  .dot-text {
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.8;
    max-width: 300px;
    white-space: normal;
  }

  .dashboard-link {
    margin-top: 28px;
  }

  .dashboard-link a {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}