* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

body {
  min-height: 100vh;
}

.landing {
  position: relative;
  min-height: 100vh;
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.30) 52%,
      rgba(0, 0, 0, 0.96) 100%
    );
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 34px 120px;
  text-align: center;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #dcdcdc;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #16d96f;
  border-radius: 50%;
  display: inline-block;
}

.subtitle {
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 52px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.btn {
  width: 100%;
  max-width: 100%;
  background: #f3f3f3;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.btn-primary {
  padding: 20px 28px;
}

.btn-secondary {
  padding: 18px 28px;
}

.btn-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.btn-sub {
  display: block;
  margin-top: 7px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.3;
}

/* DESKTOP */
@media (min-width: 769px) {
  .content {
    max-width: 620px;
    padding: 24px 32px 42px;
  }

  h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }

  .status {
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 22px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .subtitle {
    font-size: 1.55rem;
    margin-bottom: 42px;
  }

  .buttons {
    gap: 22px;
  }

  .btn {
    max-width: 540px;
  }

  .btn-primary {
    padding: 22px 30px;
  }

  .btn-secondary {
    padding: 20px 30px;
  }

  .btn-title {
    font-size: 1.35rem;
  }

  .btn-sub {
    margin-top: 8px;
    font-size: 1rem;
  }
}