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

html, body {
  width: 100%;
  height: 100%;
  font-family: "Times New Roman", serif;
  background: #000;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */
.background {
  position: fixed;
  inset: 0;
  background-image: url("https://i.imgur.com/dIscjST.jpeg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.85)
  );
  z-index: 2;
}

/* =========================
   CONTENT
========================= */
.content {
  position: relative;
  z-index: 3;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 24px;

  transform: translateY(50px);
}

/* =========================
   TITLE
========================= */
.title {
  font-size: 3rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(120,140,255,0.4);
}

/* =========================
   QUOTE
========================= */
.quote {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
  color: #cfd6ff;
}

/* =========================
   BUTTON (ENTER THE DARKNESS)
========================= */
.enter-btn {
  display: inline-block;

  padding: 16px 44px;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(135deg, #3b4cff, #5b6bff);
  border-radius: 40px;

  box-shadow:
    0 0 30px rgba(80,100,255,0.7),
    inset 0 0 12px rgba(255,255,255,0.2);

  transition: all 0.35s ease;
}

.enter-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 45px rgba(120,140,255,0.95),
    inset 0 0 16px rgba(255,255,255,0.3);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }

  .quote {
    font-size: 1rem;
  }

  .content {
    transform: translateY(65px);
  }
}