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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Orbitron", "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: #050508;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

h1 {
  font-size: 3rem;
  font-family: "Press Start 2P", cursive;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 639px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 639px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #b8b8d1;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #ff00ff;
}
a:focus-visible {
  outline: 3px solid #00ffff;
  outline-offset: 4px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}

strong {
  font-weight: 700;
  color: #ffffff;
}

code {
  font-family: "Share Tech Mono", "Courier New", monospace;
  background: rgba(0, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-size: 0.9em;
  color: #00ffff;
}

ul, ol {
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #15151f;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 4px;
  z-index: 200;
  clip: auto;
  white-space: normal;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  text-decoration: none;
}
.skip-link:focus:hover {
  background: rgba(0, 255, 255, 0.1);
}

::-moz-selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

::selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #050508;
  border-left: 1px solid rgba(0, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ffff 0%, #bf00ff 100%);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #33ffff 0%, #cc33ff 100%);
}

.container, .main-nav .nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .container, .main-nav .nav-container {
    padding: 0 1rem;
  }
}

section {
  padding: 8rem 0;
  position: relative;
}
@media (max-width: 767px) {
  section {
    padding: 6rem 0;
  }
}
@media (max-width: 639px) {
  section {
    padding: 4rem 0;
  }
}

.section-title {
  text-align: center;
  font-family: "Press Start 2P", cursive;
  font-size: 2.25rem;
  color: #00ffff;
  margin-bottom: 4rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 639px) {
  .section-title {
    font-size: 1.5rem;
  }
}
.section-title .title-bracket {
  color: #ff00ff;
  margin: 0 0.5rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 50%, transparent 100%);
}

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

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

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

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@keyframes glitch-1 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes glitch-2 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes neon-pulse {
  0%, 100% {
    text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
  }
  50% {
    text-shadow: 0 0 2px currentColor, 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor;
  }
}
@keyframes box-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px rgba(0, 255, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px rgba(0, 255, 255, 0.6);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes grid-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes racing-stripe {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scanline-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes glitch-overlay {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.8;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
            clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 0.6;
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
            clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 0.9;
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
            clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes progress-fill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes scale-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}
@keyframes data-stream {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
@keyframes border-scan {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 100%);
            clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 0 0, 0 0, 0 100%);
            clip-path: polygon(0 100%, 0 0, 0 0, 0 100%);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: scale-pulse 2s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

.animate-neon-pulse {
  animation: neon-pulse 2s ease-in-out infinite;
}

.blink {
  animation: blink 1s step-end infinite;
}

.typing-animation {
  overflow: hidden;
  border-right: 2px solid #00ffff;
  white-space: nowrap;
  animation: typing 2s steps(40) 1s 1 normal both, blink 1s step-end infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 3px solid #00ffff;
  outline-offset: 4px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn .btn-text,
.btn .btn-icon {
  position: relative;
  z-index: 1;
}
.btn .btn-icon {
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}
@media (max-width: 639px) {
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #00ffff 0%, #bf00ff 100%);
  border-color: #00ffff;
  color: #050508;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}
.btn-primary:hover {
  box-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff, 0 0 30px #bf00ff;
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  border-color: #00ffff;
  color: #00ffff;
}
.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-submit:disabled:hover {
  transform: none;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}

.cyber-card {
  background: #15151f;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.cyber-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 0, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cyber-card:hover {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  transform: translateY(-4px);
}
.cyber-card:hover::before {
  opacity: 1;
}

.about-card .card-header,
.info-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-card .card-header .card-icon,
.info-card .card-header .card-icon {
  font-size: 1.875rem;
  filter: drop-shadow(0 0 10px currentColor);
}
.about-card .card-header h3,
.info-card .card-header h3 {
  color: #00ffff;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.about-card .card-content p,
.info-card .card-content p {
  line-height: 1.75;
}

.project-card {
  background: #15151f;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 0, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.project-card:hover {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  transform: translateY(-4px);
}
.project-card:hover::before {
  opacity: 1;
}
.project-card .project-header {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(191, 0, 255, 0.2) 100%);
  overflow: hidden;
  margin: -1.75rem -2rem;
}
.project-card .project-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: grid-move 20s linear infinite;
}
.project-card .project-header .project-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.project-card .project-header .code-preview {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 2rem 1rem;
  background: rgba(5, 5, 8, 0.95);
  overflow: auto;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  display: none;
}
.project-card .project-header .code-preview.active {
  display: block;
}
@media (max-width: 767px) {
  .project-card .project-header .code-preview {
    font-size: 0.65rem;
    padding: 1.5rem 0.5rem;
  }
}
.project-card .project-header .code-preview code {
  background: none;
  padding: 0;
  color: #00ffff;
  font-size: inherit;
  display: block;
  white-space: pre;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}
.project-card .project-header .code-preview::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.project-card .project-header .code-preview::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 3px;
}
.project-card .project-header .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(21, 21, 31, 0.3) 75%, #15151f 95%, #15151f 100%);
  z-index: 2;
  pointer-events: none;
}
.project-card .project-header .preview-toggle {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  display: flex;
  gap: 0.25rem;
  background: rgba(5, 5, 8, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 2px;
  padding: 0.25rem;
}
.project-card .project-header .preview-toggle button {
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: 1px solid transparent;
  color: #6c6c8a;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.project-card .project-header .preview-toggle button:hover {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.3);
}
.project-card .project-header .preview-toggle button.active {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.project-card .project-header .project-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
  background: #fff;
  display: none;
}
.project-card .project-header .project-iframe.active {
  display: block;
}
.project-card:hover .project-thumbnail {
  opacity: 1;
  transform: scale(1.05);
}
.project-card:hover .code-preview {
  background: #050508;
}
.project-card:hover .code-preview code {
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}
.project-card .project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
.project-card .project-title {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Share Tech Mono", "Courier New", monospace;
}
.project-card .project-subtitle {
  color: #ff00ff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.project-card .project-description {
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.project-card .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-card .project-tag {
  padding: 0.25rem 1rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 2px;
  font-size: 0.75rem;
  color: #00ffff;
  font-family: "Share Tech Mono", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-card .project-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.project-card .project-link {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 2px solid #00ffff;
  border-radius: 2px;
  color: #00ffff;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.project-card .project-link:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px #00ffff;
  transform: translateY(-2px);
}
.project-card .project-link.primary {
  background: linear-gradient(135deg, #00ffff 0%, #bf00ff 100%);
  color: #050508;
  border-color: transparent;
}
.project-card .project-link.primary:hover {
  box-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff, 0 0 30px #bf00ff;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.skill-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.5);
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.skill-item .skill-icon {
  font-size: 1.5rem;
  color: #00ffff;
}
.skill-item .skill-details {
  flex: 1;
}
.skill-item .skill-name {
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  display: block;
}
.skill-item .skill-bar {
  height: 4px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.skill-item .skill-bar .skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #00ffff 0%, #bf00ff 100%);
  border-radius: 2px;
  transition: width 0.8s ease;
  box-shadow: 0 0 10px #00ffff;
  position: relative;
}
.skill-item .skill-bar .skill-progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
  animation: skill-shimmer 2s linear infinite;
}

@keyframes skill-shimmer {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(100px);
  }
}
.terminal-window {
  background: rgba(21, 21, 31, 0.9);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8), 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.terminal-window .terminal-header {
  background: rgba(5, 5, 8, 0.8);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}
.terminal-window .terminal-header .terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-window .terminal-header .terminal-button.red {
  background: #ff5f57;
}
.terminal-window .terminal-header .terminal-button.yellow {
  background: #ffbd2e;
}
.terminal-window .terminal-header .terminal-button.green {
  background: #28c840;
}
.terminal-window .terminal-header .terminal-title {
  margin-left: auto;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #6c6c8a;
}
.terminal-window .terminal-body {
  padding: 2rem;
  font-family: "Share Tech Mono", "Courier New", monospace;
}
@media (max-width: 639px) {
  .terminal-window .terminal-body {
    padding: 1.5rem;
  }
}
.terminal-window .terminal-line {
  margin-bottom: 0.5rem;
  color: #b8b8d1;
}
.terminal-window .terminal-line .prompt {
  color: #00ff41;
  margin-right: 0.5rem;
}
.terminal-window .terminal-line .command {
  color: #00ffff;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.875rem;
  color: #00ffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(21, 21, 31, 0.5);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 2px;
  color: #ffffff;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-input::-moz-placeholder {
  color: #6c6c8a;
}
.form-input::placeholder {
  color: #6c6c8a;
}
.form-input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  background: rgba(21, 21, 31, 0.8);
}
.form-input:invalid:not(:-moz-placeholder-shown) {
  border-color: #ff5f57;
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff5f57;
}
@media (max-width: 639px) {
  .form-input {
    padding: 0.5rem;
  }
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  display: block;
  margin-top: 0.25rem;
  color: #ff5f57;
  font-size: 0.75rem;
  font-family: "Share Tech Mono", "Courier New", monospace;
}
.error-message:empty {
  display: none;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050508;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen .loading-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.loading-screen .loading-logo {
  font-family: "Press Start 2P", cursive;
  font-size: 1.875rem;
  color: #00ffff;
  margin-bottom: 2rem;
}
@media (max-width: 639px) {
  .loading-screen .loading-logo {
    font-size: 1.25rem;
  }
}
.loading-screen .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.loading-screen .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff 0%, #bf00ff 100%);
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  animation: progress-fill 2s ease-in-out forwards;
}
.loading-screen .loading-text {
  font-family: "Share Tech Mono", "Courier New", monospace;
  color: #b8b8d1;
  font-size: 0.875rem;
}

.case-study-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.case-study-overlay.active {
  opacity: 1;
}

.case-study-dialog {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 10, 18, 0.95) 0%, rgba(12, 12, 22, 0.88) 100%);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 255, 0.2);
  max-width: min(920px, 100%);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.case-study-overlay.active .case-study-dialog {
  transform: translateY(0);
}

.case-study-scroll {
  overflow-y: auto;
  padding: clamp(1.5rem, 2vw, 2.5rem);
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.case-study-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.4);
  background: rgba(5, 5, 8, 0.8);
  color: #00ffff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.case-study-close:hover {
  background: rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}
.case-study-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.3);
}

.case-study-header {
  display: grid;
  gap: 1.25rem;
}

.case-study-title {
  font-family: "Orbitron", "Courier New", monospace;
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-study-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6ad5;
}

.case-study-summary {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.case-study-description {
  color: rgba(168, 168, 210, 0.9);
  line-height: 1.7;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.case-study-meta-item {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.case-study-meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.case-study-meta-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.05em;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-study-tag {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.case-study-body {
  display: grid;
  gap: 2rem;
}

.case-study-section {
  display: grid;
  gap: 1rem;
  background: rgba(0, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.case-study-section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 255, 255, 0.85);
}

.case-study-section-content p {
  color: rgba(220, 220, 255, 0.85);
  line-height: 1.75;
}

.case-study-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.case-study-list li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(220, 220, 255, 0.9);
  line-height: 1.6;
}

.case-study-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1rem;
  color: #00ffff;
}

.case-study-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.case-study-tool {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 106, 213, 0.15);
  border: 1px solid rgba(255, 106, 213, 0.35);
  color: #ff6ad5;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .case-study-dialog {
    max-height: 95vh;
  }
  .case-study-scroll {
    padding: 1.25rem;
  }
  .case-study-content {
    gap: 1.75rem;
  }
  .case-study-section {
    padding: 1.25rem;
  }
  .case-study-list li {
    padding-left: 1.35rem;
  }
}
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.main-nav.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 10px #00ffff, 0 0 20px #00ffff;
  background: rgba(5, 5, 8, 0.98);
}
.main-nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 767px) {
  .main-nav .nav-container {
    height: 70px;
  }
}
.main-nav .logo-wrapper {
  z-index: 101;
}
.main-nav .logo-wrapper .logo-text {
  font-family: "Press Start 2P", cursive;
  font-size: 1.25rem;
  color: #00ffff;
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.main-nav .logo-wrapper .logo-text:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor;
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .main-nav .logo-wrapper .logo-text {
    font-size: 1.125rem;
  }
}
@media (max-width: 639px) {
  .main-nav .logo-wrapper .logo-text {
    font-size: 1rem;
  }
}
.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .main-nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 80vw);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    background: rgba(5, 5, 8, 0.98);
    border-left: 2px solid rgba(0, 255, 255, 0.3);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  }
  .main-nav .nav-links.active {
    right: 0;
  }
}
.main-nav .nav-links li {
  list-style: none;
}
.main-nav .nav-link {
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 1rem;
  color: #b8b8d1;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.15s ease;
}
.main-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff 0%, #bf00ff 100%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #00ffff;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
  color: #00ffff;
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}
.main-nav .nav-link:hover::before, .main-nav .nav-link.active::before {
  width: 100%;
}
@media (max-width: 767px) {
  .main-nav .nav-link {
    font-size: 1.125rem;
    padding: 1rem 0;
  }
}
.main-nav .nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  position: relative;
}
@media (max-width: 767px) {
  .main-nav .nav-toggle {
    display: flex;
  }
}
.main-nav .nav-toggle .hamburger {
  width: 28px;
  height: 2px;
  background: #00ffff;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  position: relative;
  transition: all 0.3s ease;
}
.main-nav .nav-toggle .hamburger::before, .main-nav .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #00ffff;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  transition: all 0.3s ease;
}
.main-nav .nav-toggle .hamburger::before {
  top: -8px;
}
.main-nav .nav-toggle .hamburger::after {
  top: 8px;
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger {
  background: transparent;
  box-shadow: none;
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
  background: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}
.main-nav .nav-toggle:focus-visible {
  outline: 3px solid #00ffff;
  outline-offset: 4px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}

@media (max-width: 767px) {
  .nav-links.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 8, 0.8);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .hero-section {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 6rem;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .hero-section .hero-content {
    padding: 0 1rem;
  }
}
.hero-section h1.hero-title {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px rgba(0, 255, 255, 0.5), 2px 2px 0 rgba(255, 0, 255, 0.3);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .hero-section h1.hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .hero-section h1.hero-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 639px) {
  .hero-section h1.hero-title {
    font-size: 1.5rem;
  }
}
.hero-section .hero-subtitle {
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
@media (max-width: 639px) {
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
}
.hero-section .hero-subtitle .accent-text {
  color: #00ff41;
  font-weight: 700;
}
.hero-section .hero-subtitle .divider {
  color: #6c6c8a;
  margin: 0 1rem;
}
@media (max-width: 639px) {
  .hero-section .hero-subtitle .divider {
    display: none;
  }
}
@media (max-width: 639px) {
  .hero-section .hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}
.hero-section .hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #b8b8d1;
  margin-bottom: 3rem;
  max-width: 700px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}
@media (max-width: 767px) {
  .hero-section .hero-description {
    font-size: 1rem;
  }
}
.hero-section .cta-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}
@media (max-width: 639px) {
  .hero-section .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 639px) {
  .hero-section .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.racing-stripes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
}
.racing-stripes .stripe {
  position: absolute;
  width: 200%;
  height: 20px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 25%, #ff00ff 50%, #bf00ff 75%, transparent 100%);
  animation: racing-stripe 8s linear infinite;
}
.racing-stripes .stripe:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}
.racing-stripes .stripe:nth-child(2) {
  top: 50%;
  animation-delay: 2s;
}
.racing-stripes .stripe:nth-child(3) {
  top: 80%;
  animation-delay: 4s;
}

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
  pointer-events: none;
}
.cyber-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, #050508 100%);
}

.glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.glitch-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 50%, #bf00ff 100%);
  opacity: 0;
  animation: glitch-overlay 10s ease-in-out infinite;
  mix-blend-mode: overlay;
}

.about-section {
  background: linear-gradient(180deg, #050508 0%, #0a0a0f 50%, #050508 100%);
}
.about-section .about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 639px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.skills-section {
  background: #050508;
  position: relative;
}
.skills-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.skills-section .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1023px) {
  .skills-section .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.skills-section .skill-category {
  background: rgba(21, 21, 31, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.skills-section .skill-category:hover {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-4px);
}
@media (max-width: 639px) {
  .skills-section .skill-category {
    padding: 1.5rem;
  }
}
.skills-section .category-title {
  font-family: "Share Tech Mono", "Courier New", monospace;
  color: #00ffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}
.skills-section .category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00ffff 0%, transparent 100%);
  box-shadow: 0 0 10px #00ffff;
}
.skills-section .skill-list {
  display: flex;
  flex-direction: column;
}

.projects-section {
  background: linear-gradient(180deg, #050508 0%, #0a0a0f 50%, #050508 100%);
}
.projects-section .projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .projects-section .projects-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-section {
  background: #050508;
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 0, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 0, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact-section .contact-info h3 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info p {
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-section .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.05);
  border-left: 3px solid #00ffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.contact-section .contact-method:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
.contact-section .contact-method .method-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 5px currentColor);
}
.contact-section .contact-method .method-details {
  flex: 1;
}
.contact-section .contact-method .method-label {
  display: block;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #6c6c8a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.contact-section .contact-method .method-value {
  display: block;
  color: #00ffff;
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.contact-section .contact-method .method-value:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}
@media (max-width: 1023px) {
  .contact-section .contact-form-wrapper {
    order: -1;
  }
}
.contact-section .contact-form {
  padding: 3rem;
}
@media (max-width: 639px) {
  .contact-section .contact-form {
    padding: 1.5rem;
  }
}

.main-footer {
  background: #050508;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  padding: 3rem 0;
  margin-top: auto;
}
.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .main-footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.main-footer .footer-section {
  flex: 1;
  min-width: 200px;
}
.main-footer .footer-text {
  font-family: "Share Tech Mono", "Courier New", monospace;
  font-size: 0.875rem;
  color: #6c6c8a;
  margin: 0;
}
.main-footer .footer-text .accent-text {
  color: #00ffff;
  margin-right: 0.5rem;
}
.main-footer .footer-text .blink {
  color: #00ff41;
}
.main-footer #current-year {
  color: #00ffff;
}

@media (max-width: 767px) {
  section .section-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 639px) {
  section .section-title {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */