#continue-btn {
  position: relative; /* Ensure it’s placed on top */
  z-index: 1001; /* Ensure it's above other elements */
}

/* Scrollable Content */
.container {
    max-height: 100vh; /* Set max height to viewport height */
    overflow-y: scroll; /* Enable vertical scrolling */
    padding: 20px;
}

/* Ensure the pre element is fully visible and has space */
.paste pre {
    white-space: pre-wrap; /* This allows text to wrap when necessary */
    word-wrap: break-word; /* Allow breaking of words to fit the screen */
    line-height: 1.6;
    font-size: 16px;
    color: #ff69b4; /* Changed text color to pink */
}

/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #ff69b4; /* Changed text color to pink */
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Prevent overflow on the body */
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff69b4; /* Changed cursor color to pink */
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.5s ease;
}

#continue-btn {
  color: #ff69b4; /* Changed continue button color to pink */
  font-size: 3rem;
  font-weight: 700;
  text-decoration: none;
  cursor: none;
  text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4, 0 0 30px #ff69b4;
  animation: pulse-text 1.5s infinite alternate, shake 3s infinite;
  transition: all 0.3s ease;
}

#continue-btn:hover {
  transform: scale(1.1);
  text-shadow: 0 0 15px #ff69b4, 0 0 30px #ff69b4, 0 0 45px #ff69b4;
}

/* Glowing Effect */
@keyframes pulse-text {
  0% {
    text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4;
  }
  50% {
    text-shadow: 0 0 20px #ff69b4, 0 0 40px #ff69b4, 0 0 60px #ff69b4;
  }
  100% {
    text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}

/* Container Styling */
.container {
  text-align: center;
  z-index: 2;
  padding: 50px 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff69b4, #ff69b4, #ff69b4); /* Changed gradient to use same pink */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.paste {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
  color: #ff69b4; /* Changed paste text color to pink */
  font-family: 'JetBrains Mono', monospace;
  margin-top: 20px;
  font-size: 1rem;
  white-space: pre-wrap;
}

.footer {
  margin-top: 30px;
  color: #ff69b4; /* Changed footer text color to pink */
  font-size: 0.9rem;
  z-index: 2;
}

.footer:hover {
  color: #ff69b4;
  opacity: 1;
  text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

/* Hover Effects */
a {
  color: #ff69b4; /* Changed link color to pink */
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.4s ease;
}

a:hover {
  color: #ff69b4; /* Changed hover color to pink */
  transform: translateY(-3px) scale(1.2);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .paste {
    font-size: 0.9rem;
  }

  #continue-btn {
    font-size: 2rem;
  }

  .cursor {
    width: 16px;
    height: 16px;
  }
}
