/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =======================
        HERO SECTION
======================= */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* dreamy pastel gradient background */
  background: linear-gradient(to bottom, #f7c6d9, #a7c7e7);
  position: relative;
  overflow: hidden;
}

/* soft overlay glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

/* =======================
       MAIN CONTENT CARD
======================= */
.content {
  position: relative;
  max-width: 750px;

  padding: 30px;

  border: 3px solid black;
  border-radius: 20px;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);

  box-shadow: 6px 6px 0 black;
  color: black;
}

/* =======================
        TITLE TEXT
======================= */
.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;

  text-shadow: 2px 2px #f7c6d9;
}

/* =======================
       SUBTITLE TEXT
======================= */
.subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.85;
}

/* =======================
         BUTTON
======================= */
.btn {
  display: inline-block;
  padding: 14px 26px;

  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;

  border: 3px solid black;

  background: linear-gradient(to right, #a7c7e7, #f7c6d9);
  color: black;

  box-shadow: 4px 4px 0 black;

  transition: 0.25s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 black;
}

/* =======================
        FADE ANIMATION
======================= */
.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
       DISCLAIMER TEXT
======================= */
.disclaimer {
  margin-top: 18px;
  font-size: 0.75rem;
  opacity: 0.7;
  line-height: 1.4;
}
.hint{
  margin-bottom:20px;
  font-size:0.95rem;
  font-weight:bold;
  opacity:0.85;
}