@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);
  }
}







































/* Hero Section */
/* From Uiverse.io by adamgiebl */ 
.spinner {
  width: 100px;
  height: 100px;
  scale: 5;
  --clr: #00ff99;
  --clr-alpha: #00ff9921;
  animation: spinner 7s infinite linear;
  transform-style: preserve-3d;
  z-index: -1000;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 1px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-50px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(50px);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: rotate(180deg) rotateX(180deg) rotateY(180deg);
  }

  100% {
    transform: rotate(360deg) rotateX(360deg) rotateY(360deg);
  }
}





















.hero {
  height: 100vh;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.hero-content {
  color: white;
  max-width: 80%;
}

.hero h1 {
  font-size: clamp(24px, 100vw, 80px); /* Minimum size: 24px, preferred size: 10vw, maximum size: 80px */
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: -1;
}
.glitch {
  position: relative;
  color: white;
  animation: glitch-animation 1.5s infinite;
  font-family: "Press Start 2P", cursive;
  z-index: 1; /* Ensure text is above everything */
  
}

.glitch:before,
.glitch:after {
  content: "Avoscide"; /* Set the same text for glitch effect */
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(117, 117, 117);
  z-index: -1;
  animation: glitch-animation 1.5s infinite;
  clip-path: inset(0 0 0 0);
}
@keyframes glitch-animation {
  0% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
  20% {
    clip-path: inset(0 50% 0 0);
    transform: translate(-10px, -10px);
  }
  40% {
    clip-path: inset(0 0 0 50%);
    transform: translate(10px, 10px);
  }
  60% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(-10px, -10px);
  }
  80% {
    clip-path: inset(0 50% 0 50%);
    transform: translate(10px, 10px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}
@keyframes glitch-animation {
  0% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    color: rgba(0, 255, 153, 0.3); /* Greenish, slightly transparent */
  }
  20% {
    clip-path: inset(0 50% 0 0);
    transform: translate(-10px, -10px);
    color: #00ff99c7; /* Solid green */
  }
  40% {
    clip-path: inset(0 0 0 50%);
    transform: translate(10px, 10px);
    color: #00cc77; /* Slightly darker green */
  }
  60% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(-10px, -10px);
    color: #00ff998f; /* Solid green */
  }
  80% {
    clip-path: inset(0 50% 0 50%);
    transform: translate(10px, 10px);
    color: #00cc77; /* Slightly darker green */
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    color: rgba(0, 255, 153, 0.3); /* Greenish, slightly transparent */
  }
}

.glitch:before {
  animation-delay: 0.1s;
}

.glitch:after {
  animation-delay: 0.2s;
}
.hero p {
  font-size: clamp(24px, 5vw, 80px); /* Minimum size: 24px, preferred size: 10vw, maximum size: 80px */
  margin: 10px 0;
  margin-top: 20px;
  font-family: "Big Shoulders Stencil Text", cursive;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff, #b3b3b3 40%, #4d4d4d 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.6),
    0px -2px 5px rgba(255, 255, 255, 0.4), 4px 4px 10px rgba(0, 0, 0, 0.7);
    ;
}


.tagline {
  font-size: 24px;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff; /* Brighter text for glow */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.2);
  animation: glow 1.5s infinite alternate;
  letter-spacing: 30%;
}

/* Optional: Add a glowing animation */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(0, 255, 153, 0.8), /* Greenish glow */
      0 0 10px rgba(0, 255, 153, 0.6), /* Greenish glow */
      0 0 15px rgba(0, 255, 153, 0.4); /* Greenish glow */
  }

  33% {
    text-shadow: 0 0 10px rgba(0, 255, 153, 0.8), /* Greenish glow */
      0 0 20px rgba(0, 255, 153, 0.6), /* Greenish glow */
      0 0 30px rgba(0, 255, 153, 0.4); /* Greenish glow */
  }

  66% {
    text-shadow: 0 0 10px rgba(0, 255, 153, 0.8), /* Greenish glow */
      0 0 20px rgba(0, 255, 153, 0.6), /* Greenish glow */
      0 0 30px rgba(0, 255, 153, 0.4); /* Greenish glow */
  }

  100% {
    text-shadow: 0 0 5px rgba(0, 255, 153, 0.8), /* Greenish glow */
      0 0 10px rgba(0, 255, 153, 0.6), /* Greenish glow */
      0 0 15px rgba(0, 255, 153, 0.4); /* Greenish glow */
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2; /* Ensure hero section is in front */
}

.hero-content {
  position: relative;
  z-index: 3; /* Ensure text is above everything */
}

























/* About Section */
.about-section {
  background: transparent;
  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: 5% 5% 5% 5%;
  padding: 80px 10%;
}

.about-section h2 {
  margin-top: 5%;
  font-size: 36px;
  font-family: "Orbitron", sans-serif;
  color: #00FF99;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-text {
  font-size: 20px;
  font-family: "Big Shoulders Stencil Text", cursive;
  font-style: italic;
  max-width: 70%;
  margin: 0 auto;
  color: #4fffb9;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: rgb(0, 255, 128);
  color: rgb(32, 32, 32);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
  margin-top: 2%;
  margin-bottom: 5%;
}

.btn:hover {
  background: rgba(0, 255, 128, 0.466);
  color: rgb(21, 255, 0);
  box-shadow: 0 0 10px rgb(0, 255, 128),
    0 0 20px rgb(0, 255, 128), 0 0 30px rgb(0, 255, 128);
  transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-section {
    padding: 10px 5%; /* Reduce padding for smaller screens */
  }

  .about-section h2 {
    font-size: 28px; /* Smaller heading on smaller screens */
  }

  .mission-text {
    font-size: 18px; /* Smaller text on smaller screens */
    max-width: 90%; /* Allow the text to take up more space */
  }

  .btn {
    font-size: 16px; /* Adjust button font size */
    padding: 8px 16px; /* Adjust padding for better fit */
  }
}

@media (max-width: 480px) {
  .about-section h2 {
    font-size: 24px; /* Even smaller heading for very small screens */
  }

  .mission-text {
    font-size: 16px; /* Reduce mission text size further */
    max-width: 95%; /* Allow even more space for the mission text */
  }

  .btn {
    font-size: 14px; /* Further reduce button font size */
    padding: 8px 12px; /* Adjust padding further */
  }
}


























/* Games Section */
.games {
  padding: 4rem;
  text-align: center;
  background-color: #0A0A0A;
}

.games h2 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
  color: #00FF99;
  margin-bottom: 2rem;
}

.game-card {
  display: inline-block;
  width: 45%;
  margin: 1rem;
  padding: 20px;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 0 10px #00FF00;
  transition: transform 0.3s ease;
  animation: gamecardGlitch 1.5s infinite;
}

@keyframes gamecardGlitch {
  0% {
    transform: translate(0);
    opacity: 1;
    filter: brightness(1);
  }
  15% {

    opacity: 0.9;
    filter: brightness(0.7);
  }
  30% {
    
    opacity: 1;
    filter: brightness(1.1);
  }
  45% {
    
    opacity: 0.85;
    filter: brightness(0.8);
  }
  60% {
    
    opacity: 1;
    filter: brightness(0.6);
  }
  75% {
    
    opacity: 0.9;
    filter: brightness(1);
  }
  90% {
    
    opacity: 0.85;
    filter: brightness(0.7);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}


.game-card img {
  width: 100%;
  border-radius: 8px;
}


.game-card h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem); /* Responsive font size */
  color: #00FF00;
  margin-top: 1rem;
}

.game-card p {
  font-size: 1rem;
  color: #00ff88;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .game-card {
    width: 90%; /* Make game cards stack vertically on small screens */
    margin: 1rem auto;
    padding: 15px; /* Reduce padding for better spacing */
  }

  .games {
    padding: 2rem; /* Reduce padding for smaller screens */
  }

  .games h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Smaller font size for header */
  }

  .game-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* Adjust font size for card titles */
  }
}

@media (max-width: 480px) {
  .game-card {
    width: 100%; /* Full width game cards on very small screens */
    padding: 10px;
  }

  .games {
    padding: 1.5rem; /* Even smaller padding for mobile */
  }

  .games h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem); /* Smaller font size for header */
  }

  .game-card h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem); /* Adjust title size for mobile */
  }
}
.disclaimer {
  font-size: 0.8rem;
  color: #00ff99;
  text-align: center;
  margin-top: 10px;
  opacity: 0.8;
}

















/* Newsletter Section */
.subscribe {
  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: 5% 5% 5% 5%;
  padding: 80px 10%;
}

.subscribe h2 {
  font-size: 3rem;
  color: #00FF99;
  margin-bottom: 2rem;
}

/* Hacker Input Container */
.hacker-input-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* Max width for larger screens */
  margin: 0 auto; /* Center the input field */
}

/* Hacker Input Styling */
.hacker-input {
  width: 100%;
  padding: 12px 15px;
  background: #000000;
  border: 2px solid #00ff00;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 10px #00ff00;
  transition: all 0.3s ease;
}

/* Placeholder styling */
.hacker-input::placeholder {
  color: #00cc00;
  opacity: 0.7;
}

/* Focus state with enhanced glow */
.hacker-input:focus {
  box-shadow:
    0 0 20px #00ff00,
    0 0 30px #00ff00;
  background: rgba(0, 255, 0, 0.05);
}

/* Label animation */
.hacker-label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #00ff00;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #00ff00;
}

/* Move label up and scale when input is focused or filled */
.hacker-input:focus + .hacker-label,
.hacker-input:not(:placeholder-shown) + .hacker-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background: transparent;
  padding: 0 5px;
}

/* Cursor blinking effect */
.hacker-input-container::after {
  content: "_";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00ff99;
  font-size: 20px;
  animation: blink 0.7s infinite;
}

/* Scanline effect across input */
.hacker-input-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 0, 0.3);
  animation: scanline 2s infinite linear;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes scanline {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* Digital glitch effect on hover */
.hacker-input:hover {
  animation: newsletterGlitch 0.5s infinite;
}

@keyframes newsletterGlitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-2px, 0);
  }
  80% {
    transform: translate(2px, 0);
  }
  100% {
    transform: translate(0);
  }
}

/* Responsive styling */
@media (max-width: 768px) {
  .subscribe {
    padding: 2rem; /* Reduce padding on smaller screens */
  }

  .subscribe h2 {
    font-size: 2rem; /* Smaller heading */
  }

  .hacker-input-container {
    width: 90%; /* Allow the input to take more space */
    max-width: 400px; /* Restrict max-width on small screens */
  }

  .hacker-input {
    font-size: 14px; /* Smaller input font */
    padding: 10px 12px; /* Adjust padding for smaller screens */
  }

  .hacker-input-container::after {
    font-size: 18px; /* Adjust blinking cursor size */
  }
}

@media (max-width: 480px) {
  .subscribe h2 {
    font-size: 1.5rem; /* Even smaller heading for very small screens */
  }

  .hacker-input {
    font-size: 12px; /* Further reduce input font size */
    padding: 8px 10px; /* Adjust padding */
  }

  .hacker-input-container::after {
    font-size: 16px; /* Adjust blinking cursor size */
  }
}


/* Newsletter Button Styling */
.subscribe-btn {
  background-color: #00FF99;
  color: #000000;
  padding: 12px 20px;
  font-size: 16px;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  border: 2px solid #00FF50;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {

  background-color: #00cc00;
  border-color: #00cc00;
  color: #ffffff;
  box-shadow: 0 0 10px #00ff00;
}

























/* 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;
  }
}
