body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #6d6c6c;
    user-select: none;
}

.h1{
  margin-top: 20px;
  font-size: 22px;
  color: #ffffff;
  padding: 10px;
  font-weight: bold;
  display: inline-block;
}

.container {
    width: 80%;
    max-width: 800px;
    background: rgb(0, 0, 0);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

button {
    background: #242424;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    user-select: none;
}
button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #88e7eb
}
#codeDisplay {
    margin-top: 20px;
    font-size: 22px;
    background: #000000;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    user-select: none;
}
a {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    user-select: none;
}
.article {
  text-align: left;
  margin: 20px auto;
  padding: 15px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 5px;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
}
p {
    font-size: 1rem;
    color: #cacaca;
    font-style: italic;
    transition: color 1s ease;
    transition: 0.3s
}

p:hover {
    color:  #ffffff;
    transform: scale(1.01);
  
  }


.para1 {
    width: 100%;
    max-width: 800px;
    color: #000000;
    background-color: #00292b;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000000;
    text-align: center;
}

.article1 {
  text-align: left;
  margin: 20px auto;
  padding: 15px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 5px;
  max-width: 900px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* Manual Button */
.button.manual {
    color: #e4e4e4;
    font-size: 1rem;
    position: fixed;
    top: 25px;
    right: 20px;
    border: none;
    cursor: default;
    user-select: none;
    z-index: 9999;
    transition: color 0.3s ease;
  }
  
  .button.manual:hover {
    color:  #ffffff;
    border-radius: 3px ;
  }
  
  /* Modal Background (blurred effect behind the modal) */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(120px); /* Blur effect for background */
    z-index: 999; /* Behind the modal */
    pointer-events: none; /* Allow clicks to pass through to the content behind */
    opacity: 0; /* Start with zero opacity */
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease; /* Fade in/out and blur transition */
  }
  
  /* Modal Content (transparent background) */
  .modal-content {
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    height: 70%;
    max-width: 500px;
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    z-index: 1000;
    position: absolute; /* Fixed position to keep modal on top */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the modal */
    display: none; /* Hidden by default */
    background: transparent; /* No background for content */
    border: none; /* No border */
    user-select: none;
    
  }
  
  /* Modal Heading */
  .modal h1 {
    font-size: 1.5rem;
    margin-bottom: 1px;
    font-weight: bold;
  }
  
  .p12 {
    color: #ffffff;
  }

  .p12::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
  }