body {
    margin: 0;
    padding: 0;
    background: #fbc4eb;
    background-size: cover;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container {
    background: #ffffff;
    border-radius: 5px;
	border:1px solid #1a1a1a;
    padding: 20px;
    max-width: 500px;
    width: 90%;
	margin-top: 0px;
	margin-bottom: 15px;
  }
 
  h1 {
    font-size: 19px;
    color: #1a1a1a;
    margin-bottom: 15px;
	text-align: left;
  }
  
  input, select, button {
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
  }
  input, select {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  button {
	background: #ffffff;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
	text-align: left;
	padding-left: 0px;
	border-radius: 25px;
  }
  button:hover {
	background: #ffffff;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
	text-align: left;
	padding-left: 0px;
	border-radius: 25px;
  }

  .progress {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 10px;
    height: 10px;
    overflow: hidden;
  }
  .progress-fill {
    background: #ffffff;
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
  }

  #log {
    margin-top: 15px;
    height: 400px;
    overflow-y: auto;
    background: #111111;
    padding: 10px;
    border-radius: 5px;
	overflow:auto;
		padding-right:8px;
		font-size:14px;
		line-height:1.45
  }
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    animation: fadeIn 0.4s ease;
  }
  .modal img {
    width: auto;
    margin-bottom: 15px;
  }
  .modal h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
  }
  .modal p {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .btn.verify-btn {
    background: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
  }
  .btn.verify-btn:hover {
    transform: scale(1.05);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
  }
  form input,
  form select {
    background: #faf9f7;
    border: 1px solid #111111;
    color: #111111;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Source Code Pro', monospace;
  }
  form input::placeholder {
    color: #959696;
  }
  form input:focus,
  form select:focus {
    outline: none;
    border-color: #111111;
    transform: scale(1.02);
  }
  form select option {
    background: #dedddd;
    color: #111111;
  }
  form button {
    color: #1a1a1a;
	text-align: left;
    cursor: pointer;
  }
  form button:hover:not(:disabled) {
    background: none;
  }
  form button:disabled {
    cursor: not-allowed;
    box-shadow: none;
  }
  form input,
  form select,
  form button {
    animation: fadeUp 0.5s ease both;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .thumb {
    position: relative;
    width: 100%;
    /* 16:9 ratio => padding-top: 56.25% */
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background-color: #0b1228;
    transition: transform .35s ease, box-shadow .35s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .thumb:hover,
  .thumb:focus-within {
    transform: translateY(-6px);
    border-color: rgba(23,78,220,0.28);
  }
  .thumb .img {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform .8s cubic-bezier(.2,.9,.2,1);
    transform-origin: center center;
  }
  .thumb:hover .img,
  .thumb:focus-within .img {
    transform: scale(1.04);
  }
  .thumb .overlay {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
  }
  .thumb .title {
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 1.05rem;
  }
  .thumb .badge {
    pointer-events: none;
    background: linear-gradient(90deg, rgba(23,78,220,0.95), rgba(77,125,255,0.95));
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .thumb a {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
  }
  @media (max-width: 480px) {
    .thumb .title { font-size: 0.95rem; padding: 6px 10px; }
    .thumb { padding-top: 62%; border-radius: 12px; }
  }

  .progress {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-top: 20px;
  }
  .progress-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 10px;
    transition: width 0.4s ease;
    background-size: 200% 100%;
  }

  #status {
    margin-top: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
 
  .cmd-header{
	background-image: url(../img/cmd.png);
    padding: 22px;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
		}
    .cmd-window {
    border: 1px solid #ffffff;
    background: #111111;
    text-align: left;
    margin-top: 25px;
  }
  
  #log {
    margin-top: 0px;
    background: #111111;
	border-right: 1px solid #111111;
	border-left: 1px solid #111111;
	border-bottom: 1px solid #111111;
    height: 250px;
    overflow-y: auto;
    padding: 12px;
    text-align: left;
	color: #ffffff;
    font-family: 'Source Code Pro', monospace;
  }
  #log::-webkit-scrollbar {
    width: 8px;
  }
  #log::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
  }
  #log::-webkit-scrollbar-thumb {
    background: #111111;
    border-radius: 5px;
  }
  #log .line {
    margin-bottom: 6px;
	color: #ffffff;
  }

  #log .ts {
    color: #ffffff;
    margin-right: 6px;
  }

  #log .prefix {
    color: #ffffff;
    margin-right: 4px;
  }
  #log .info { color: #4dc3ff;}
  #log .proc { color: #ffffff;}
  #log .warn { color: #ffff66;}
  #log .succ { color: #00ff7f;}
  #log .sys  { color: #ff66ff;}
  #log .muted{ color: #ffffff;}

  .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  width: 100%;
  max-width: 420px;
  font-family: monospace;
  font-size: 14px;
  text-align: left;
  color: #ffffff;
  font-weight: bold;
}
.subtitle {
  font-size: 0.95rem;
  color: #1a1a1a;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
  font-weight: bold;
}
.text-green {
	color: #1a1a1a;
	font-family: monospace;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
}
.responsive {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}
.instructions1{
  font-family: monospace;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  color: #111111;
  margin-bottom: 35px;
}
.responsive1 {
  max-width: 100%;
  height: auto;
}