/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  background: #0f181a;
  color: #00ff41;
  min-height: 100vh;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #0f181a 60%, #003300 100%);
  color: #00ff41;
  padding: 60px 0 30px 0;
  text-align: center;
  border-bottom: 2px solid #00ff41;
  box-shadow: 0 2px 24px #00ff4160;
}

header h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #00ff41, 0 0 2px #fff;
  letter-spacing: 2px;
}

header .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: #00ff41;
  color: #0f181a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: inherit;
  box-shadow: 0 0 12px #00ff41;
  transition: background 0.2s, color 0.2s;
}
header .btn:hover {
  background: #0f181a;
  color: #00ff41;
  border: 1px solid #00ff41;
}

.section {
  padding: 50px 0;
  background: rgba(15,24,26,0.95);
  border-bottom: 1px solid #003300;
}

.section.alt {
  background: rgba(0, 51, 0, 0.7);
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  box-shadow: 0 0 24px #00ff4130;
  padding: 24px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00ff41;
  text-shadow: 0 0 4px #00ff41;
  letter-spacing: 1px;
}

.info-list {
  margin: 0 auto 20px auto;
  text-align: center;
}

.info-list div {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #b6ffb6;
  border-left: 3px solid #00ff41;
  padding-left: 12px;
  background: rgba(0,51,0,0.15);
  border-radius: 4px;
  display: block;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 10px;
}

.social-links a {
  text-decoration: none;
  color: #00ff41;
  font-weight: bold;
  text-shadow: 0 0 4px #00ff41;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #fff;
}

footer {
  background: #0f181a;
  color: #00ff41;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  border-top: 2px solid #00ff41;
  box-shadow: 0 -2px 24px #00ff4160;
  letter-spacing: 1px;
}

/* Matrix digital rain effect */
.matrix-rain {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ul, li, .container, .info-list, .social-links {
  text-align: center;
}
ul.info-list, ul.social-links {
  display: inline-block;
  text-align: left;
  margin: 0 auto 20px auto;
}

a {
  color: #00ff41; /* Or any other color you prefer */
  text-decoration: none;
}