@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #d9ffd3;
  font-family: "Share Tech Mono", monospace;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 40px;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(57, 255, 20, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 255, 20, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.5);
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 30px rgba(57, 255, 20, 0.18), inset 0 0 20px rgba(57, 255, 20, 0.08);
  backdrop-filter: blur(10px);
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(57, 255, 20, 0.04) 50%, transparent 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.3;
}
.banner h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14, 0 0 15px #39ff14, 0 0 30px #39ff14;
}
.banner p {
  color: #6dff57;
}

.banner-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6dff57;
  background: rgba(0, 0, 0, 0.45);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39ff14;
  box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

.accent {
  color: #6dff57;
  text-shadow: 0 0 8px #6dff57, 0 0 18px #39ff14;
}

.tagline {
  margin-top: 18px;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

.banner-status {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #39ff14;
}
.banner-status span {
  padding: 8px 14px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 8px rgba(57, 255, 20, 0.08), 0 0 10px rgba(57, 255, 20, 0.08);
}

.layout {
  display: grid;
  grid-template-columns: 2fr 320px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.content,
.content-r {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2), inset 0 0 12px rgba(57, 255, 20, 0.04);
}
.content h2,
.content-r h2 {
  color: #39ff14;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.card {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(57, 255, 20, 0.2);
}
.card h3 {
  color: #6dff57;
  margin-bottom: 10px;
}
.card p,
.card li {
  line-height: 1.7;
}
.card ul {
  padding-left: 20px;
}

.content-r {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: fit-content;
}

.site-link {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: #39ff14;
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.25s ease;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}
.site-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.5), 0 0 24px rgba(57, 255, 20, 0.2);
  background: rgba(57, 255, 20, 0.08);
}

.selfie-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  padding: 6px;
  border: 2px solid #39ff14;
  border-radius: 14px;
  background: #050505;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7), 0 0 18px rgba(57, 255, 20, 0.4), inset 0 0 10px rgba(57, 255, 20, 0.15);
  filter: contrast(1.05) brightness(1.02);
  transition: 0.3s ease;
}
.selfie-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.9), 0 0 30px rgba(57, 255, 20, 0.5), 0 0 60px rgba(57, 255, 20, 0.2);
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
  body {
    padding: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
