@keyframes scan {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.cyber-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

header.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

footer.system-footer {
  margin-top: auto;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

main.viewport {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.main-nav .brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
  flex-shrink: 0;
}
.main-nav .brand .logo-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(13, 11, 26, 0.5);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.main-nav .brand .logo-container:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.main-nav .brand .logo-container {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .main-nav .brand .logo-container {
    width: 45px;
    height: 45px;
    background: rgba(13, 11, 26, 0.8);
  }
}
@media (min-width: 1025px) {
  .main-nav .brand .logo-container:hover .logo-img {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 8px #32ff7e);
    transform: scale(1.1);
  }
}
.main-nav .brand .logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  animation: eyeBlink 5s infinite;
  filter: grayscale(1) brightness(0.8);
}
@media (max-width: 1024px) {
  .main-nav .brand .logo-img {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 5px #32ff7e);
  }
}
.main-nav .brand em {
  color: #32ff7e;
  font-style: normal;
}
.main-nav .nav-masthead {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.main-nav .nav-masthead a {
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  color: rgba(178, 190, 195, 0.7);
}
.main-nav .nav-masthead a:hover, .main-nav .nav-masthead a.active {
  color: #32ff7e !important;
  opacity: 1 !important;
  text-shadow: 0 0 8px rgba(50, 255, 126, 0.6);
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav .nav-masthead {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

@keyframes eyeBlink {
  0%, 90%, 100% {
    opacity: 1;
  }
  92%, 98% {
    opacity: 0;
  }
}
.system-footer {
  margin-top: 100px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: #b2bec3;
}
.system-footer p {
  letter-spacing: 1px;
}
.system-footer .blink {
  color: #32ff7e;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.contact-container {
  max-width: 700px;
  margin: 40px auto;
}
.contact-container .terminal-form {
  background: #0d0b1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.contact-container .terminal-form:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.contact-container .terminal-form {
  position: relative;
  overflow: hidden;
}
.contact-container .terminal-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(50, 255, 126, 0.1);
  animation: scan 3s linear infinite;
  pointer-events: none;
}
.contact-container .terminal-form {
  border-radius: 4px;
  overflow: hidden;
}
.contact-container .terminal-form .terminal-header {
  background: #1a1b26;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-container .terminal-form .terminal-header .dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  margin-right: 5px;
  display: inline-block;
}
.contact-container .terminal-form .terminal-header .terminal-title {
  flex-grow: 1;
  text-align: center;
  color: #b2bec3;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
}
.contact-container .terminal-form .terminal-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-container .terminal-form .terminal-body .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.contact-container .terminal-form .terminal-body .input-group .prompt {
  color: #32ff7e;
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
  font-size: 0.85rem;
}
.contact-container .terminal-form .terminal-body .input-group input, .contact-container .terminal-form .terminal-body .input-group textarea {
  background: transparent;
  border: 1px solid rgba(50, 255, 126, 0.2);
  padding: 10px;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}
.contact-container .terminal-form .terminal-body .input-group input:focus, .contact-container .terminal-form .terminal-body .input-group textarea:focus {
  border-color: #32ff7e;
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.2);
  background: rgba(50, 255, 126, 0.02);
}
.contact-container .terminal-form .terminal-body .terminal-btn {
  background: transparent;
  border: 1px solid #32ff7e;
  color: #32ff7e;
  font-family: "Orbitron", sans-serif;
  padding: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}
.contact-container .terminal-form .terminal-body .terminal-btn:hover {
  background: #32ff7e;
  color: #000;
  box-shadow: 0 0 20px #32ff7e;
}

.thanks-container {
  max-width: 600px;
  margin: 100px auto;
}
.thanks-container .terminal-window.success {
  border-color: #32ff7e;
  box-shadow: 0 0 20px rgba(50, 255, 126, 0.2);
}
.thanks-container .terminal-window.success .output-success {
  color: #32ff7e;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.thanks-container .terminal-window.success .blink-text {
  color: #ffffff;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}
.thanks-container .terminal-window.success .return-link {
  color: #32ff7e;
  text-decoration: none;
}
.thanks-container .terminal-window.success .return-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px #32ff7e;
}

html, body {
  background-color: #050505 !important;
  color: #ffffff !important;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.cyber-app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #050505;
}

.section-title,
h3.section-title {
  font-family: "Orbitron", sans-serif !important;
  color: #32ff7e !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 25px !important;
  display: block !important;
  text-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #32ff7e;
  color: #32ff7e;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: transparent;
}
.btn:hover {
  background: rgba(50, 255, 126, 0.1);
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.3);
  transform: translateY(-2px);
}

.hero-section {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.hero-section .hero-image {
  flex: 1;
  width: 100%;
  max-width: 550px;
}
.hero-section .intro-text {
  flex: 1;
}
.hero-section .intro-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero-section .intro-text h2 em {
  font-style: normal;
  color: #32ff7e;
}
.hero-section .intro-text .content-p {
  color: #b2bec3;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.terminal-window {
  background: #0d0b1a;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.terminal-window:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.terminal-window {
  position: relative;
  overflow: hidden;
}
.terminal-window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(50, 255, 126, 0.1);
  animation: scan 3s linear infinite;
  pointer-events: none;
}
.terminal-window {
  font-family: "JetBrains Mono", monospace;
  overflow: hidden;
}
.terminal-window .terminal-header {
  background: #1a1b26;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.terminal-window .terminal-header .dots {
  display: flex;
  gap: 6px;
}
.terminal-window .terminal-header .dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-window .terminal-header .dots .dot.red {
  background: #ff5f56;
}
.terminal-window .terminal-header .dots .dot.yellow {
  background: #ffbd2e;
}
.terminal-window .terminal-header .dots .dot.green {
  background: #27c93f;
}
.terminal-window .terminal-header .terminal-title {
  flex-grow: 1;
  text-align: center;
  color: #b2bec3;
  font-size: 0.7rem;
}
.terminal-window .terminal-body {
  padding: 25px;
  font-size: 0.85rem;
  color: #ffffff;
}
.terminal-window .terminal-body .prompt {
  color: #32ff7e;
}
.terminal-window .terminal-body .outputprofile {
  color: #b2bec3;
}
.terminal-window .terminal-body .response {
  color: #ced6da;
  font-style: italic;
}
.terminal-window .terminal-body .specialty-output {
  color: #fff;
  background: rgba(50, 255, 126, 0.15);
  padding: 2px 8px;
  margin: 5px 0 5px 15px;
  display: inline-block;
}
.terminal-window .terminal-body .cursor-blink {
  animation: blink 1s step-end infinite;
  color: #32ff7e;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.skills-container {
  margin-top: 40px;
}
.skills-container .grid-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
}
.skills-container .grid-logos .logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.skills-container .grid-logos .logo-box:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.skills-container .grid-logos .logo-box {
  height: 110px;
  background: #0d0b1a;
  padding: 20px;
  border-radius: 4px;
  position: relative;
}
.skills-container .grid-logos .logo-box img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.skills-container .grid-logos .logo-box:hover {
  background: rgba(50, 255, 126, 0.05);
}
.skills-container .grid-logos .logo-box:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}
.skills-container .grid-logos .logo-box.highlight {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.1);
}

.social-section {
  margin-top: 60px;
}
.social-section .social-links {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}
.social-section .social-links a img {
  width: 24px;
  filter: invert(1) opacity(0.6);
  transition: all 0.3s ease;
}
.social-section .social-links a img:hover {
  filter: invert(1) opacity(1) drop-shadow(0 0 5px #32ff7e);
  transform: translateY(-3px);
}

.projects-intro {
  margin-bottom: 50px;
}
.projects-intro .hero-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.projects-intro .hero-banner:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.projects-intro .hero-banner {
  filter: grayscale(1) contrast(1.2);
  opacity: 0.7;
  margin-bottom: 30px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.projects-grid .project-card {
  background: #0d0b1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.projects-grid .project-card:hover {
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.2);
}
.projects-grid .project-card {
  padding: 20px;
}
.projects-grid .project-card .project-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.projects-grid .project-card .project-header .id-tag {
  color: #32ff7e;
  font-size: 0.7rem;
  font-family: "JetBrains Mono", monospace;
}
.projects-grid .project-card .project-header .project-name {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: 1rem;
}
.projects-grid .project-card .project-display {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.projects-grid .project-card .project-display img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.projects-grid .project-card .project-display .view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects-grid .project-card .project-display .view-overlay span {
  border: 1px solid #32ff7e;
  padding: 5px 15px;
  color: #32ff7e;
  font-family: "Orbitron", sans-serif;
}
.projects-grid .project-card .project-display:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.projects-grid .project-card .project-display:hover .view-overlay {
  opacity: 1;
}

.about-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}
.about-section .hero-h2 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.about-section .about-content .content-p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #b2bec3;
}
.about-section .about-content .content-p em {
  color: #32ff7e;
  font-style: normal;
  font-weight: bold;
}
.about-section .about-content .highlight-link {
  margin-top: 30px;
}
.about-section .about-content .highlight-link a {
  color: #32ff7e;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  border: 1px solid rgba(50, 255, 126, 0.3);
  padding: 5px 12px;
  transition: all 0.3s ease;
}
.about-section .about-content .highlight-link a:hover {
  background: rgba(50, 255, 126, 0.1);
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.2);
}

.social-section {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.social-section .section-title {
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}
.social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.social-section .social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.social-section .social-links a img {
  width: 28px;
  height: auto;
  filter: invert(1) opacity(0.5);
  transition: all 0.3s ease;
}
.social-section .social-links a:hover {
  transform: translateY(-5px);
}
.social-section .social-links a:hover img {
  filter: invert(1) opacity(1) drop-shadow(0 0 8px #32ff7e);
}

.education-box {
  margin-top: 60px;
  padding: 30px;
  background: rgba(13, 11, 26, 0.3);
  border-left: 2px solid #32ff7e;
  position: relative;
  overflow: hidden;
}
.education-box::before {
  content: "SYSTEM_LOG_FORM";
  position: absolute;
  top: 5px;
  right: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: rgba(50, 255, 126, 0.2);
}
.education-box .log-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.education-box .log-list li {
  font-family: "JetBrains Mono", monospace;
  color: #b2bec3;
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
}
.education-box .log-list li .log-date {
  color: #32ff7e;
  margin-right: 15px;
  font-weight: bold;
  white-space: nowrap;
}

#cursor, #cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}
@media (min-width: 1025px) and (pointer: fine) {
  #cursor, #cursor-follower {
    display: block;
  }
}

#cursor {
  width: 6px;
  height: 6px;
  background-color: #32ff7e;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-out;
}

@media (min-width: 1025px) {
  .cursor-hover #cursor {
    width: 12px;
    height: 12px;
    background-color: #32ff7e;
    opacity: 0;
  }
  .cursor-hover #cursor-follower {
    width: 75px;
    height: 25px;
    border-color: #32ff7e;
    background-color: rgba(50, 255, 126, 0.1);
    opacity: 0;
  }
}
@media (max-width: 1024px), (pointer: coarse) {
  #cursor, #cursor-follower {
    display: none !important;
  }
  html, body {
    cursor: auto !important;
  }
}/*# sourceMappingURL=main.css.map */