body {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-direction: column;
  background-color: #121212;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://i.pinimg.com/originals/e1/91/a8/e191a896209c083e069cc0c99b8c003d.gif");
  background-attachment: fixed;
  background-size: cover;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
}

div {
  margin-bottom: 10px;
}

button {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 8px;
}

input {
  text-decoration: none;
}

#generated-captcha {
  text-decoration: line-through;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  background-color: #ede7f6;
  border-radius: 6px;
  border: none;
  padding: 6px;
  outline: none;
  color: #1d1d1d;
  width: 200px; /* Adjust width for better alignment */
  margin-bottom: 15px;
}

#entered-captcha {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #bb86fc;
  color: #e0e0e0;
  font-family: monospace;
  outline: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  width: 240px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

#entered-captcha:focus {
  border-color: #3700b3;
  box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

#entered-captcha::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

button:first-of-type {
  background-color: #bb86fc;
  color: #121212;
}

button:first-of-type:hover {
  background-color: #3700b3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(187, 134, 252, 0.3);
}

#gen {
  background-color: #03dac6;
  color: #121212;
}

#gen:hover {
  background-color: #018786;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 218, 198, 0.3);
}

/* Disable text selection */
.no-copy {
  user-select: none; /* Modern browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
}

canvas {
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

footer {
  margin-top: 4rem !important;
  color: #03dac6 !important;
  font-size: 0.9rem;
}

footer a {
  color: #bb86fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #3700b3;
}

footer img {
  margin-top: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: translateY(-2px);
}

.wrappr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* Ensure text is centered */
  padding: 20px;
  background-color: rgba(
    255,
    255,
    255,
    0.8
  ); /* Slight transparency for better contrast with background */
  border-radius: 8px; /* Rounded corners for a smoother look */
}

.wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

#status {
  color: #bb86fc;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.sponsor-section {
    margin-top: 2rem;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.sponsor-container {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px; /* Increased width */
    margin: 0 auto;
    border: 2px solid rgba(187, 134, 252, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

.sponsor-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(187, 134, 252, 0.3);
}

.sponsor-title {
    color: #03dac6;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(3, 218, 198, 0.5);
}

.sponsor-link {
    text-decoration: none;
    display: block;
    text-align: center;
}

.sponsor-logo {
    margin-bottom: 1.5rem;
}

.sponsor-text {
    font-size: 3.5rem; /* Larger text */
    font-weight: 800;
    background: linear-gradient(45deg, #bb86fc, #03dac6, #bb86fc);
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.sponsor-banner {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(187, 134, 252, 0.2);
}

.sponsor-banner:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(187, 134, 252, 0.3);
}

.sponsor-cta {
    display: inline-block;
    background: linear-gradient(45deg, #bb86fc, #3700b3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.sponsor-cta:hover {
    background: linear-gradient(45deg, #3700b3, #bb86fc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.3);
}

.sponsor-cta .arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.sponsor-cta:hover .arrow {
    transform: translateX(5px);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
