body {
  font-family: 'Courier New', monospace;
  background: #000000;
  color: #00ff00;
  line-height: 1.6;
  padding: 20px;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1 {
  color: #00ff00;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 3em;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  margin-bottom: 40px;
}

.section {
  margin: 30px auto;
  max-width: 900px;
  background: rgba(45, 45, 45, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

h2 {
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-size: 1.8em;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00ff00;
  border-radius: 2px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #00ff00;
}

a {
  color: #00ff00;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff00;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #00aa00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.footer {
  text-align: center;
  margin-top: 60px;
  font-style: italic;
  font-size: 1.2em;
  color: #00ff00;
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}

.icon-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}

.icon-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5em;
  }
  .section {
    padding: 20px;
    margin: 20px 10px;
  }
  .icon-container {
    flex-direction: row;
    gap: 20px;
  }
  .icon-container img {
    width: 100px;
    height: 100px;
  }
}

.typing {
  border-right: 3px solid #00ff00;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: #00ff00; }
  51%, 100% { border-color: transparent; }
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
  width: 300px;
  height: 300px;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.5);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


