/* Global font settings */
* {
  font-family: "JetBrains Mono", "Courier New", monospace;
}
body {
  font-family: "JetBrains Mono", "Courier New", monospace;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} /* Mobile viewport fix */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
} /* Responsive typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "JetBrains Mono", "Courier New", monospace;
  line-height: 1.2;
}
h2 {
  position: relative;
  text-align: center;
  font-size: clamp(18px, 4vw, 30px);
  font-family: "JetBrains Mono", "Courier New", monospace;
  background: linear-gradient(to right, #a668ff, #00ffa4);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
} /* Mobile optimizations */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  h1 {
    font-size: clamp(20px, 5vw, 28px) !important;
  }
  h2 {
    font-size: clamp(16px, 4vw, 24px) !important;
  }
} /* Prevent horizontal scroll on mobile */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
} /* Touch targets for mobile */
@media (max-width: 768px) {
  button,
  a,
  [role="button"] {
    min-height: 44px;
    min-width: 44px;
  } /* Social icons mobile optimization */
  .fa {
    font-size: 1.5rem !important;
    line-height: 1 !important;
    display: block !important;
  }
} /* FontAwesome - ensure icons are visible */
.fa {
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
