@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  background: #000000;
  color: #00ff00;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", "Share Tech Mono", monospace;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 2.5rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

h2 {
  font-size: 2rem;
  color: #ffb000;
  text-shadow: 0 0 8px #ffb000;
}

h3 {
  font-size: 1.5rem;
  color: #00ff00;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #ffb000;
  text-shadow: 0 0 5px #ffb000;
  text-decoration: underline;
}
a:active {
  color: #00ff00;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}
li::marker {
  color: #ffb000;
}

code {
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  background: #111111;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  color: #00ff00;
  border: 1px solid #333333;
}

pre {
  background: #111111;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  border: 1px solid #333333;
  margin-bottom: 1rem;
}
pre code {
  background: none;
  padding: 0;
  border: none;
}

.btn, .contact-form .form-submit .submit-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #00ff00;
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn:hover, .contact-form .form-submit .submit-btn:hover {
  background: #00ff00;
  color: #000000;
  box-shadow: 0 0 20px #00ff00;
  text-shadow: none;
}
.btn.btn-primary, .contact-form .form-submit .submit-btn {
  border-color: #00ffff;
  color: #00ffff;
}
.btn.btn-primary:hover, .contact-form .form-submit .submit-btn:hover {
  background: #00ffff;
  color: #000000;
  box-shadow: 0 0 20px #00ffff;
}
.btn.btn-warning, .contact-form .form-submit .btn-warning.submit-btn {
  border-color: #ffb000;
  color: #ffb000;
}
.btn.btn-warning:hover, .contact-form .form-submit .btn-warning.submit-btn:hover {
  background: #ffb000;
  color: #000000;
  box-shadow: 0 0 20px #ffb000;
}

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

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

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.terminal-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.terminal-window {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ff00;
  border-radius: 8px;
  margin: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3), inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.terminal-titlebar {
  background: #111111;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #00ff00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}
.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.terminal-buttons .btn-close {
  background: #ff0000;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}
.terminal-buttons .btn-minimize {
  background: #ffb000;
  box-shadow: 0 0 5px rgba(255, 176, 0, 0.5);
}
.terminal-buttons .btn-maximize {
  background: #00ff00;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.terminal-title {
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  color: #00ff00;
  font-size: 0.9rem;
  font-weight: bold;
}

.terminal-nav {
  padding: 2rem;
}

.ascii-logo {
  margin-bottom: 2rem;
  text-align: center;
}
.ascii-logo .logo-ascii {
  color: #00ffff;
  font-size: 0.6rem;
  line-height: 1;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ascii-logo .logo-ascii {
    font-size: 0.4rem;
  }
}
.ascii-logo .tagline {
  color: #ffb000;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ffb000;
}
.ascii-logo .system-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}
.ascii-logo .system-info .info-line {
  color: #00ff00;
}
.ascii-logo .system-info .info-line::before {
  content: ">> ";
  color: #ffb000;
}

.main-nav .nav-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .main-nav .nav-list {
    flex-direction: column;
    align-items: center;
  }
}
.main-nav .nav-item {
  margin: 0;
}
.main-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-nav .nav-link .prompt {
  color: #ffb000;
  margin-right: 0.5rem;
  font-weight: bold;
}
.main-nav .nav-link:hover {
  background: rgba(0, 255, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  text-shadow: 0 0 5px #00ff00;
}
.main-nav .nav-link.active {
  color: #00ffff;
}
.main-nav .nav-link.active .prompt {
  color: #00ffff;
}

.terminal-content {
  flex: 1;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
  margin: 0 1rem;
  border: 1px solid #333333;
  border-radius: 0 0 6px 6px;
  border-top: none;
}

.terminal-prompt {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.terminal-prompt .prompt {
  color: #ffb000;
  margin-right: 0.5rem;
  font-weight: bold;
}
.terminal-prompt .command {
  color: #00ffff;
  font-weight: bold;
}

.terminal-output {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: #00ff00;
}
.terminal-output .output-line {
  margin-bottom: 0.3rem;
}
.terminal-output .output-line.error {
  color: #ff0000;
}
.terminal-output .output-line.warning {
  color: #ffb000;
}
.terminal-output .output-line.success {
  color: #00ff00;
}

.terminal-footer {
  background: rgba(17, 17, 17, 0.9);
  border-top: 1px solid #00ff00;
  padding: 1.5rem;
  margin: 0 1rem 1rem;
  border-radius: 0 0 6px 6px;
}
.terminal-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}
.terminal-footer .footer-section .uptime-display {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.terminal-footer .footer-section .uptime-display .uptime-text, .terminal-footer .footer-section .uptime-display .load-avg {
  color: #00ff00;
  font-size: 0.9rem;
}
.terminal-footer .footer-section .connection-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.terminal-footer .footer-section .connection-info .status-line {
  color: #00ff00;
  font-size: 0.9rem;
}
.terminal-footer .footer-section .connection-info .status-line::before {
  content: "[";
  color: #ffb000;
}
.terminal-footer .footer-section .connection-info .status-line::after {
  content: "]";
  color: #ffb000;
}
.terminal-footer .footer-section .quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.terminal-footer .footer-section .quick-links .footer-link {
  display: flex;
  align-items: center;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.terminal-footer .footer-section .quick-links .footer-link .prompt {
  color: #ffb000;
  margin-right: 0.5rem;
}
.terminal-footer .footer-section .quick-links .footer-link:hover {
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
}
.terminal-footer .footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 1rem;
}
.terminal-footer .footer-bottom .cursor-static {
  display: flex;
  align-items: center;
}
.terminal-footer .footer-bottom .cursor-static .prompt {
  color: #ffb000;
}

@media (max-width: 768px) {
  .terminal-window {
    margin: 0.5rem;
  }
  .terminal-nav {
    padding: 1rem;
  }
  .terminal-content {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  .terminal-footer {
    margin: 0 0.5rem 0.5rem;
    padding: 1rem;
  }
  .terminal-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background: linear-gradient(transparent 50%, rgba(0, 255, 0, 0.03) 50%);
  background-size: 100% 4px;
  animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.1;
}

.cursor, .cursor-blink {
  opacity: 1;
}

.typing-animation {
  overflow: hidden;
  border-right: 2px solid #00ff00;
  white-space: nowrap;
  animation: typing 3s steps(40, end);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: #00ffff;
  z-index: -1;
}
.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: #ff0000;
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 14%, 15%, 49%, 50%, 99%, 100% {
    transform: translate(0);
  }
  15%, 49% {
    transform: translate(-2px, 0);
  }
  50%, 99% {
    transform: translate(2px, 0);
  }
}
@keyframes glitch-2 {
  0%, 20%, 21%, 62%, 63%, 99%, 100% {
    transform: translate(0);
  }
  21%, 62% {
    transform: translate(2px, 0);
  }
  63%, 99% {
    transform: translate(-2px, 0);
  }
}
.neon-glow {
  text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor;
}

.neon-border {
  box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, inset 0 0 5px currentColor;
}

.hover-glow {
  transition: all 0.3s ease;
}
.hover-glow:hover {
  text-shadow: 0 0 10px currentColor;
  transform: scale(1.05);
}

.hover-flicker {
  transition: all 0.1s ease;
}
.hover-flicker:hover {
  animation: flicker 0.5s infinite alternate;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px currentColor;
  }
  20%, 24%, 55% {
    opacity: 0.8;
    text-shadow: none;
  }
}
.loading-dots::after {
  content: "";
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0%, 20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%, 100% {
    content: "...";
  }
}
.boot-sequence .boot-line {
  opacity: 0;
  animation: boot-line 0.1s ease-in-out forwards;
}
.boot-sequence .boot-line:nth-child(1) {
  animation-delay: 0.1s;
}
.boot-sequence .boot-line:nth-child(2) {
  animation-delay: 0.2s;
}
.boot-sequence .boot-line:nth-child(3) {
  animation-delay: 0.3s;
}
.boot-sequence .boot-line:nth-child(4) {
  animation-delay: 0.4s;
}
.boot-sequence .boot-line:nth-child(5) {
  animation-delay: 0.5s;
}
.boot-sequence .boot-line:nth-child(6) {
  animation-delay: 0.6s;
}
.boot-sequence .boot-line:nth-child(7) {
  animation-delay: 0.7s;
}
.boot-sequence .boot-line:nth-child(8) {
  animation-delay: 0.8s;
}
.boot-sequence .boot-line:nth-child(9) {
  animation-delay: 0.9s;
}
.boot-sequence .boot-line:nth-child(10) {
  animation-delay: 1s;
}

@keyframes boot-line {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.screen-flicker {
  animation: screen-flicker 0.15s infinite linear alternate;
}

@keyframes screen-flicker {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.98;
  }
}
.matrix-char {
  position: absolute;
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  font-size: 14px;
  animation: matrix-fall linear infinite;
  text-shadow: 0 0 5px #00ff00;
}

@keyframes matrix-fall {
  0% {
    transform: translateY(-100vh);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .scanlines {
    background-size: 100% 2px;
  }
  @keyframes scanlines {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(2px);
    }
  }
  .matrix-char {
    font-size: 10px;
  }
  .glitch::before,
  .glitch::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scanlines,
  .cursor,
  .cursor-blink,
  .typing-animation,
  .glitch::before,
  .glitch::after,
  .matrix-char,
  .screen-flicker {
    animation: none;
  }
  .hover-glow:hover,
  .hover-flicker:hover {
    transform: none;
    animation: none;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-card {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid #00ff00;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  transition: left 0.5s ease;
}
.service-card:hover {
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  transform: translateY(-5px);
}
.service-card:hover::before {
  left: 100%;
}
.service-card .service-icon {
  font-size: 2rem;
  color: #ffb000;
  margin-bottom: 1rem;
  display: block;
}
.service-card .service-title {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: "Orbitron", "Share Tech Mono", monospace;
}
.service-card .service-description {
  color: #00ff00;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #ffb000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card .service-link::after {
  content: " →";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.service-card .service-link:hover {
  color: #00ffff;
}
.service-card .service-link:hover::after {
  transform: translateX(5px);
}

.main-header {
  background: transparent;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .main-nav .nav-list {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .main-header .main-nav .nav-list {
    gap: 2rem;
  }
}
.main-header .main-nav .nav-link {
  color: #00ff00;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.main-header .main-nav .nav-link:hover {
  color: #00ffff;
}
.main-header .main-nav .nav-link.active {
  color: #00ffff;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.hero {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00ffff;
  text-shadow: 0 0 30px #00ffff;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}
.hero .hero-subtitle {
  font-size: 1.8rem;
  color: #ffb000;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.4rem;
  }
}
.hero .hero-description {
  font-size: 1.2rem;
  color: #00ff00;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero .hero-description {
    font-size: 1rem;
  }
}
.hero .hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.terminal-simulator {
  background: #000000;
  border: 2px solid #00ff00;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}
.terminal-simulator .terminal-sim-header {
  background: #111111;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #00ff00;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-simulator .terminal-sim-header .sim-buttons {
  display: flex;
  gap: 0.3rem;
}
.terminal-simulator .terminal-sim-header .sim-buttons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.terminal-simulator .terminal-sim-header .sim-buttons span.red {
  background: #ff0000;
}
.terminal-simulator .terminal-sim-header .sim-buttons span.yellow {
  background: #ffb000;
}
.terminal-simulator .terminal-sim-header .sim-buttons span.green {
  background: #00ff00;
}
.terminal-simulator .terminal-sim-header .sim-title {
  color: #00ff00;
  font-size: 0.9rem;
  margin-left: auto;
}
.terminal-simulator .terminal-sim-content {
  padding: 1rem;
  min-height: 200px;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
}
.terminal-simulator .terminal-sim-content .sim-line {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.terminal-simulator .terminal-sim-content .sim-line .sim-prompt {
  color: #ffb000;
  margin-right: 0.5rem;
}
.terminal-simulator .terminal-sim-content .sim-line .sim-command {
  color: #00ffff;
}
.terminal-simulator .terminal-sim-content .sim-line .sim-output {
  color: #00ff00;
  margin-left: 2rem;
}
.terminal-simulator .terminal-sim-content .sim-cursor {
  display: inline-block;
  background: #00ff00;
  width: 8px;
  height: 16px;
  animation: blink 1s infinite;
}

.content-section {
  padding: 4rem 0;
}
.content-section.section-dark {
  background: rgba(17, 17, 17, 0.5);
}
.content-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.content-section .section-header .section-title {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .content-section .section-header .section-title {
    font-size: 2rem;
  }
}
.content-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: #ffb000;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  color: #ffb000;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.contact-form .form-group label::before {
  content: "$ ";
  color: #00ff00;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid #00ff00;
  border-radius: 4px;
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.9);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #666666;
  font-style: italic;
}
.contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-submit {
  text-align: center;
}
.contact-form .form-submit .submit-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.about-section {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .terminal-window {
  background: rgba(17, 17, 17, 0.9);
  border: 2px solid #00ff00;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
  overflow: hidden;
}
.about-section .terminal-window .terminal-header {
  background: #111111;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #00ff00;
  display: flex;
  align-items: center;
}
.about-section .terminal-window .terminal-header .terminal-title {
  color: #ffb000;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: bold;
}
.about-section .terminal-window .terminal-content {
  padding: 2rem;
}
.about-section .about-content .section-title {
  color: #00ffff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: "Orbitron", "Share Tech Mono", monospace;
}
@media (max-width: 768px) {
  .about-section .about-content .section-title {
    font-size: 1.8rem;
  }
}
.about-section .about-content .about-intro {
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.about-section .about-content .expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .about-section .about-content .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.about-section .about-content .expertise-column .expertise-title {
  color: #ffb000;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: "Orbitron", "Share Tech Mono", monospace;
  font-weight: bold;
}
.about-section .about-content .expertise-column .tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-section .about-content .expertise-column .tech-list li {
  color: #00ff00;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.about-section .about-content .expertise-column .tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
}
.about-section .about-content .experience-highlight {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #00ff00;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-section .about-content .experience-highlight .highlight-title {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: "Orbitron", "Share Tech Mono", monospace;
}
.about-section .about-content .experience-highlight .highlight-text {
  color: #00ff00;
  line-height: 1.7;
  margin: 0;
}
.about-section .about-content .career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}
.about-section .about-content .career-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #00ff00;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.about-section .about-content .career-stats .stat-item:hover {
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
.about-section .about-content .career-stats .stat-item .stat-number {
  font-size: 2.2rem;
  color: #00ffff;
  font-family: "Orbitron", "Share Tech Mono", monospace;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #00ffff;
}
.about-section .about-content .career-stats .stat-item .stat-label {
  color: #ffb000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Share Tech Mono", "Monaco", "Courier New", monospace;
}

.error-page {
  text-align: center;
  padding: 4rem 0;
}
.error-page .error-code {
  font-size: 8rem;
  color: #ff0000;
  font-family: "Orbitron", "Share Tech Mono", monospace;
  font-weight: 900;
  text-shadow: 0 0 30px #ff0000;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .error-page .error-code {
    font-size: 4rem;
  }
}
.error-page .error-message {
  font-size: 1.5rem;
  color: #ffb000;
  margin-bottom: 2rem;
}
.error-page .error-description {
  color: #00ff00;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.main-footer {
  background: transparent;
  padding: 0;
  margin-top: auto;
}
.main-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .main-footer .footer-content {
    justify-content: center;
  }
}
.main-footer .footer-left .footer-logo {
  font-family: "Orbitron", "Share Tech Mono", monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffff;
  margin-bottom: 0.5rem;
}
.main-footer .footer-left .footer-tagline {
  color: #ffb000;
  margin: 0;
  font-size: 0.9rem;
}
.main-footer .footer-right .footer-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .main-footer .footer-right .footer-links {
    gap: 1rem;
  }
}
.main-footer .footer-right .footer-link {
  color: #00ff00;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-footer .footer-right .footer-link:hover {
  color: #00ffff;
}
.main-footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem;
  text-align: center;
}
.main-footer .footer-bottom p {
  color: #666666;
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .grid {
    gap: 1rem;
  }
  .grid.grid-2, .grid.grid-3, .grid.grid-4 {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero {
    padding: 2rem 0;
  }
  .hero .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .content-section {
    padding: 2rem 0;
  }
  .service-card {
    padding: 1rem;
  }
}

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