footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(50, 200, 50, 0.1);
  font-size: 11px;
  color: rgba(50, 200, 50, 0.25);
}

footer a {
  color: rgba(50, 200, 50, 0.4);
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  color: rgb(50, 200, 50);
}
/* Gallery for app screenshots */
.screenshots-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  padding: 24px 0;
}

.screenshot-item {
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  transition: transform 0.2s;
}

.screenshot-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(50,200,50,0.15);
}

.screenshot-item img {
  width: 240px;
  height: 480px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}

.screenshot-desc {
  color: rgb(50, 200, 50);
  font-size: 15px;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Roboto Mono', monospace;
}

.screenshot-action-link {
  background-color: rgb(18, 18, 18);
  text-decoration: none;
  padding: 7px 12px 7px 12px;
  font-size: 12px;
  font-weight: bold;
  color:  rgb(50, 200, 50);
  border-radius: 10px;
  border: 1px solid rgb(50, 200, 50);
}
body {
  background-color: rgb(18, 18, 18);
  color: rgb(50, 200, 50);
  font-family: 'Roboto Mono', 'Fira Mono', 'Consolas', monospace;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
    margin-top: 15px;
  }

form input {
  padding: 8px;
  margin-bottom: 10px;
  font-family: 'Roboto Mono', 'Fira Mono', 'Consolas', monospace;
}

form button {
  padding: 10px;
  cursor: pointer;
  color: rgb(50, 200, 50);
  background-color: black;
  border: 2px solid rgb(50, 200, 50);
  border-radius: 10px;
  width: 100%;
  font-family: 'Roboto Mono', 'Fira Mono', 'Consolas', monospace;
}

.content-container {
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

p {
  color: rgb(10, 120, 10);
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

@keyframes pop {
  0%, 95%, 100% {
    opacity: 0;
  }
  96%, 98% {
    opacity: .2;
  }
}

.content-container h1 {
  font-size: 60px;
  font-weight: bolder;
  position: relative;
  animation: flicker 2.5s infinite;
}

.content-container h1::after {
  content: 'adla';
  position: absolute;
  left: 5px; /* horizontal offset */
  top: 5px;  /* vertical offset */
  color: greenyellow;
  z-index: -1;
  pointer-events: none;
  animation: pop 1.5s infinite;
}

.content-container h1::before {
  content: 'adla';
  position: absolute;
  left: -7px; /* horizontal offset */
  top: -7px;  /* vertical offset */
  color: greenyellow;
  z-index: -1;
  pointer-events: none;
  animation: pop 1.3s infinite;
}