/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  color: white;
}

/* Background */
body {
  background: url('../img/image.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay content */
.overlay {
  background-color: rgba(0, 0, 0, 0.55); /* dark transparent overlay */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

/* Access text */
.access-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
}

/* Continue button with gradient */
.continue-btn {
  background: linear-gradient(90deg, #ff7f50, #ff1493);
  border: none;
  color: white;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
}

.continue-btn:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  margin-top: 30px;
}

.footer-text {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.85;
}
