    * {
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Behind all content */
}

    canvas#bg {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }


.blinking-dot {
			height: 25px;
			width: 25px;
			background-color: #28a745; /* Green */
			border-radius: 50%;
			display: inline-block;
			margin-right: 8px;
			animation: blink 1s infinite;
			vertical-align: middle;
		}
	
		@keyframes blink {
			0%, 100% { opacity: 1; }
			50% { opacity: 0.2; }
		}
	
		/* Green color for number */
		#onlineCount {
			color: #28a745;
			font-weight: bold;
		}


    .containerr {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 60px 20px;
    }

    .card {
      background: rgba(20, 20, 20, 0.9);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 10px 30px rgba(14, 14, 14, 0.8);
      text-align: center;
      width: 100%;
      max-width: 500px;
      animation: fadeInUp 1s ease-out;
    }

    input[type="text"] {
      padding: 15px;
      border-radius: 10px;
      border: none;
      width: 100%;
      margin-top: 20px;
      font-size: 17px;
      background: #1c1c1c;
      color: white;
      outline: none;
      box-shadow: inset 0 0 8px #000;
    }

    input[type="text"]:focus {
      box-shadow: 0 0 8px #747474;
    }

    buttonlike {
      margin-top: 25px;
      padding: 14px 30px;
      background: linear-gradient(135deg, #3a3a3a, #474747);
      color: rgb(247, 253, 255);
      font-size: 17px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 5px #272727;
    }

    buttonlike:hover {
      transform: scale(1.06);
      box-shadow: 0 0 15px #b7b8b8, 0 0 25px #c8c9c9;
    }

    pre {
      text-align: left;
      background: #222;
      padding: 18px;
      border-radius: 10px;
      margin-top: 25px;
      max-height: 300px;
      overflow-y: auto;
      font-size: 14px;
    }
.input-with-icon {
  position: relative;
  width: 100%;
}
.region-select {
  /* Existing styles */
  margin-top: 10px;
  padding: 15px 30px 15px 15px; /* add right padding for arrow space */
  border-radius: 10px;
  border: none;
  font-size: 16px;
  background: #1c1c1c;
  color: white;
  width: 100%;
  box-shadow: inset 0 0 8px #000;
  outline: none;

  /* Hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}


.region-select:focus {
  box-shadow: 0 0 8px #646464;
}

.input-with-icon input[type="text"] {
  padding-right: 40px !important; /* Make space for the icon */
}

.input-with-icon .paste-icon {
  position: absolute;
  right: 12px;
  top: 90%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.7;
  cursor: pointer;
  filter: invert(100%);
  transition: opacity 0.3s ease;
}

.input-with-icon .paste-icon:hover {
  opacity: 1;
}

    .about {
      max-width: 880px;
      padding: 50px 20px;
      text-align: center;
      margin: 0 auto;
    }

    .about h2 {
      font-size: 2rem;
      color: #00bfff;
      margin-bottom: 20px;
    }

    .about p {
      color: #ccc;
      font-size: 1.1rem;
      line-height: 1.7;
    }
@keyframes jumpLoop {
  0%   { transform: translateY(0); opacity: 1; }
  30%  { transform: translateY(-20px); opacity: 1; }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.jump-loop {
  animation: jumpLoop 2s ease-in-out infinite;
}


    @keyframes fadeInDown {
      from { transform: translateY(-40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes fadeInUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
 .pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  flex-direction: column;
  text-align: center;
}


    .pricing-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      justify-content: center;
      animation: fadeIn 1.2s ease-in-out;
    }

    .plan {
      background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
      border: 1px solid #333;
      border-radius: 16px;
      padding: 24px;
      width: 240px;
      text-align: center;
      box-shadow: 0 0 16px rgba(83, 83, 83, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .plan:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 24px rgba(70, 70, 70, 0.3);
    }

    .plan-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #00e1ff;
    }

    .plan-info {
      margin: 10px 0;
      font-size: 0.95rem;
      color: #ccc;
    }

    .plan-price {
      font-size: 1.3rem;
      font-weight: bold;
      margin: 16px 0;
      color: #00ffbf;
    }

    .buy-btn {
      background: #8d8d8d;
      color: black;
      padding: 10px 16px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.3s ease;
    }

    .buy-btn:hover {
      background: #f5f5f5;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

