
body {
  margin: 0;
  padding: 0;
  background: #0f0f0f;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: #e6e6e6;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.75) 100%
  );
}

.center-wrapper {
  margin: auto;
  text-align: center;
}


.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Square logo like Lightroom's tile — now orange */
.logo-square {
  width: 90px;
  height: 90px;
  background: #1c1f24;
  border: 1px solid #2a2d31;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 300;
  color: #ff8a3d; /* SHUTR orange */
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.18);
}

/* SHUTR text */
.logo-text {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 6px;
  margin: 0;
  color: #f2f2f2;
}

/* Tagline */
.tagline {
  margin-top: 10px;
  font-size: 15px;
  opacity: 0.55;
}

/* Buttons */
.action-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.lr-btn {
  padding: 12px 34px;
  font-size: 15px;
  text-decoration: none;
  color: #dcdcdc;
  background: #1a1d21;
  border: 1px solid #2a2d31;
  border-radius: 4px;
  transition: 0.2s ease;
}

/* Primary button — orange glow */
.lr-btn.primary {
  background: #2a2d31;
  border-color: #ff8a3d;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 138, 61, 0.25);
}

.lr-btn.primary:hover {
  background: #32363c;
  border-color: #ff9d5a;
}

/* Footer */
.footer {
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
  opacity: 0.35;
}
