@charset "UTF-8";
@import 'fontawesome-all.min.css';
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}
body {
  -ms-overflow-style: scrollbar;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: url("../../content/images/starsky.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  text-align: center;
  color: #ff8800;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 9998;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.08) 1px, rgba(255, 136, 0, 0.08) 2px);
  pointer-events: none;
  z-index: 9999;
  animation: scanlines 0.1s linear infinite;
}
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2px);
  }
}
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.99;
    filter: drop-shadow(0 0 1px rgba(255, 136, 0, 0));
    filter: drop-shadow(0 0 15px rgba(255, 136, 0, 0));
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
    filter: drop-shadow(0 0 1px rgba(255, 136, 0, 0.1));
    filter: drop-shadow(0 0 15px rgba(255, 136, 0, 0.46));
  }
}
/* Type */
body, input, select, textarea {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3);
}

a {
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  border-bottom: dotted 1px rgba(255, 136, 0, 0.6);
  color: #ff8800;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
a:hover {
  border-bottom-color: transparent;
  background-color: #ff8800;
  color: #000000;
  text-shadow: none;
}
a.special:not(.button) {
  text-decoration: none;
  border-bottom: 0;
  display: block;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.25em 0;
  text-transform: uppercase;
  position: relative;
}
a.special:not(.button):before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
a.special:not(.button):before {
  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-radius: 100%;
  border: solid 2px #ff8800;
  content: "\f105";
  display: inline-block;
  font-size: 1.25em;
  height: 2em;
  line-height: 1.75em;
  margin-right: 0.85em;
  text-align: center;
  text-indent: 0.15em;
  vertical-align: middle;
  width: 2em;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
a.special:not(.button):hover:before {
  background-color: rgba(255, 136, 0, 0.05);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.6);
}
a.special:not(.button):active:before {
  background-color: rgba(255, 136, 0, 0.1);
}

strong, b {
  color: #ff8800;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 0.2em 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.125em 0;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3);
  position: relative;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-weight: 400;
}
h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
  padding-bottom: 1em;
  border-bottom: solid 2px #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

h1 {
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: 1px;
}

h2 {
  font-size: 1em;
}

h3 {
  font-size: 0.8em;
}

h4 {
  font-size: 0.7em;
}

h5 {
  font-size: 0.7em;
}

h6 {
  font-size: 0.7em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

blockquote {
  border-left: solid 4px #ff8800;
  font-style: italic;
  margin: 0 0 0.25em 0;
  padding: 0.0625em 0 0.0625em 0.25em;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

code {
  background: rgba(255, 136, 0, 0.05);
  border-radius: 0px;
  border: solid 2px #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0 0.25em 0;
}
pre code {
  display: block;
  line-height: 1.75em;
  padding: 1em 1.5em;
  overflow-x: auto;
}

hr {
  border: 0;
  border-bottom: solid 2px #ff8800;
  margin: 0.3125em 0;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
hr.major {
  margin: 0.5em 0;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.terminal-text {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

.highlight-text {
  position: relative;
  transition: all 0.2s ease-in-out;
}
.highlight-text:hover {
  background-color: #ff8800;
  color: #000000;
  text-shadow: none;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}
.row > * {
  box-sizing: border-box;
}
.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}
.row.aln-left {
  justify-content: flex-start;
}
.row.aln-center {
  justify-content: center;
}
.row.aln-right {
  justify-content: flex-end;
}
.row.aln-top {
  align-items: flex-start;
}
.row.aln-middle {
  align-items: center;
}
.row.aln-bottom {
  align-items: flex-end;
}
.row > .imp {
  order: -1;
}
.row > .col-1 {
  width: 8.3333333333%;
}
.row > .off-1 {
  margin-left: 8.3333333333%;
}
.row > .col-2 {
  width: 16.6666666667%;
}
.row > .off-2 {
  margin-left: 16.6666666667%;
}
.row > .col-3 {
  width: 25%;
}
.row > .off-3 {
  margin-left: 25%;
}
.row > .col-4 {
  width: 33.3333333333%;
}
.row > .off-4 {
  margin-left: 33.3333333333%;
}
.row > .col-5 {
  width: 41.6666666667%;
}
.row > .off-5 {
  margin-left: 41.6666666667%;
}
.row > .col-6 {
  width: 50%;
}
.row > .off-6 {
  margin-left: 50%;
}
.row > .col-7 {
  width: 58.3333333333%;
}
.row > .off-7 {
  margin-left: 58.3333333333%;
}
.row > .col-8 {
  width: 66.6666666667%;
}
.row > .off-8 {
  margin-left: 66.6666666667%;
}
.row > .col-9 {
  width: 75%;
}
.row > .off-9 {
  margin-left: 75%;
}
.row > .col-10 {
  width: 83.3333333333%;
}
.row > .off-10 {
  margin-left: 83.3333333333%;
}
.row > .col-11 {
  width: 91.6666666667%;
}
.row > .off-11 {
  margin-left: 91.6666666667%;
}
.row > .col-12 {
  width: 100%;
}
.row > .off-12 {
  margin-left: 100%;
}
.row.gtr-0 {
  margin-top: 0;
  margin-left: 0em;
}
.row.gtr-0 > * {
  padding: 0 0 0 0em;
}
.row.gtr-0.gtr-uniform {
  margin-top: 0em;
}
.row.gtr-0.gtr-uniform > * {
  padding-top: 0em;
}
.row.gtr-25 {
  margin-top: 0;
  margin-left: -0.4375em;
}
.row.gtr-25 > * {
  padding: 0 0 0 0.4375em;
}
.row.gtr-25.gtr-uniform {
  margin-top: -0.4375em;
}
.row.gtr-25.gtr-uniform > * {
  padding-top: 0.4375em;
}
.row.gtr-50 {
  margin-top: 0;
  margin-left: -0.875em;
}
.row.gtr-50 > * {
  padding: 0 0 0 0.875em;
}
.row.gtr-50.gtr-uniform {
  margin-top: -0.875em;
}
.row.gtr-50.gtr-uniform > * {
  padding-top: 0.875em;
}
.row {
  margin-top: 0;
  margin-left: -1.75em;
}
.row > * {
  padding: 0 0 0 1.75em;
}
.row.gtr-uniform {
  margin-top: -1.75em;
}
.row.gtr-uniform > * {
  padding-top: 1.75em;
}
.row.gtr-150 {
  margin-top: 0;
  margin-left: -2.625em;
}
.row.gtr-150 > * {
  padding: 0 0 0 2.625em;
}
.row.gtr-150.gtr-uniform {
  margin-top: -2.625em;
}
.row.gtr-150.gtr-uniform > * {
  padding-top: 2.625em;
}
.row.gtr-200 {
  margin-top: 0;
  margin-left: -3.5em;
}
.row.gtr-200 > * {
  padding: 0 0 0 3.5em;
}
.row.gtr-200.gtr-uniform {
  margin-top: -3.5em;
}
.row.gtr-200.gtr-uniform > * {
  padding-top: 3.5em;
}

/* Section/Article */
section.special, article.special {
  text-align: center;
}

/* Form */
form {
  margin: 0 0 0.25em 0;
}
form > :last-child {
  margin-bottom: 0;
}
form > .fields {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 0.375em);
  margin: -0.1875em 0 0.25em -0.1875em;
}
form > .fields > .field {
  -moz-flex-grow: 0;
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 0.1875em 0 0 0.1875em;
  width: calc(100% - 0.1875em);
}
form > .fields > .field.half {
  width: calc(50% - 0.09375em);
}
form > .fields > .field.third {
  width: calc(33.3333333333% - 0.0625em);
}
form > .fields > .field.quarter {
  width: calc(25% - 0.046875em);
}

label {
  color: #ff8800;
  display: block;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.0875em 0;
  text-transform: uppercase;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: rgba(255, 136, 0, 0.05);
  border-radius: 0px;
  border: none;
  border: solid 2px #ff8800;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}
input[type=text]:invalid,
input[type=password]:invalid,
input[type=email]:invalid,
input[type=tel]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border-color: rgb(251.4045, 142.9003, 18.8955);
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23ff8800' /%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  height: 1.5em;
  padding-right: 1.5em;
  text-overflow: ellipsis;
}
select option {
  color: #ff8800;
  background: #000000;
}
select:focus::-ms-value {
  background-color: transparent;
}
select::-ms-expand {
  display: none;
}

input[type=text],
input[type=password],
input[type=email],
select {
  height: 1.5em;
}

textarea {
  padding: 0.75em 1em;
}

input[type=checkbox],
input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}
input[type=checkbox] + label,
input[type=radio] + label {
  text-decoration: none;
  color: #ff8800;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding-left: 1.65em;
  padding-right: 0.75em;
  position: relative;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  background: rgba(255, 136, 0, 0.05);
  border-radius: 0px;
  border: solid 2px #ff8800;
  content: "";
  display: inline-block;
  font-size: 0.8em;
  height: 1.125em;
  left: 0;
  line-height: 1.125em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 1.125em;
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
  background: #ff8800;
  border-color: #ff8800;
  content: "\f00c";
  color: #000000;
}
input[type=checkbox]:focus + label:before,
input[type=radio]:focus + label:before {
  border-color: #ff8800;
}

input[type=checkbox] + label:before {
  border-radius: 0px;
}

input[type=radio] + label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  color: rgba(255, 136, 0, 0.6) !important;
  opacity: 1;
}

:-moz-placeholder {
  color: rgba(255, 136, 0, 0.6) !important;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(255, 136, 0, 0.6) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(255, 136, 0, 0.6) !important;
  opacity: 1;
}

/* Box */
.box {
  border-radius: 0px;
  border: solid 2px #ff8800;
  margin-bottom: 0.25em;
  padding: 1.5em;
}
.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}
.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}
.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.icon > .label {
  display: none;
}
.icon:before {
  line-height: inherit;
}
.icon.solid:before {
  font-weight: 900;
}
.icon.brands:before {
  font-family: "Font Awesome 5 Brands";
}

/* Image */
.image {
  border-radius: 0px;
  border: 0;
  display: inline-block;
  position: relative;
}
.image img {
  border-radius: 0px;
  display: block;
}
.image.left, .image.right {
  max-width: 40%;
}
.image.left img, .image.right img {
  width: 100%;
}
.image.left {
  float: left;
  padding: 0 1.5em 1em 0;
  top: 0.25em;
}
.image.right {
  float: right;
  padding: 0 0 1em 1.5em;
  top: 0.25em;
}
.image.fit {
  display: block;
  margin: 0 0 0.25em 0;
  width: 100%;
}
.image.fit img {
  width: 100%;
}
.image.main {
  display: block;
  margin: 0 0 0.375em 0;
  width: 100%;
}
.image.main img {
  width: 100%;
}

/* List */
ol {
  list-style: decimal;
  margin: 0 0 0.25em 0;
  padding-left: 1.25em;
}
ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 0.25em 0;
  padding-left: 1em;
}
ul li {
  padding-left: 0.5em;
}
ul.alt {
  list-style: none;
  padding-left: 0;
}
ul.alt li {
  border-top: solid 1px #ff8800;
  padding: 0.5em 0;
}
ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

dl {
  margin: 0 0 0.25em 0;
}
dl dt {
  display: block;
  font-weight: 700;
  margin: 0 0 0.125em 0;
}
dl dd {
  margin-left: 0.25em;
}

/* Actions */
ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -0.125em;
  padding-left: 0;
}
ul.actions li {
  padding: 0 0 0 0.125em;
  vertical-align: middle;
}
ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}
ul.actions.special li:first-child {
  padding-left: 0;
}
ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}
ul.actions.stacked li {
  padding: 0.1625em 0 0 0;
}
ul.actions.stacked li:first-child {
  padding-top: 0;
}
ul.actions.fit {
  width: calc(100% + 0.125em);
}
ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}
ul.actions.fit li > * {
  width: 100%;
}
ul.actions.fit.stacked {
  width: 100%;
}

/* Icons */
ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}
ul.icons li:last-child {
  padding-right: 0;
}
ul.icons li .icon:before {
  font-size: 1.25em;
}

/* Contact */
ul.contact {
  list-style: none;
  padding: 0;
}
ul.contact li {
  text-decoration: none;
  margin: 0.3125em 0 0 0;
  padding: 0 0 0 3.25em;
  position: relative;
}
ul.contact li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
ul.contact li:before {
  border-radius: 100%;
  border: solid 2px #ff8800;
  display: inline-block;
  font-size: 0.8em;
  height: 2.5em;
  left: 0;
  line-height: 2.35em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2.5em;
}
ul.contact li:first-child {
  margin-top: 0;
}

/* Pagination */
ul.pagination {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
ul.pagination li {
  display: inline-block;
  padding-left: 0;
  vertical-align: middle;
}
ul.pagination li > .page {
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-bottom: 0;
  border-radius: 0px;
  display: inline-block;
  height: 1.5em;
  line-height: 1.5em;
  margin: 0 0.125em;
  min-width: 1.5em;
  padding: 0 0.5em;
  text-align: center;
}
ul.pagination li > .page:hover {
  background-color: rgba(255, 136, 0, 0.05);
}
ul.pagination li > .page.active {
  background-color: #ff8800;
}
ul.pagination li:first-child {
  padding-right: 0.75em;
}
ul.pagination li:last-child {
  padding-left: 0.75em;
}

/* Table */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  margin: 0 0 0.125em 0;
  width: 100%;
}
table tbody tr {
  border: solid 1px #ff8800;
  border-left: 0;
  border-right: 0;
}
table tbody tr:nth-child(2n+1) {
  background-color: rgba(255, 136, 0, 0.05);
}
table td {
  padding: 0.35em 0.5em;
  font-size: 0.95em;
}
table th {
  color: #ff8800;
  font-size: 0.8em;
  font-weight: 700;
  padding: 0 0.5em 0.5em 0.5em;
  text-align: left;
}
table thead {
  border-bottom: solid 2px #ff8800;
}
table tfoot {
  border-top: solid 2px #ff8800;
}
table.alt {
  border-collapse: separate;
}
table.alt tbody tr td {
  border: solid 1px #ff8800;
  border-left-width: 0;
  border-top-width: 0;
}
table.alt tbody tr td:first-child {
  border-left-width: 1px;
}
table.alt tbody tr:first-child td {
  border-top-width: 1px;
}
table.alt thead {
  border-bottom: 0;
}
table.alt tfoot {
  border-top: 0;
}

/* Button */
input[type=submit],
input[type=reset],
input[type=button],
button,
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(45deg, #0a0a0a, #000000);
  border-radius: 0px;
  border: 2px solid #ff8800;
  color: #ff8800 !important;
  cursor: pointer;
  display: inline-block;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
  height: 3.75em;
  letter-spacing: 0.05em;
  line-height: 3.75em;
  padding: 0 2.25em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.1);
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover,
.button:hover {
  background: linear-gradient(45deg, #ff8800, #ff8800);
  border-color: #ff8800;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.6), inset 0 0 20px rgba(255, 0, 102, 0.2);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(255, 136, 0, 0.6);
}
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active,
button:active,
.button:active {
  transform: translateY(0);
}
input[type=submit].icon:before,
input[type=reset].icon:before,
input[type=button].icon:before,
button.icon:before,
.button.icon:before {
  margin-right: 0.5em;
  color: rgba(255, 136, 0, 0.6);
}
input[type=submit].primary,
input[type=reset].primary,
input[type=button].primary,
button.primary,
.button.primary {
  background: linear-gradient(45deg, #ff8800, #ff8800);
  border-color: #ff8800;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3), inset 0 0 15px rgba(0, 255, 65, 0.2);
}
input[type=submit].primary:hover,
input[type=reset].primary:hover,
input[type=button].primary:hover,
button.primary:hover,
.button.primary:hover {
  background: linear-gradient(45deg, #ff8800, #ff8800);
  border-color: #ff8800;
  box-shadow: 0 0 25px rgba(255, 136, 0, 0.6), inset 0 0 25px rgba(255, 0, 102, 0.3);
}
input[type=submit].primary:active,
input[type=reset].primary:active,
input[type=button].primary:active,
button.primary:active,
.button.primary:active {
  background: linear-gradient(45deg, rgb(229.5, 122.4, 0), rgb(229.5, 122.4, 0));
}
input[type=submit].primary.icon:before,
input[type=reset].primary.icon:before,
input[type=button].primary.icon:before,
button.primary.icon:before,
.button.primary.icon:before {
  color: #ff8800;
}
input[type=submit].fit,
input[type=reset].fit,
input[type=button].fit,
button.fit,
.button.fit {
  width: 100%;
}
input[type=submit].small,
input[type=reset].small,
input[type=button].small,
button.small,
.button.small {
  font-size: 0.6em;
}
input[type=submit].large,
input[type=reset].large,
input[type=button].large,
button.large,
.button.large {
  font-size: 1em;
}
input[type=submit].disabled, input[type=submit]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=button].disabled,
input[type=button]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
input[type=submit]::after,
input[type=reset]::after,
input[type=button]::after,
button::after,
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 0, 102, 0.1) 50%, transparent 60%), linear-gradient(-45deg, transparent 40%, rgba(255, 0, 102, 0.1) 50%, transparent 60%);
  pointer-events: none;
  animation: crack 4s ease-in-out infinite;
}

@keyframes crack {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
/* Features */
.features {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 0 0.25em 0;
  gap: 0.5em;
}

/* Features Grid */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1em !important;
  margin: 0 0 0.25em 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.features article {
  padding: 0.25em 0.25em 0.1em 0.25em;
  background: #000000;
  border: 1px solid #ff8800;
  border-radius: 0;
  margin: 0;
  width: calc(33.333% - 0.33em);
  flex: 1;
  position: relative;
  overflow: hidden;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
.features article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.05) 1px, rgba(255, 136, 0, 0.05) 2px);
  pointer-events: none;
  z-index: 10;
  animation: scanlines 0.1s linear infinite;
}
.features article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 5;
}
.features article:nth-child(2n) {
  margin-right: 0;
}
.features article > * {
  position: relative;
  z-index: 15;
}
.features article .image {
  border-radius: 0;
  display: block;
  margin-bottom: 0.25em;
  margin-left: -0.25em;
  margin-top: -0.25em;
  position: relative;
  width: calc(100% + 0.5em);
  border: 1px solid #ff8800;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
.features article .image img {
  border-radius: 0;
  width: 100%;
  display: block;
}
.features article h3 {
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-weight: 700;
}
.features article p {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3);
}
.features article a {
  color: #ff8800;
  text-decoration: none;
  border-bottom: 1px solid #ff8800;
  transition: all 0.2s ease-in-out;
  font-family: "CaskaydiaMono", "Courier New", monospace;
}
.features article a:hover {
  background-color: #ff8800;
  color: #000000;
  border-bottom-color: #ff8800;
  text-shadow: none;
}

/* Features Grid Articles */
.features-grid article {
  padding: 0.25em 0.25em 0.1em 0.25em;
  background: #000000;
  border: 1px solid #ff8800;
  border-radius: 0;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
  min-height: 200px;
  width: auto !important;
  flex: none !important;
  display: block !important;
}

.features-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.05) 1px, rgba(255, 136, 0, 0.05) 2px);
  pointer-events: none;
  z-index: 10;
  animation: scanlines 0.1s linear infinite;
}

.features-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 5;
}

.features-grid article > * {
  position: relative;
  z-index: 15;
}

.features-grid article .image {
  border-radius: 0;
  display: block;
  margin-bottom: 0.25em;
  margin-left: -0.25em;
  margin-top: -0.25em;
  position: relative;
  width: calc(100% + 0.5em);
  height: 120px;
  border: 1px solid #ff8800;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  overflow: hidden;
}

.features-grid article .image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.features-grid article h3 {
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-weight: 700;
}

.features-grid article p {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3);
}

.features-grid article a {
  color: #ff8800;
  text-decoration: none;
  border-bottom: 1px solid #ff8800;
  transition: all 0.2s ease-in-out;
  font-family: "CaskaydiaMono", "Courier New", monospace;
}

.features-grid article a:hover {
  background-color: #ff8800;
  color: #000000;
  border-bottom-color: #ff8800;
  text-shadow: none;
}

/* Terminal Elements */
.terminal-container {
  background: #000000;
  border: 1px solid #ff8800;
  padding: 0.5em;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  line-height: 1.2;
  color: #ff8800;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.terminal-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.03) 1px, rgba(255, 136, 0, 0.03) 2px);
  pointer-events: none;
  z-index: 10;
  animation: scanlines 0.3s linear infinite;
}
.terminal-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 5;
}
.terminal-container > * {
  position: relative;
  z-index: 15;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1px);
  }
}
.terminal-prompt {
  color: #ff8800;
  font-weight: 700;
}
.terminal-prompt::before {
  content: "> ";
  color: #ff8800;
}

.system-status {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin: 0.25em;
  border: 1px solid #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  background: rgba(255, 136, 0, 0.05);
}
.system-status.online {
  color: #00ff00;
  border-color: #00ff00;
}
.system-status.offline {
  color: #ff0000;
  border-color: #ff0000;
}
.system-status.warning {
  color: #ffff00;
  border-color: #ffff00;
}

.registration-counter {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 1.2em;
  font-weight: 700;
  color: #ff8800;
  text-align: center;
  margin: 1em 0;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
.registration-counter .count {
  color: #ff8800;
  font-size: 1.5em;
}

.progress-bar {
  width: 100%;
  height: 1em;
  background: #0a0a0a;
  border: 1px solid #ff8800;
  position: relative;
  overflow: hidden;
}
.progress-bar .progress-fill {
  height: 100%;
  background: #ff8800;
  transition: width 0.3s ease;
  position: relative;
}
.progress-bar .progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.highlight-text {
  position: relative;
  transition: all 0.2s ease-in-out;
}
.highlight-text:hover {
  background-color: #ff8800;
  color: #000000;
  text-shadow: none;
}

.terminal-link {
  color: #ff8800;
  text-decoration: none;
  border-bottom: 1px solid #ff8800;
  transition: all 0.2s ease-in-out;
}
.terminal-link:hover {
  background-color: #ff8800;
  color: #000000;
  border-bottom-color: #ff8800;
  text-shadow: none;
}

.system-message {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.9em;
  color: #ff8800;
  margin: 0.5em 0;
  padding: 0.5em;
  border-left: 3px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
}
.system-message.error {
  border-left-color: #ff0000;
  color: #ff0000;
}
.system-message.warning {
  border-left-color: #ffff00;
  color: #ffff00;
}
.system-message.success {
  border-left-color: #00ff00;
  color: #00ff00;
}

/* Scrolling Banner */
.scrolling-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: #000000;
  border-bottom: 1px solid #ff8800;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  z-index: 10001;
  overflow: hidden;
  font-family: "ProceduralGrapheme", "AspectWaltz", "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  line-height: 2em;
  -webkit-overflow-scrolling: touch;
}
.scrolling-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.05) 1px, rgba(255, 136, 0, 0.05) 2px);
  pointer-events: none;
  z-index: 1;
  animation: scanlines 0.1s linear infinite;
}
.scrolling-banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-banner 30s linear infinite;
  z-index: 2;
}
.scrolling-banner .banner-content .banner-item {
  display: inline-block;
  padding: 0 2em;
  color: #ff8800;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3);
  border-right: 1px solid #ff8800;
  transition: all 0.2s ease-in-out;
}
.scrolling-banner .banner-content .banner-item:hover {
  background: #ff8800;
  color: #000000;
  text-shadow: none;
}
.scrolling-banner .banner-content .banner-item:last-child {
  border-right: none;
}
.scrolling-banner .banner-content .banner-item .status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5em;
  background: #00ff00;
  animation: pulse 2s infinite;
}
.scrolling-banner .banner-content .banner-item .status-indicator.warning {
  background: #ffff00;
}
.scrolling-banner .banner-content .banner-item .status-indicator.error {
  background: #ff0000;
}
.scrolling-banner .banner-content .banner-item .timestamp {
  color: rgba(255, 136, 0, 0.6);
  font-size: 0.9em;
  margin-left: 0.5em;
}
.scrolling-banner:hover .banner-content {
  animation-play-state: paused;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* CV Terminal Sections */
.terminal-section {
  margin-bottom: 2em;
}
.terminal-section h3.major {
  border-bottom: 2px solid #ff8800;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
.terminal-section .terminal-container {
  background: #000000;
  border: 1px solid #ff8800;
  border-radius: 0;
  padding: 1em;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  position: relative;
}
.terminal-section .terminal-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.02) 1px, rgba(255, 136, 0, 0.02) 2px);
  pointer-events: none;
}
.terminal-section .terminal-prompt {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.9em;
  margin-bottom: 0.5em;
  position: relative;
  z-index: 1;
}
.terminal-section .terminal-prompt::before {
  content: "> ";
  color: #ff8800;
}
.terminal-section .system-message {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  color: #ff8800;
  padding: 0.25em 0.5em;
  border-left: 2px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
.terminal-section .system-message.success {
  border-left-color: #00ff00;
  color: #00ff00;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1em;
  position: relative;
  z-index: 1;
}
.contact-grid .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em;
  border: 1px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  transition: all 0.2s ease-in-out;
  min-height: 2.5em;
}
.contact-grid .contact-item:hover {
  background: #ff8800;
  color: #000000;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
.contact-grid .contact-item .icon {
  color: #ff8800;
  font-size: 1.2em;
  min-width: 1.2em;
}
.contact-grid .contact-item a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease-in-out;
  word-break: break-all;
  overflow-wrap: break-word;
}
.contact-grid .contact-item a:hover {
  border-bottom-color: currentColor;
}

/* Experience Items */
.experience-item {
  margin-bottom: 2em;
  padding: 1em;
  border: 1px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  position: relative;
  z-index: 1;
}
.experience-item:last-child {
  margin-bottom: 0;
}
.experience-item h4 {
  color: #ff8800;
  font-size: 1.1em;
  margin: 0 0 0.5em 0;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
.experience-item .experience-meta {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  margin-bottom: 1em;
  font-weight: 700;
}
.experience-item ul {
  margin: 0;
  padding-left: 1.5em;
}
.experience-item ul li {
  color: #ff8800;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.experience-item ul li:last-child {
  margin-bottom: 0;
}

/* Education Items */
.education-item {
  margin-bottom: 1.5em;
  padding: 1em;
  border: 1px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  position: relative;
  z-index: 1;
}
.education-item:last-child {
  margin-bottom: 0;
}
.education-item h4 {
  color: #ff8800;
  font-size: 1em;
  margin: 0 0 0.5em 0;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
.education-item .education-meta {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
}

/* Publication Items */
.publication-item {
  margin-bottom: 1.5em;
  padding: 1em;
  border: 1px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.publication-item:last-child {
  margin-bottom: 0;
}
.publication-item .pub-number {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-weight: 700;
  font-size: 0.9em;
}
.publication-item .pub-authors {
  color: #ff8800;
  font-size: 0.9em;
  font-style: italic;
}
.publication-item .pub-title {
  color: #ff8800;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3);
}
.publication-item .pub-journal {
  color: #ff8800;
  font-size: 0.9em;
}
.publication-item .pub-status {
  color: #ff8800;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
  position: relative;
  z-index: 1;
}
.skills-grid .skill-category {
  padding: 1em;
  border: 1px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
}
.skills-grid .skill-category h4 {
  color: #ff8800;
  font-size: 1em;
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
.skills-grid .skill-category ul {
  margin: 0;
  padding-left: 1.5em;
}
.skills-grid .skill-category ul li {
  color: #ff8800;
  margin-bottom: 0.5em;
  font-size: 0.9em;
  line-height: 1.3;
}
.skills-grid .skill-category ul li:last-child {
  margin-bottom: 0;
}

/* Enhanced Code Block Styles for Software Articles - VS Code Inspired */
.code-block {
  background: #1e1e1e !important;
  border: 1px solid #3c3c3c !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  margin: 1.5em 0;
  overflow: hidden;
  position: relative;
  font-family: "CaskaydiaMono", "Consolas", "Monaco", "Courier New", monospace;
}
.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007acc, #1e90ff, #007acc);
  opacity: 0.8;
}
.code-block pre {
  margin: 0 !important;
  padding: 1.5em !important;
  background: transparent !important;
  font-size: 0.9em;
  line-height: 1.8 !important;
  overflow-x: auto;
  position: relative;
  text-align: left;
  white-space: pre;
  word-wrap: normal;
}
.code-block pre code {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: #d4d4d4 !important;
  text-shadow: none !important;
  font-family: inherit;
  font-size: 0.95em;
  font-weight: normal;
}
.code-block .code-header {
  background: #2d2d30;
  border-bottom: 1px solid #3c3c3c;
  padding: 0.75em 1.5em;
  font-family: "Segoe UI", "Arial", sans-serif;
  font-size: 0.85em;
  color: #cccccc;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.code-block .code-header::before {
  content: "● ● ●";
  color: #ff5f56;
  margin-right: 0.5em;
  font-size: 0.8em;
}
.code-block .code-header::after {
  content: "";
  background: transparent;
  color: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0;
  font-weight: normal;
}
.code-block .language-tag {
  background: #007acc;
  color: #ffffff;
  padding: 0.2em 0.6em;
  border-radius: 3px;
  font-size: 0.75em;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.code-block .keyword {
  color: #569cd6 !important;
  font-weight: normal;
  text-shadow: none !important;
}
.code-block .string {
  color: #ce9178 !important;
  text-shadow: none !important;
}
.code-block .comment {
  color: #6a9955 !important;
  font-style: normal;
  text-shadow: none !important;
}
.code-block .function {
  color: #dcdcaa !important;
  text-shadow: none !important;
}
.code-block .number {
  color: #b5cea8 !important;
  text-shadow: none !important;
}
.code-block .operator {
  color: #d4d4d4 !important;
  text-shadow: none !important;
}
.code-block .class {
  color: #4ec9b0 !important;
  text-shadow: none !important;
}
.code-block .variable {
  color: #9cdcfe !important;
  text-shadow: none !important;
}
.code-block .type {
  color: #4ec9b0 !important;
  text-shadow: none !important;
}
.code-block .preprocessor {
  color: #c586c0 !important;
  text-shadow: none !important;
}
.code-block .constant {
  color: #4fc1ff !important;
  text-shadow: none !important;
}
.code-block .punctuation {
  color: #d4d4d4 !important;
  text-shadow: none !important;
}
.code-block .line-numbers {
  background: #252526;
  border-right: 1px solid #3c3c3c;
  color: #858585;
  font-size: 0.85em;
  padding: 1.5em 0.5em;
  text-align: right;
  user-select: none;
  min-width: 3em;
}

.inline-code {
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  padding: 0.2em 0.4em;
  font-family: "CaskaydiaMono", "Consolas", "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  color: #333333;
  text-shadow: none;
  box-shadow: none;
}

@keyframes code-glow {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 736px) {
  .code-block pre {
    padding: 1em;
    font-size: 0.8em;
  }
  .code-block .code-header {
    padding: 0.5em 1em;
    font-size: 0.8em;
  }
  .code-block pre code {
    font-size: 0.85em;
  }
  .code-block .line-numbers {
    padding: 1em 0.3em;
    font-size: 0.75em;
    min-width: 2.5em;
  }
  
  /* Features Grid Mobile */
.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
}

/* Game Play Container */
.game-play-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.4);
}

.game-preview {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.game-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2em;
}

.game-preview:hover .play-overlay {
  opacity: 1;
}

.play-overlay h3 {
  color: #ff8800;
  margin: 0 0 0.5em 0;
  font-size: 1.5em;
}

.play-overlay p {
  color: #ffffff;
  margin: 0 0 1.5em 0;
  font-size: 1em;
}

.play-button {
  background: #ff8800;
  color: #000000;
  border: 2px solid #ff8800;
  padding: 0.75em 1.5em;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.play-button:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: scale(1.05);
}

.play-button i {
  font-size: 1.2em;
}

/* Game Play Mobile */
@media screen and (max-width: 736px) {
  .game-play-container {
    margin: 1em auto;
    max-width: 100%;
  }
  
  .game-preview {
    height: 300px;
  }
  
  .play-overlay {
    padding: 1em;
  }
  
  .play-overlay h3 {
    font-size: 1.3em;
  }
  
  .play-overlay p {
    font-size: 0.9em;
  }
  
  .play-button {
    font-size: 1em;
    padding: 0.6em 1.2em;
  }
}
  
  .features-grid article .image {
    height: 100px;
  }
  
  /* Medium screens */
  @media screen and (max-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Small screens */
  @media screen and (max-width: 480px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .features-grid article .image {
      height: 150px;
    }
  }
}
/* Enhanced Article Content Styles for Better Readability */
.article-content {
  text-align: left !important;
}
.article-content p {
  line-height: 1.6 !important;
  margin-bottom: 1.2em !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
  font-size: 1em;
  color: #ff8800;
  text-align: left !important;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  line-height: 1.3 !important;
  margin-bottom: 0.8em !important;
  margin-top: 1.5em !important;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3) !important;
}
.article-content ul, .article-content ol {
  line-height: 1.6 !important;
  margin-bottom: 1.2em !important;
  padding-left: 1.5em !important;
  text-align: left !important;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 0.5em !important;
  line-height: 1.6 !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
  text-align: left !important;
}
.article-content .table-wrapper {
  margin-bottom: 1.5em !important;
}
.article-content .table-wrapper table {
  line-height: 1.4 !important;
}
.article-content .table-wrapper table th, .article-content .table-wrapper table td {
  padding: 0.75em 1em !important;
  line-height: 1.4 !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
}
.article-content blockquote {
  line-height: 1.6 !important;
  margin: 1.5em 0 !important;
  padding: 1em 1.5em !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
}
.article-content section {
  margin-bottom: 2em !important;
}
.article-content section:last-child {
  margin-bottom: 0 !important;
}
.article-content a {
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3) !important;
}
.article-content a:hover {
  text-shadow: none !important;
  color: #000000 !important;
}
.article-content strong, .article-content b {
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3) !important;
}
.article-content code:not(.code-block code) {
  line-height: 1.4 !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
}

.wrapper .inner {
  line-height: 1.6 !important;
  text-align: left !important;
}
.wrapper .inner p {
  line-height: 1.6 !important;
  margin-bottom: 1.2em !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
  text-align: left !important;
}
.wrapper .inner ul, .wrapper .inner ol {
  line-height: 1.6 !important;
  margin-bottom: 1.2em !important;
  text-align: left !important;
}
.wrapper .inner ul li, .wrapper .inner ol li {
  margin-bottom: 0.5em !important;
  line-height: 1.6 !important;
  text-shadow: 0 0 3px rgba(255, 136, 0, 0.3) !important;
  text-align: left !important;
}
.wrapper .inner h1, .wrapper .inner h2, .wrapper .inner h3, .wrapper .inner h4, .wrapper .inner h5, .wrapper .inner h6 {
  line-height: 1.3 !important;
  margin-bottom: 0.8em !important;
  margin-top: 1.5em !important;
  text-shadow: 0 0 5px rgba(255, 136, 0, 0.3) !important;
}

@media screen and (max-width: 736px) {
  .article-content p, .article-content ul, .article-content ol,
  .wrapper .inner p,
  .wrapper .inner ul,
  .wrapper .inner ol {
    line-height: 1.7 !important;
    text-align: left !important;
  }
  .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6,
  .wrapper .inner h1,
  .wrapper .inner h2,
  .wrapper .inner h3,
  .wrapper .inner h4,
  .wrapper .inner h5,
  .wrapper .inner h6 {
    line-height: 1.4 !important;
  }
}
.wrapper .inner section,
.wrapper .inner article,
.wrapper .inner .content {
  text-align: left !important;
}
.wrapper .inner section p, .wrapper .inner section ul, .wrapper .inner section ol, .wrapper .inner section li, .wrapper .inner section blockquote, .wrapper .inner section table,
.wrapper .inner article p,
.wrapper .inner article ul,
.wrapper .inner article ol,
.wrapper .inner article li,
.wrapper .inner article blockquote,
.wrapper .inner article table,
.wrapper .inner .content p,
.wrapper .inner .content ul,
.wrapper .inner .content ol,
.wrapper .inner .content li,
.wrapper .inner .content blockquote,
.wrapper .inner .content table {
  text-align: left !important;
}

.wrapper header .inner h2 {
  margin-bottom: 0.5em !important;
}

.wrapper .inner {
  margin-left: 4em !important;
  padding-left: 1em !important;
  margin-top: 3em !important;
  padding-top: 2em !important;
}
@media screen and (max-width: 736px) {
  .wrapper .inner {
    margin-left: 2em !important;
    padding-left: 0.5em !important;
    margin-top: 2em !important;
    padding-top: 1em !important;
  }
}

#page-wrapper .inner {
  margin-left: 4em !important;
  padding-left: 1em !important;
  margin-top: 3em !important;
  padding-top: 2em !important;
}
@media screen and (max-width: 736px) {
  #page-wrapper .inner {
    margin-left: 2em !important;
    padding-left: 0.5em !important;
    margin-top: 2em !important;
    padding-top: 1em !important;
  }
}

/* Header */
#header {
  -moz-transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background: rgba(10, 10, 10, 0.9);
  height: 3.5em;
  left: 0;
  line-height: 3.5em;
  padding: 0 1.25em;
  position: fixed;
  top: 2.5em;
  width: 100%;
  z-index: 10000;
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
#header h1 {
  -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s;
  -ms-transition: opacity 0.2s ease-in-out, visibility 0.2s;
  transition: opacity 0.2s ease-in-out, visibility 0.2s;
  border-bottom: 0;
  font-size: 0.8em;
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
#header h1 a {
  border: 0;
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
#header h1 a:hover {
  color: #000000;
  text-shadow: 0 0 20px rgba(255, 136, 0, 0.6);
}
#header nav {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 700;
  height: 3em;
  letter-spacing: 0.05em;
  line-height: 3em;
  position: absolute;
  right: 0.7em;
  text-transform: uppercase;
  top: 0.7em;
}
#header nav a {
  border: 0;
  display: inline-block;
  padding: 0 1em;
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  transition: all 0.2s ease-in-out;
}
#header nav a:before {
  float: right;
  margin-left: 0.75em;
}
#header nav a[href="#menu"] {
  text-decoration: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0px;
  border: 2px solid #ff8800;
  padding: 0 1.35em;
  background: linear-gradient(45deg, #0a0a0a, #000000);
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.1);
}
#header nav a[href="#menu"]:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#header nav a[href="#menu"]:before {
  content: "\f0c9";
  line-height: inherit;
}
#header nav a[href="#menu"]:hover {
  background: #ff8800;
  color: #000000;
  border-color: #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.6), inset 0 0 20px rgba(0, 255, 65, 0.2);
  text-shadow: none;
  transform: translateY(-1px);
}
#header nav a[href="#menu"]:active {
  transform: translateY(0);
}
#header.alt {
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
#header.alt h1 {
  opacity: 0;
  visibility: hidden;
}

/* Menu */
#page-wrapper {
  -moz-transition: -moz-filter 0.25s ease;
  -webkit-transition: -webkit-filter 0.25s ease;
  -ms-transition: -ms-filter 0.25s ease;
  transition: filter 0.25s ease;
}

#menu {
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  pointer-events: none;
  -moz-transition: opacity 0.35s ease, visibility 0.35s;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s;
  -ms-transition: opacity 0.35s ease, visibility 0.35s;
  transition: opacity 0.35s ease, visibility 0.35s;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  cursor: default;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  text-align: center;
  top: 0;
  visibility: hidden;
  width: 100%;
}
#menu .inner {
  padding: 2.5em 1.5em 2.25em 1.5em;
  -moz-transform: translateY(0.5em);
  -webkit-transform: translateY(0.5em);
  -ms-transform: translateY(0.5em);
  transform: translateY(0.5em);
  -moz-transition: opacity 0.35s ease, -moz-transform 0.35s ease;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  -ms-transition: opacity 0.35s ease, -ms-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  -webkit-overflow-scrolling: touch;
  background: #000000;
  border: 2px solid #ff8800;
  border-radius: 0px;
  display: block;
  max-width: 100%;
  opacity: 0;
  position: relative;
  width: 18em;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
#menu h2 {
  border-bottom: solid 2px #ff8800;
  padding-bottom: 1em;
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
#menu .close {
  background-image: url("images/close.svg");
  background-position: 75% 25%;
  background-repeat: no-repeat;
  background-size: 2em 2em;
  border: 0;
  content: "";
  display: block;
  height: 4em;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
  text-indent: 4em;
  top: 0;
  width: 4em;
}
#menu .links {
  list-style: none;
  margin-bottom: -0.25em;
  padding: 0;
}
#menu .links li {
  padding: 0;
}
#menu .links li a {
  border-radius: 0px;
  border: 0;
  display: block;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.85em;
  padding: 0.75em 0;
  text-transform: uppercase;
  color: #ff8800;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
#menu .links li a:hover {
  background: #ff8800;
  color: #000000;
  text-shadow: none;
}

body.is-menu-visible #page-wrapper {
  -moz-filter: blur(1.5px);
  -webkit-filter: blur(1.5px);
  -ms-filter: blur(1.5px);
  filter: blur(1.5px);
}
body.is-menu-visible #menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
body.is-menu-visible #menu .inner {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* Banner */
#banner {
  padding: 1em 0 0.5em 0;
  position: relative;
  margin-top: 2em;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.3);
  z-index: 10001;
}
#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 136, 0, 0.03) 2px, rgba(255, 136, 0, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}
#banner .inner {
  margin: 0 auto;
  width: 55em;
  position: relative;
  z-index: 10002;
}
#banner .inner a {
  color: #ff8800;
  background: none;
  border-radius: 0px;
  padding: 0.1em 0.5em;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}
#banner .inner a:hover {
  background: #ff8800;
  color: #000000;
  text-shadow: none;
}
#banner .logo {
  -moz-transition: opacity 2s ease, -moz-transform 1s ease;
  -webkit-transition: opacity 2s ease, -webkit-transform 1s ease;
  -ms-transition: opacity 2s ease, -ms-transform 1s ease;
  transition: opacity 2s ease, transform 1s ease;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  margin: 0 0 0.05em 0;
  position: relative;
  z-index: 10003;
}
#banner .logo .icon {
  border-radius: 100%;
  border: solid 2px #ff8800;
  cursor: default;
  display: inline-block;
  font-size: 2em;
  height: 2.25em;
  line-height: 2.25em;
  text-align: center;
  width: 2.25em;
  background: linear-gradient(45deg, #0a0a0a, #000000);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.2);
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  position: relative;
  z-index: 10004;
}
#banner .logo .icon:hover {
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.6), inset 0 0 30px rgba(255, 0, 102, 0.3);
}
#banner h2 {
  -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease, -moz-filter 0.25s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.25s ease;
  -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease, -ms-filter 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 0.65s;
  -webkit-transition-delay: 0.65s;
  -ms-transition-delay: 0.65s;
  transition-delay: 0.65s;
  -moz-filter: blur(0);
  -webkit-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  border-bottom: solid 2px #ff8800;
  font-size: 2.25em;
  margin-bottom: 0.1em;
  padding-bottom: 0.05em;
  color: #ff8800;
  text-shadow: 0 0 25px rgba(255, 136, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
#banner h2:hover {
  text-shadow: 0 0 35px rgba(255, 136, 0, 0.6);
}
#banner p {
  -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease, -moz-filter 0.25s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.25s ease;
  -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease, -ms-filter 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  transition-delay: 0.8s;
  -moz-filter: blur(0);
  -webkit-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  text-transform: uppercase;
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
#banner p a {
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  border-bottom: 1px solid #ff8800;
}
#banner p a:hover {
  color: #ff8800;
  text-shadow: 0 0 25px rgba(255, 136, 0, 0.6);
  border-bottom-color: #ff8800;
}
body.is-preload #banner .logo {
  -moz-transform: translateY(0.5em);
  -webkit-transform: translateY(0.5em);
  -ms-transform: translateY(0.5em);
  transform: translateY(0.5em);
  opacity: 0;
}
body.is-preload #banner h2 {
  opacity: 0;
  -moz-transform: translateX(0.25em);
  -webkit-transform: translateX(0.25em);
  -ms-transform: translateX(0.25em);
  transform: translateX(0.25em);
  -moz-filter: blur(2px);
  -webkit-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}
body.is-preload #banner p {
  opacity: 0;
  -moz-transform: translateX(0.5em);
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
  -moz-filter: blur(2px);
  -webkit-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

/* Main Grid */
#main-grid {
  padding: 1.5em 0 0.5em 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  gap: 2em;
  margin: 120px 2em 0 2em;
}
#main-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 136, 0, 0.02) 2px, rgba(255, 136, 0, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
}
#main-grid .hero-section {
  flex: 0 0 300px;
  position: relative;
  z-index: 2;
  padding: 1em;
  background: #000000;
  border: 1px solid #ff8800;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
  height: fit-content;
}
#main-grid .hero-section .logo {
  -moz-transition: opacity 2s ease, -moz-transform 1s ease;
  -webkit-transition: opacity 2s ease, -webkit-transform 1s ease;
  -ms-transition: opacity 2s ease, -ms-transform 1s ease;
  transition: opacity 2s ease, transform 1s ease;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  margin: 0 0 0.05em 0;
  position: relative;
  z-index: 10003;
}
#main-grid .hero-section .logo .icon {
  border-radius: 100%;
  border: solid 2px #ff8800;
  cursor: default;
  display: inline-block;
  font-size: 2em;
  height: 2.25em;
  line-height: 2.25em;
  text-align: center;
  width: 2.25em;
  background: linear-gradient(45deg, #0a0a0a, #000000);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.2);
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  position: relative;
  z-index: 10004;
}
#main-grid .hero-section .logo .icon:hover {
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.6), inset 0 0 30px rgba(255, 0, 102, 0.3);
}
#main-grid .hero-section h2 {
  -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease, -moz-filter 0.25s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.25s ease;
  -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease, -ms-filter 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 0.65s;
  -webkit-transition-delay: 0.65s;
  -ms-transition-delay: 0.65s;
  transition-delay: 0.65s;
  -moz-filter: blur(0);
  -webkit-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  border-bottom: solid 2px #ff8800;
  font-size: 2em;
  margin-bottom: 0.1em;
  padding-bottom: 0.05em;
  color: #ff8800;
  text-shadow: 0 0 25px rgba(255, 136, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}
#main-grid .hero-section h2:hover {
  text-shadow: 0 0 35px rgba(255, 136, 0, 0.6);
}
#main-grid .hero-section p {
  -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease, -moz-filter 0.25s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.25s ease;
  -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease, -ms-filter 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -moz-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  transition-delay: 0.8s;
  -moz-filter: blur(0);
  -webkit-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
#main-grid .hero-section p a {
  color: #ff8800;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  border-bottom: 1px solid #ff8800;
  margin-right: 1em;
}
#main-grid .hero-section p a:hover {
  color: #000000;
  text-shadow: 0 0 25px rgba(255, 136, 0, 0.6);
  border-bottom-color: #ff8800;
}
#main-grid .console-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75em;
  position: relative;
  z-index: 2;
  align-items: start;
}
#main-grid .console-grid .console-window {
  background: #000000;
  border: 1px solid #ff8800;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 280px;
}
#main-grid .console-grid .console-window:hover {
  box-shadow: 0 0 25px rgba(255, 136, 0, 0.6);
  transform: translateY(-2px);
}
#main-grid .console-grid .console-window .terminal-container {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  height: 100%;
  box-sizing: border-box;
}
#main-grid .console-grid .console-window .terminal-container .terminal-prompt {
  color: #ff8800;
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}
#main-grid .console-grid .console-window .terminal-container .terminal-prompt::before {
  content: "> ";
  color: #ff8800;
}
#main-grid .console-grid .console-window .terminal-container .system-message {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.75em;
  color: #ff8800;
  padding: 0.15em;
  border-left: 2px solid #ff8800;
  background: rgba(255, 136, 0, 0.05);
  flex-shrink: 0;
}
#main-grid .console-grid .console-window .terminal-container .system-message.success {
  border-left-color: #00ff00;
  color: #00ff00;
}
#main-grid .console-grid .console-window .terminal-container .image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid #ff8800;
  margin: 0.25em 0;
  flex-shrink: 0;
  align-self: center;
}
#main-grid .console-grid .console-window .terminal-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#main-grid .console-grid .console-window .terminal-container .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  min-height: 0;
}
#main-grid .console-grid .console-window .terminal-container .content h2.major {
  font-size: 1.1em;
  margin: 0;
  padding: 0;
  border: none;
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  flex-shrink: 0;
}
#main-grid .console-grid .console-window .terminal-container .content p {
  font-size: 0.8em;
  line-height: 1.3;
  margin: 0;
  color: #ff8800;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#main-grid .console-grid .console-window .terminal-container .content .terminal-link {
  color: #ff8800;
  text-decoration: none;
  border-bottom: 1px solid #ff8800;
  font-size: 0.75em;
  transition: all 0.2s ease-in-out;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: auto;
}
#main-grid .console-grid .console-window .terminal-container .content .terminal-link:hover {
  background-color: #ff8800;
  color: #000000;
  border-bottom-color: #ff8800;
  text-shadow: none;
}

/* Wrapper */
#wrapper > header {
  padding: 0.75em 0 0.1em 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
  position: relative;
}
#wrapper > header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.02) 2px, rgba(0, 255, 65, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
}
#wrapper > header .inner {
  margin: 0 auto;
  width: 55em;
  position: relative;
  z-index: 2;
}
#wrapper > header h2 {
  border-bottom: solid 2px #ff8800;
  font-size: 1em;
  margin-bottom: 0.025em;
  padding-bottom: 0.0125em;
  color: #ff8800;
  text-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}
#wrapper > header h2:hover {
  text-shadow: 0 0 30px rgba(255, 136, 0, 0.6);
}
#wrapper > header p {
  font-family: "CaskaydiaMono", "Courier New", monospace;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: #ff8800;
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

.wrapper {
  padding: 0.75em 0 0.1em 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}
.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 136, 0, 0.02) 2px, rgba(255, 136, 0, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
}
.wrapper:before, .wrapper:after {
  content: "";
  display: block;
  height: 0.5em;
  position: relative;
  width: 100%;
}
.wrapper:before {
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 2px 10px rgba(0, 255, 65, 0.1);
}
.wrapper:after {
  border-top: 2px solid #ff8800;
  box-shadow: 0 -2px 10px rgba(0, 255, 65, 0.1);
}
.wrapper.alt:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper.alt:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper .inner {
  margin: 0 auto;
  width: 55em;
  position: relative;
  z-index: 2;
}
.wrapper.style2:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper.style2:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper.style3:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(0, 255, 65, 0.2);
}
.wrapper.style3:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(0, 255, 65, 0.2);
}
.wrapper.style4:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.2);
}
.wrapper.style4:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(255, 136, 0, 0.2);
}
.wrapper.style5:before {
  border-bottom-color: rgba(255, 136, 0, 0.3);
  box-shadow: 0 2px 15px rgba(0, 255, 65, 0.3);
}
.wrapper.style5:after {
  border-top-color: rgba(255, 136, 0, 0.3);
  box-shadow: 0 -2px 15px rgba(0, 255, 65, 0.3);
}
.wrapper.style6:before, .wrapper.style6:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,100 100,0 100,100' style='fill:rgba(255, 136, 0, 0.6);' /%3E%3C/svg%3E");
}
.wrapper.style6:before {
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.wrapper.style6:after {
  -moz-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.wrapper.spotlight {
  align-items: center;
  display: flex;
  flex-direction: row;
  min-height: 50vh;
  position: relative;
}
.wrapper.spotlight:before, .wrapper.spotlight:after {
  content: "";
  display: block;
  height: 0.5em;
  position: relative;
  width: 100%;
}
.wrapper.spotlight:before {
  border-bottom: 2px solid #ff8800;
  box-shadow: 0 2px 10px rgba(0, 255, 65, 0.1);
}
.wrapper.spotlight:after {
  border-top: 2px solid #ff8800;
  box-shadow: 0 -2px 10px rgba(0, 255, 65, 0.1);
}
.wrapper.spotlight .inner {
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  margin: 0 auto;
  width: 55em;
  max-width: 95em;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
}
.wrapper.spotlight .image {
  width: 30%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.wrapper.spotlight .image img {
  border-radius: 0px;
  display: block;
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
  border: 2px solid #ff8800;
}
.wrapper.spotlight .content {
  padding: 0;
  position: relative;
  z-index: 2;
  flex: 1;
}
.wrapper.spotlight:nth-child(2n-1) .inner {
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.wrapper.spotlight:nth-child(2n-1) .image {
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.wrapper.spotlight.style2:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper.spotlight.style2:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(255, 136, 0, 0.1);
}
.wrapper.spotlight.style3:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(0, 255, 65, 0.2);
}
.wrapper.spotlight.style3:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(0, 255, 65, 0.2);
}
.wrapper.spotlight.style4:before {
  border-bottom-color: #ff8800;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.2);
}
.wrapper.spotlight.style4:after {
  border-top-color: #ff8800;
  box-shadow: 0 -2px 10px rgba(255, 136, 0, 0.2);
}
.wrapper.spotlight.style5:before {
  border-bottom-color: rgba(255, 136, 0, 0.3);
  box-shadow: 0 2px 15px rgba(0, 255, 65, 0.3);
}
.wrapper.spotlight.style5:after {
  border-top-color: rgba(255, 136, 0, 0.3);
  box-shadow: 0 -2px 15px rgba(0, 255, 65, 0.3);
}
.wrapper.spotlight.style6:before {
  border-bottom-color: rgba(255, 136, 0, 0.6);
  box-shadow: 0 2px 15px rgba(255, 136, 0, 0.3);
}
.wrapper.spotlight.style6:after {
  border-top-color: rgba(255, 136, 0, 0.6);
  box-shadow: 0 -2px 15px rgba(255, 136, 0, 0.3);
}

/* Footer */
#footer .inner {
  padding: 5em 0 4.75em 0;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 55em;
}
#footer .inner > * {
  width: 100%;
}
#footer .inner form {
  margin: 0 0.5em 0 0;
  width: calc(50% - 0.25em);
}
#footer .inner .contact {
  width: calc(50% - 0.25em);
}
#footer .inner .copyright {
  border-top: solid 2px #ff8800;
  list-style: none;
  margin: 0.5em 0 0.25em 0;
  padding: 0.25em 0 0 0;
  width: 100%;
}
#footer .inner .copyright li {
  border-left: solid 2px #ff8800;
  color: rgba(255, 136, 0, 0.6);
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  margin-left: 1em;
  padding: 0;
  padding-left: 1em;
}
#footer .inner .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}
#footer .inner .copyright li a {
  color: inherit;
}

/*
	Solid State by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
@font-face {
  font-family: "CaskaydiaMono";
  src: url("../../content/CaskaydiaMonoNerdFont-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProceduralGrapheme";
  src: url("../../content/proceduralgrapheme-font.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Article Layout Styles */
.article-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.article-content p {
  margin-bottom: 1.5em;
  line-height: 1.6;
  text-align: left;
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: left;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5em;
  text-align: left;
}

.article-content ul li, .article-content ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.article-content .table-wrapper {
  margin: 2em 0;
}

.article-content .table-wrapper table {
  width: 100%;
}

.article-content .table-wrapper table th, .article-content .table-wrapper table td {
  padding: 0.75em;
  text-align: left;
}

.article-content blockquote {
  margin: 2em 0;
  padding: 1em 2em;
  border-left: 4px solid #ff8800;
  background: rgba(255, 136, 0, 0.1);
}

.article-content section {
  margin: 3em 0;
}

.article-content section:last-child {
  margin-bottom: 0;
}

.article-content a {
  color: #ff8800;
}

.article-content a:hover {
  color: #000000;
}

.article-content strong, .article-content b {
  color: #ffaa00;
}

.article-content code:not(.code-block code) {
  background: rgba(255, 136, 0, 0.2);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: "CaskaydiaMono", "Courier New", monospace;
}

/* Article Navigation */
.article-nav {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #ff8800;
  border-radius: 0;
  padding: 0.25em;
  margin: 0.5em 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.article-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-nav li {
  margin: 0;
}

.article-nav a {
  display: inline-block;
  padding: 0.15em 0.3em;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  color: #ffaa00;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.article-nav a:hover {
  background: #ff8800;
  border-color: #ff8800;
  color: #000000;
  transform: none;
  box-shadow: none;
}

/* GitHub Link Styles */
.github-link {
  margin: 2em 0;
  text-align: center;
}

.github-link .button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  background: #000000;
  border: 2px solid #ff8800;
  border-radius: 0;
  color: #ff8800;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 136, 0, 0.2);
}

.github-link .button:hover {
  background: #ff8800;
  border-color: #ff8800;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 136, 0, 0.4);
}

.github-link .button .icon {
  font-size: 1.2em;
}

/* Article Header Styles */
.article-header {
  text-align: center;
  padding: 3em 0;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #ff8800;
  margin-bottom: 2em;
}

.article-header h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #ff8800;
}

.article-header p {
  font-size: 1.2em;
  color: #ffaa00;
  margin-bottom: 1.5em;
}

/* Article Section Styles */
.article-section {
  margin: 3em 0;
  padding: 2em;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 136, 0, 0.3);
  border-radius: 0;
}

.article-section h3.major {
  color: #ff8800;
  border-bottom: 2px solid #ff8800;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

/* Responsive Design for Articles */
@media screen and (max-width: 736px) {
  .article-content {
    padding: 0 1em;
  }
  
  .article-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.05em;
  }
  
  .article-nav a {
    width: 100%;
    text-align: center;
    padding: 0.1em 0.2em;
    font-size: 0.75em;
  }
  
  .article-header h2 {
    font-size: 2em;
  }
  
  .article-header p {
    font-size: 1em;
  }
  
  .article-section {
    padding: 1em;
  }
}

/* Unified Wrapper Styles */
.wrapper .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.wrapper .inner p {
  margin-bottom: 1.5em;
  line-height: 1.6;
  text-align: left;
}

.wrapper .inner ul, .wrapper .inner ol {
  margin-bottom: 1.5em;
  text-align: left;
}

.wrapper .inner ul li, .wrapper .inner ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.wrapper .inner h1, .wrapper .inner h2, .wrapper .inner h3, .wrapper .inner h4, .wrapper .inner h5, .wrapper .inner h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: left;
}

@media screen and (max-width: 736px) {
  .article-content p, .article-content ul, .article-content ol,
  .wrapper .inner p, .wrapper .inner ul, .wrapper .inner ol {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6,
  .wrapper .inner h1, .wrapper .inner h2, .wrapper .inner h3, .wrapper .inner h4, .wrapper .inner h5, .wrapper .inner h6 {
    font-size: 1.2em;
    line-height: 1.4;
  }
  
  .wrapper .inner section,
  .article-content section {
    margin: 2em 0;
  }
  
  .wrapper .inner section p, .wrapper .inner section ul, .wrapper .inner section ol, .wrapper .inner section li, .wrapper .inner section blockquote, .wrapper .inner section table,
  .article-content section p, .article-content section ul, .article-content section ol, .article-content section li, .article-content section blockquote, .article-content section table {
    font-size: 0.9em;
    line-height: 1.5;
  }
}

.wrapper header .inner h2 {
  font-size: 2.5em;
}

.wrapper .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

@media screen and (max-width: 736px) {
  .wrapper .inner {
    padding: 0 1em;
  }
  
  .wrapper header .inner h2 {
    font-size: 2em;
  }
}

#page-wrapper .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

@media screen and (max-width: 736px) {
  #page-wrapper .inner {
    padding: 0 1em;
  }
}

/* Mobile Responsiveness Improvements */

/* Base mobile breakpoints */
@media screen and (max-width: 736px) {
  /* Header improvements */
  #header h1 {
    font-size: 0.7em;
    margin-left: 0.5em;
  }
  
  #header nav {
    right: 0.5em;
    top: 0.25em;
    height: 2.5em;
    line-height: 2.5em;
  }
  
  #header nav a[href="#menu"] {
    padding: 0 0.75em;
    font-size: 0.8em;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
  }
  
  #header nav a[href="#menu"]:active {
    transform: scale(0.95);
    background: #ff8800;
    color: #000000;
  }
  
  /* Scrolling banner improvements */
  .scrolling-banner {
    height: 2.5em;
    top: 0;
  }
  
  #header {
    height: 3em;
    line-height: 3em;
    padding: 0 1em;
    top: 2.5em;
  }
  
  .scrolling-banner .banner-content .banner-item {
    font-size: 0.7em;
    padding: 0.25em 0.5em;
  }
  
  .scrolling-banner .banner-content .banner-item .timestamp {
    display: none;
  }
  
  /* Main grid improvements */
  #main-grid {
    flex-direction: column;
    gap: 1em;
    margin: 110px 1em 0 1em;
    padding: 1em 0 0.5em 0;
  }
  
  #main-grid .hero-section {
    flex: none;
    width: 100%;
    max-width: none;
    margin-bottom: 1em;
  }
  
  #main-grid .hero-section h2 {
    font-size: 1.5em;
  }
  
  #main-grid .hero-section p {
    font-size: 0.9em;
  }
  
  #main-grid .console-grid {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
  
  #main-grid .console-grid .console-window {
    height: auto;
    min-height: 200px;
  }
  
  #main-grid .console-grid .console-window .terminal-container {
    padding: 0.75em;
  }
  
  #main-grid .console-grid .console-window .terminal-container .image {
    width: 60px;
    height: 60px;
  }
  
  #main-grid .console-grid .console-window .terminal-container .content h2.major {
    font-size: 1em;
  }
  
  #main-grid .console-grid .console-window .terminal-container .content p {
    font-size: 0.75em;
    -webkit-line-clamp: 4;
  }
  
  /* Wrapper improvements */
  .wrapper .inner {
    padding: 0 1em;
  }
  
  .wrapper header .inner h2 {
    font-size: 1.8em;
  }
  
  /* Features grid improvements */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  
  .features-grid article {
    margin-bottom: 1em;
  }
  
  .features-grid article .image {
    height: 150px;
  }
  
  .features-grid article h3 {
    font-size: 1.2em;
  }
  
  .features-grid article p {
    font-size: 0.9em;
  }
  
  /* Article content improvements */
  .article-content {
    padding: 0 1em;
  }
  
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .article-content h1,
  .article-content h2,
  .article-content h3,
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    font-size: 1.3em;
    line-height: 1.4;
  }
  
  .article-header h2 {
    font-size: 1.8em;
  }
  
  .article-header p {
    font-size: 0.9em;
  }
  
  /* Code block improvements */
  .code-block pre {
    font-size: 0.8em;
    overflow-x: auto;
  }
  
  .code-block .code-header {
    font-size: 0.8em;
  }
  
  /* Table improvements */
  .table-wrapper {
    overflow-x: auto;
  }
  
  .table-wrapper table {
    min-width: 100%;
    font-size: 0.8em;
  }
  
  /* Menu improvements */
  #menu .inner {
    padding: 2em 1em;
  }
  
  #menu .links li a {
    font-size: 1em;
    padding: 0.75em 1em;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 0.5em;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  #header {
    height: 2.5em;
    line-height: 2.5em;
    padding: 0 0.75em;
    top: 2.5em;
  }
  
  #header h1 {
    font-size: 0.6em;
    margin-left: 0.25em;
  }
  
  #header nav a[href="#menu"] {
    padding: 0 0.5em;
    font-size: 0.7em;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
  }
  
  #header nav a[href="#menu"]:active {
    transform: scale(0.95);
    background: #ff8800;
    color: #000000;
  }
  
  .scrolling-banner {
    height: 2em;
    top: 0;
  }
  
  #header {
    height: 2.5em;
    line-height: 2.5em;
    padding: 0 0.75em;
    top: 2em;
  }
  
  .scrolling-banner .banner-content .banner-item {
    font-size: 0.6em;
    padding: 0.2em 0.4em;
  }
  
  #main-grid {
    margin: 100px 0.5em 0 0.5em;
    padding: 0.5em 0 0.25em 0;
  }
  
  #main-grid .hero-section {
    padding: 0.75em;
  }
  
  #main-grid .hero-section h2 {
    font-size: 1.3em;
  }
  
  #main-grid .hero-section p {
    font-size: 0.8em;
  }
  
  #main-grid .console-grid .console-window .terminal-container {
    padding: 0.5em;
  }
  
  #main-grid .console-grid .console-window .terminal-container .image {
    width: 50px;
    height: 50px;
  }
  
  .wrapper .inner {
    padding: 0 0.75em;
  }
  
  .wrapper header .inner h2 {
    font-size: 1.5em;
  }
  
  .features-grid article .image {
    height: 120px;
  }
  
  .features-grid article h3 {
    font-size: 1.1em;
  }
  
  .features-grid article p {
    font-size: 0.8em;
  }
  
  .article-content {
    padding: 0 0.75em;
  }
  
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 0.85em;
  }
  
  .article-content h1,
  .article-content h2,
  .article-content h3,
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    font-size: 1.2em;
  }
  
  .article-header h2 {
    font-size: 1.5em;
  }
  
  .code-block pre {
    font-size: 0.7em;
  }
  
  .table-wrapper table {
    font-size: 0.7em;
  }
}

/* Landscape mobile devices */
@media screen and (max-width: 736px) and (orientation: landscape) {
  #main-grid {
    margin: 60px 1em 0 1em;
  }
  
  #main-grid .console-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .scrolling-banner {
    top: 3em;
  }
}

/* Tablet improvements */
@media screen and (min-width: 737px) and (max-width: 980px) {
  #main-grid {
    margin: 100px 1.5em 0 1.5em;
    gap: 1.5em;
  }
  
  #main-grid .hero-section {
    flex: 0 0 250px;
  }
  
  #main-grid .console-grid {
    gap: 1em;
  }
  
  .wrapper .inner {
    padding: 0 1.5em;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  #header nav a[href="#menu"] {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .features-grid article a,
  .terminal-link,
  .special {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #menu .links li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve touch targets */
  .console-window {
    cursor: pointer;
  }
  
  .console-window:active {
    transform: scale(0.98);
  }
  
  /* Better scrolling on mobile */
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent zoom on double tap */
  * {
    touch-action: manipulation;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .scrolling-banner .banner-content .banner-item {
    font-weight: 500;
  }
  
  #main-grid .console-grid .console-window .terminal-container .content p {
    font-weight: 400;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .scrolling-banner .banner-content {
    animation: none;
  }
  
  #main-grid .hero-section .logo .icon,
  #main-grid .hero-section h2,
  #main-grid .hero-section p {
    transition: none;
  }
  
  #main-grid .console-grid .console-window:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background: #000000;
  }
  
  #header {
    background: rgba(0, 0, 0, 0.95);
  }
  
  .scrolling-banner {
    background: rgba(0, 0, 0, 0.9);
  }
}

/* Mobile background fix - ensure black background on mobile devices */
@media screen and (max-width: 736px) {
  body {
    background: #000000 !important;
  }
  
  body::before {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.4) 100%);
  }
  
  body::after {
    background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 136, 0, 0.1) 1px, rgba(255, 136, 0, 0.1) 2px);
  }
}

/* Print styles */
@media print {
  .scrolling-banner,
  #header,
  #menu {
    display: none;
  }
  
  #main-grid {
    margin: 0;
    padding: 0;
  }
  
  .wrapper .inner {
    padding: 0;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}
