

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}
header {
    position: relative;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #400000;
    border-bottom: 2px solid #400000;
    background-color: #000;
}
header h1 {
    font-size: 9rem;
    color: #0f0;
    font-family: 'cursive', sans-serif;
    text-shadow: 2px 2px 4px #0f0;
    position: relative;
    animation: glitch 3s infinite;
    padding-top: 0px; /* Adjust the value to move the text up or down */
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 10px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: #0f0;
    margin: 3px;
    transition: all 0.3s ease;
}

@keyframes glitch {
    0% {
        transform: none;
        opacity: 1;
    }
    7% {
        transform: skew(-0.5deg, -0.9deg);
        opacity: 0.75;
    }
    10% {
        transform: none;
        opacity: 1;
    }
    27% {
        transform: none;
        opacity: 1;
    }
    30% {
        transform: skew(0.8deg, -0.1deg);
        opacity: 0.75;
    }
    35% {
        transform: none;
        opacity: 1;
    }
    52% {
        transform: none;
        opacity: 1;
    }
    55% {
        transform: skew(-1deg, 0.2deg);
        opacity: 0.75;
    }
    60% {
        transform: none;
        opacity: 1;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}
header h1::before {
    content: 'D';
    position: absolute;
    top: 0;
    left: -3px;
    color: #0f0;
    opacity: 0.5;
    animation: noise 3s infinite linear alternate-reverse;
}

header h1::after {
    content: 'Mama';
    position: absolute;
    top: 0;
    left: 38px;
    color: #0f0;
    opacity: 0.5;
    animation: noise 3s infinite linear alternate-reverse;
}

@keyframes noise {
    0% {
        clip: rect(24px, 9999px, 43px, 0);
    }
    5% {
        clip: rect(34px, 9999px, 59px, 0);
    }
    10% {
        clip: rect(41px, 9999px, 12px, 0);
    }
    15% {
        clip: rect(57px, 9999px, 77px, 0);
    }
    20% {
        clip: rect(47px, 9999px, 41px, 0);
    }
    25% {
        clip: rect(1px, 9999px, 50px, 0);
    }
    30% {
        clip: rect(61px, 9999px, 9px, 0);
    }
    35% {
        clip: rect(58px, 9999px, 51px, 0);
    }
    40% {
        clip: rect(23px, 9999px, 10px, 0);
    }
    45% {
        clip: rect(35px, 9999px, 54px, 0);
    }
    50% {
        clip: rect(78px, 9999px, 17px, 0);
    }
    55% {
        clip: rect(38px, 9999px, 84px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 7px, 0);
    }
    65% {
        clip: rect(5px, 9999px, 60px, 0);
    }
    70% {
        clip: rect(29px, 9999px, 24px, 0);
    }
    75% {
        clip: rect(96px, 9999px, 50px, 0);
    }
    80% {
        clip: rect(62px, 9999px, 12px, 0);
    }
    85% {
        clip: rect(16px, 9999px, 97px, 0);
    }
    90% {
        clip: rect(20px, 9999px, 36px, 0);
    }
    95% {
        clip: rect(73px, 9999px, 46px, 0);
    }
    100% {
        clip: rect(62px, 9999px, 5px, 0);
    }
}


@media screen and (max-width: 768px) {
    header {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    header h1 {
        font-size: 32px;
    }

    header h1::before,
    header h1::after {
        font-size: 24px;
    }

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: #0f0;
    margin: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.show .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.show .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.show .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: red; /* Set the background color to red */
    border: 1px solid #0f0; /* Add a green border */
    border-radius: 5px;
    position: absolute;
    top: 70px; /* Adjust the value to position the menu below the navigation */
    left: 0;
    width: 100px;
    z-index: 999;
  }
.menu.show {
    display: block;
}

.menu li {
    padding: 10px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
  }

.menu li a:hover {
    color: #f00;
  }

}
footer {
    background-color: black;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin-right: 20px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain; /* Adjust background-size property */
    background-position: center; /* Align the image in the center */
    border-radius: 50%; /* Make the background circular */
    box-shadow: 0 0 10px #0f0; /* Add a glowing effect with green color */
}

.social-icons a.telegram-icon {
    background-image: url('../images/6Z1PrLIGGjZo.png');
}

.social-icons a.facebook-icon {
    background-image: url('../images/zWsrYSBNIjTz.png');
}

.social-icons a.github-icon {
    background-image: url('../images/Pg1o5Q9GZ0Tn.png');
}

.hacker-ad {
  background-color: #000;
  padding: 20px;
  border: 2px solid #0f0;
  color: #0f0;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 0 10px #0f0;
}

.hacker-ad script {
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .hacker-ad {
    width: 100%;
    height: auto;
  }
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f00;
    color: #fff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #d90000;
}

.tool-features {
        background-color: #111;
        padding: 40px 0;
    }

    .container {
        max-width: 960px;
        margin: 0 auto;
        text-align: left;
    }

    .tool {
        background-color: #333;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
        border: 2px solid #0f0;
    }

    .tool h4 {
        color: #0f0;
        margin: 0;
}

  .tool p {
    color: #fff;
    margin: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    animation: typing 3s steps(40) forwards, delay-typing 10s infinite;
    border-right: 2px solid #0f0;
}

@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes delay-typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #0f0;
    }
}

@media screen and (max-width: 768px) {
    .tool {
        padding: 10px;
    }

    .tool h4 {
        font-size: 18px;
    }

    .tool p {
        font-size: 14px;
    }
}