@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Text:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@font-face {
  font-family: 'OCR A Extended';
  src: url('/fonts/OCRAEXT.TTF');
  font-weight: normal;
  font-style: normal;
}




/* Fade-in effect when page loads */
body {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slide-in effect for main content */
main {
  transform: translateY(20px);
  opacity: 0;
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Glitch flicker effect on titles */
h1, h2 {
  animation: glitchFlicker 1.5s infinite;
}

@keyframes glitchFlicker {
  0% { text-shadow: 0px 0px 5px #00ff99; }
  50% { text-shadow: 0px 0px 15px #707070; }
  100% { text-shadow: 0px 0px 5px #00ff99; }
}

/* Neon text glow effect */
.neon-text {
  text-shadow: 0px 0px 10px #00ff99;
  animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
  from { text-shadow: 0px 0px 10px #00ff99; }
  to { text-shadow: 0px 0px 20px #00ff99; }
}

/* NaveBar Styles and Animations */

/* NAVBAR */
.navbar ul li a {
  position: relative;
  color: #00ff99;  /* Hacker greenish color */
  font-size: 1.5rem; /* Adjust font size for mobile */
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s;
  font-family: "VT323", cursive;
}

.nav-links {
  display: none;
  display: flex;
  list-style: none; /* Hidden by default on mobile */
}

.nav-links li {
  margin: 0 10px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
}

.nav-links.active {
  display: flex; /* Show when toggled */
  flex-direction: row;
}

/* Default navbar styles */
.navbar {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0); /* Dark background to match hacker theme */
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 10px 6%;
  z-index: 1000;
  border-bottom: 2px solid #00ff99; /* Hacker greenish border */
}

/* Default menu style */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* HAMBURGER MENU (Hidden by Default) */
.hamburger {
  display: none;
  font-size: 35px;
  cursor: pointer;
  color: #00ff99; /* Greenish color for hamburger */
}

/* 📱 MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 4%;
  }

  /* Hide menu by default */
  .navbar ul {
    flex-direction: column;
    background: rgb(0, 0, 0); /* Dark background */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    gap: 1rem;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  /* Show menu when active */
  .navbar ul.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
  }

  /* SHOW HAMBURGER ICON */
  .hamburger {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: "Orbitron", sans-serif;
}

.logo img {
  position: absolute;
  left: 2%;
  z-index: 1000;
  max-height: 50px !important;
  max-width: 50px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
}

/* Glitch Effect */
.navbar ul li a::before,
.navbar ul li a::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #00ff99; /* Hacker greenish color */
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.navbar ul li a::after {
  color: rgb(153, 153, 153);
  left: 2px;
}

.navbar ul li a:hover {
  color: #464646;
  animation: navglitch 0.5s infinite;
}

.navbar ul li a:hover::before {
  clip: rect(10px, 100px, 20px, 0);
  left: -2px;
}

.navbar ul li a:hover::after {
  clip: rect(5px, 50px, 20px, 0);
  left: 2px;
}

@keyframes navglitch {
  0% {
    text-shadow: -2px 2px 0 #00ff99, 2px -2px 0 rgb(0, 51, 25);
  }
  25% {
    text-shadow: 2px 2px 0 #00cc7a, -2px -2px 0 rgb(0, 40, 20);
  }
  50% {
    text-shadow: -2px -2px 0 #009966, 2px 2px 0 rgb(0, 102, 51);
  }
  75% {
    text-shadow: 2px -2px 0 #00e68a, -2px 2px 0 rgb(0, 61, 31);
  }
  100% {
    text-shadow: -2px 2px 0 #00ff99, 2px -2px 0 rgb(0, 51, 25);
  }
}
















.blog-section {
  background-color: #050505;
  color: #00ff99;
  text-align: center;
  padding: 50px;
  font-family: "Courier New", monospace;
  border: 2px solid #00ff99;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ff99;
  animation: flicker 1.5s infinite alternate;
  margin-bottom: 5%;
  margin: 50px 5% 5% 5%;
  padding: 80px 10%;
}

.under-development {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ff99;  /* Hacker-themed color */
  color: black;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.under-development p {
  margin: 0;
}
































/* Footer Section */
.footer_section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #050505;
  color: #00ff99;
  text-align: center;
  padding: 50px;
  font-family: "Courier New", monospace;
  border: 2px solid #00ff99;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ff99;
  animation: flicker 1.5s infinite alternate;
  margin: 50px 5% 5% 5%;
  padding: 80px 10%;

}


.footer {
  background: #050505;
  color: #00ff99;
  padding: 20px 0;
  text-align: center;
  font-family: 'Courier New', monospace;
  border-top: 2px solid #00ff99;
  position: relative;
  overflow: hidden;
  
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  
}
/* From Uiverse.io by wilsondesouza */ 

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin-top: 2%;
  
}

.followUs{
  font-size: 1.5rem;
  color: #00ff99;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #000000;
  background-color: #00ff99;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="twitter"] .filled,
.example-2 .icon-content a[data-social="twitter"] ~ .tooltip {
  background-color: black;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: black;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background-color: black;
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: black;
}

/* Glitch Effect */
.footer-text {
  position: relative;
  font-size: 14px;
  animation: footerglitch 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3% 0%;
  text-align: center;
  color: #cecece;
}

@keyframes footerglitch {
  0% {
    text-shadow: 2px 2px 0px #00ff99, -2px -2px 0px #464646;
  }
  50% {
    text-shadow: -2px -2px 0px #00ff99, 2px 2px 0px #00ff99;
  }
  100% {
    text-shadow: 2px 2px 0px #00ff99, -2px -2px 0px #00ff99;
  }
}
