* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: #000;
  color: #e0ffe0;
  font-family: "Share Tech Mono", monospace;
}

.shadow-green {
  box-shadow: 0 0 13px #91f086;
}
#matrixCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.blinking-cursor {
  display: inline-block;
  width: 10px;
  height: 1em;
  background-color: #78c878;
  animation: blink 1s steps(2, start) infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.lead-xl {
  font-size: 1.4rem;
  max-width: 850px;
}

.tagline {
  font-size: 1.1rem;
  color: #b2ffb2;
  opacity: 0.7;
}
.accordion-button::after {
  display: none !important;
}

.accordion-button .arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

.accordion-item {
  border-radius: 0.75rem;
}

/* Respect logical text alignment */
.text-dir-start {
  text-align: start;
}

/* Auto-flip icon to the start of the line depending on LTR/RTL */
.icon-title-wrap {
  flex-direction: row;
}

[dir="rtl"] .icon-title-wrap {
  flex-direction: row-reverse;
  gap: 1rem;
}

.icon-dir-aware {
  flex-shrink: 0;
}

/* Logical text alignment */
.text-dir-start {
  text-align: start;
}

/* Logical margin for icon (left in LTR, right in RTL) */
.logical-icon-margin {
  margin-inline-start: 0.5rem; /* replaces ms-2 */
}
.accordion-button {
  text-align: start;
}
