.on-icon,
.off-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.on-icon {
  margin-right: 10px;
}

.off-icon {
  margin-left: 10px;
}
.coming-soon-container {
  text-align: right;
  position: relative;
}

.hacker-circle {
  display: inline-block;
  background-color: black;
  color: #00ff00;
  padding: 5px 10px;
  border: 2px solid transparent; /* Start with a transparent border */
  border-radius: 50px;
  animation: hacker-pulse 1s infinite, premium-animation 2s infinite; /* Premium-type animation */
}

@keyframes hacker-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes premium-animation {
  0% {
    /* Initial styles for the premium animation */
    background-color: black;
    border-color: transparent;
  }
  25% {
    /* Intermediate styles */
    background-color: transparent;
    border-color: red;
  }
  50% {
    /* More intermediate styles */
    background-color: black;
    border-color: transparent;
  }
  75% {
    /* Another intermediate state */
    background-color: transparent;
    border-color: red;
  }
  100% {
    /* Return to initial styles */
    background-color: black;
    border-color: transparent;
  }
}
#popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    #popup-content {
      background-color: #fff;
      padding: 20px;
      max-width: 400px;
      text-align: center;
}
.key-box {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid #0f0;
    margin-bottom: 20px;
}

.key-box input[type="text"] {
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    border: 1px solid #0f0;
    background-color: transparent;
    color: #fff;
    transition: background-color 0.3s;
}
.hacker-form label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.hacker-form input[type="text"],
.hacker-form input[type="email"],
.hacker-form input[type="number"],
.hacker-form input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #0f0; /* Add green border */
  border-radius: 5px;
  background-color: #000;
  color: #f00;
}

.processing,
.success-count {
  margin-top: 10px;
  color: #fff;
  display: none;
}

.key-box input[type="text"]:focus {
    background-color: #000;
    color: #f00;
    outline: none;
}

.key-box input[type="submit"] {
    grid-column: span 2;
    background-color: #f00;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 10px; /* Add margin to create space between the input form and the submit button */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0);
    }
}

.key-box input[type="submit"]:hover {
    background-color: #d90000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 40px rgba(0, 255, 0, 0.5);
}

.key-box input[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.key-box input[type="submit"]:hover:before {
    opacity: 1;
}
footer {
    clear: both; /* Add this property to clear any floated elements */
}

.hacker-form {
    margin-top: 20px; /* Add margin to create space between the form and the footer */
}

.key-box {
    background-color: #333; /* Set the background color for the key box */
    padding: 20px; /* Add padding to create space inside the key box */
    border-radius: 5px; /* Add border-radius for rounded corners */
    border: 2px solid #0f0; /* Add a border for the key box */
    margin-bottom: 20px; /* Add margin to create space between the key box and the form */
}

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: #000;
            border-radius: 5px;
            text-align: center;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #fff;
            cursor: pointer;
        }
label a {
    color: #00FF00; /* Change the color to your desired value */
  text-decoration: none;
}

        .popup-message {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .popup-success-icon {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-color: rgb(0, 255, 0);
            border-radius: 50%;
            margin-bottom: 10px;
            animation: tick 0.5s linear;
        }

        .popup-error-icon {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-color: rgb(255, 0, 0);
            border-radius: 50%;
            margin-bottom: 10px;
            animation: cross 0.5s linear;
        }

        @keyframes tick {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes cross {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                transform: rotate(360deg);
            }
}
  .hacker-form .form-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}
#telegram-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }

        #telegram-float a {
            text-decoration: none;
        }

        #telegram-float img {
            width: 50px;
            height: 50px;
            border: 2px solid green; /* Green border */
            border-radius: 50%; /* Rounded shape */
            background-color: black; /* Black background */
            padding: 5px; /* Add some padding */
        }