@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
  background: #0a0a0a;
  color: #00ff00;
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.6;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #00ff00;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  position: relative;
  z-index: 1;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #00ff00;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
  }
  to {
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
  }
}

.title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #fff;
}

.subtitle {
  color: #00ff00;
  font-size: 1.2em;
}

.section {
  margin: 30px 0;
  padding: 20px;
  background: rgba(0, 255, 0, 0.05);
  border-radius: 8px;
  border-left: 3px solid #00ff00;
}

.section h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.skill-item {
  background: rgba(0, 255, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #00ff00;
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.channels a {
  color: #00ff00;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  padding: 10px;
  background: rgba(0, 255, 0, 0.05);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.channels a:hover {
  background: rgba(0, 255, 0, 0.1);
  transform: translateX(10px);
}

.quote {
  font-style: italic;
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  border-top: 1px solid #00ff00;
  border-bottom: 1px solid #00ff00;
}

.contact {
  text-align: center;
  margin-top: 30px;
}

.contact a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #00ff00;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact a:hover {
  background: #00ff00;
  color: #000;
}

/* Matrix rain effect */
#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
