* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Exo 2", sans-serif;
  color: #f1f1f1;
  background-color: #121212;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

#threejs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section {
  padding: 60px 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  border-radius: 2px;
}

.footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitch::before {
  color: #0ff;
  z-index: -1;
  animation: glitch-effect 3s infinite;
}
.glitch::after {
  color: #f0f;
  z-index: -2;
  animation: glitch-effect 2s infinite reverse;
}

@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}
.floating-avatar {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.skill-card {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.skill-card.visible {
  opacity: 1;
  transform: scale(1);
}

.timeline-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item:nth-child(even) {
  transform: translateX(50px);
}
.timeline-item:nth-child(even).visible {
  transform: translateX(0);
}

.project-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotateX(0);
  }
  50% {
    transform: translateY(-20px) rotateX(10deg);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(200px);
}

.navbar {
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}
.nav-menu a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.4s;
}
.nav-menu a:hover {
  background: rgba(157, 78, 221, 0.3);
  box-shadow: 0 0 15px #4776e6;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}
.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  position: relative;
  right: -40%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  overflow: hidden;
}
.burger-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.burger-menu:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(110, 72, 170, 0.3);
}
.burger-menu:hover::before {
  opacity: 0.1;
}
.burger-menu span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #f1f1f1;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  left: 50%;
  transform-origin: center;
}
.burger-menu span:nth-child(1) {
  top: 12px;
  transform: translateX(-50%);
}
.burger-menu span:nth-child(2) {
  top: 19px;
  transform: translateX(-50%);
  width: 16px;
}
.burger-menu span:nth-child(3) {
  top: 26px;
  transform: translateX(-50%);
}
.burger-menu.active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 19px;
  width: 20px;
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scale(0);
}
.burger-menu.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 19px;
  width: 20px;
}

.github-icon-container {
  position: absolute;
  left: 40px;
  top: 55%;
  transform: translateY(-50%);
}

.github-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.github-icon:hover {
  background: rgba(157, 78, 221, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 15px #4776e6;
}

.github-svg {
  transition: transform 0.3s;
}
.github-icon:hover .github-svg {
  transform: scale(1.1);
}

.github-body {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.github-arm {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 9px 18px;
  transition: transform 0.3s;
}
.github-icon:hover .github-arm {
  animation: wave 0.8s ease-in-out;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 20%;
  color: #4d4d4d;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgba(0, 0, 0, 0.5);
  color: white;
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}
.example-2 .icon-content a[data-social=telegram] .filled,
.example-2 .icon-content a[data-social=telegram] ~ .tooltip {
  background-color: #0088cc;
}
.example-2 .icon-content a[data-social=vk] .filled,
.example-2 .icon-content a[data-social=vk] ~ .tooltip {
  background-color: #4c75a3;
}
.example-2 .icon-content a[data-social=email] .filled,
.example-2 .icon-content a[data-social=email] ~ .tooltip {
  background-color: #6e48aa;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.btn-primary {
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  color: white;
  box-shadow: 0 4px 15px rgba(110, 72, 170, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110, 72, 170, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #f1f1f1;
  border: 2px solid #f1f1f1;
}
.btn-secondary:hover {
  background: #f1f1f1;
  color: #121212;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}
.about-text p {
  margin-bottom: 20px;
}

.about-name {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #f1f1f1;
  font-weight: 300;
}

.name-highlight {
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6e48aa;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.floating-avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: url("../images/avatar.jpg") center/cover;
  position: relative;
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
}

.skill-card {
  position: relative;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #4776e6, #6e48aa) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.skill-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(110, 72, 170, 0.1), rgba(157, 80, 187, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.skill-card:hover {
  box-shadow: 0 15px 30px rgba(110, 72, 170, 0.2);
  border-color: rgba(110, 72, 170, 0.3);
}
.skill-card:hover::before {
  opacity: 1;
}
.skill-card:hover::after {
  opacity: 1;
}

.skill-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}
.skill-card:hover .skill-icon {
  transform: scale(1.1);
}

.skill-name {
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.skill-card:hover .skill-name {
  background: linear-gradient(135deg, #f1f1f1, #6e48aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 95%;
  background: linear-gradient(to bottom, #6e48aa, #9d50bb);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 50%;
  padding-right: 3rem;
}
.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  padding-right: 0;
}

.timeline-marker {
  position: absolute;
  right: -16px;
  top: 15px;
  width: 32px;
  height: 32px;
  background: #121212;
  border-radius: 50%;
  border: 4px solid #6e48aa;
  box-shadow: 0 0 0 6px rgba(110, 72, 170, 0.2), 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-marker::before {
  content: "";
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(110, 72, 170, 0.3), 0 8px 30px rgba(0, 0, 0, 0.4);
}
.timeline-item:nth-child(even) .timeline-marker {
  left: -16px;
  right: auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(110, 72, 170, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(110, 72, 170, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(110, 72, 170, 0);
  }
}
.timeline-content {
  background: rgba(30, 30, 30, 0.8);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #6e48aa, #9d50bb);
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-item:nth-child(even) .timeline-content::before {
  left: auto;
  right: 0;
}
.timeline-content:hover {
  transform: translateY(-5px);
}
.timeline-content:hover::before {
  opacity: 1;
}

.timeline-year {
  font-size: 1.1em;
  font-weight: 700;
  color: #6e48aa;
  margin-bottom: 0.5rem;
  font-family: "Roboto Mono", monospace;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-company {
  color: #9d50bb;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 25px;
}

.project-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(110, 72, 170, 0.1));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(110, 72, 170, 0.2);
  position: relative;
}
.project-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4776e6, #6e48aa);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.project-card:hover {
  box-shadow: 0 20px 40px rgba(110, 72, 170, 0.15);
  border-color: rgba(110, 72, 170, 0.4);
}
.project-card:hover::before {
  transform: scaleX(1);
}

.project-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 24px;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #f1f1f1, #6e48aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag {
  background: rgba(110, 72, 170, 0.15);
  color: #6e48aa;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-family: "Saira Stencil One", monospace;
  border: 1px solid rgba(110, 72, 170, 0.3);
  transition: all 0.3s;
}
.tech-tag:hover {
  background: rgba(110, 72, 170, 0.25);
  transform: translateY(-2px);
}

.project-links {
  display: flex;
  gap: 16px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(110, 72, 170, 0.1);
  color: #f1f1f1;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.project-link:hover {
  background: #4776e6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 72, 170, 0.3);
}

.error-page {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.error-content {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.error-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  perspective: 1000px;
}

.error-digit {
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(110, 72, 170, 0.3);
  animation: float 3s ease-in-out infinite;
}
.error-digit:nth-child(1) {
  animation-delay: 0s;
}
.error-digit:nth-child(2) {
  animation-delay: 0.2s;
  transform: translateY(20px);
}
.error-digit:nth-child(3) {
  animation-delay: 0.4s;
  transform: translateY(-10px);
}

.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f1f1f1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.error-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(241, 241, 241, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-actions .btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.error-actions .btn-primary {
  background: linear-gradient(45deg, #6e48aa, #9d50bb);
  color: white;
  box-shadow: 0 4px 15px rgba(110, 72, 170, 0.4);
}
.error-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110, 72, 170, 0.6);
}
.error-actions .btn-secondary {
  background: transparent;
  color: #f1f1f1;
  border: 2px solid #f1f1f1;
}
.error-actions .btn-secondary:hover {
  background: #f1f1f1;
  color: #121212;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  header {
    backdrop-filter: blur(35px);
  }
  .burger-menu {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(15px);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(110, 72, 170, 0.1), transparent 50%), radial-gradient(circle at 70% 80%, rgba(157, 80, 187, 0.1), transparent 50%);
    pointer-events: none;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    text-align: center;
    position: relative;
    gap: 20px;
    bottom: 20px;
    z-index: 1;
  }
  .nav-menu ul li {
    width: 100%;
    text-align: center;
  }
  .nav-menu ul li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 28px;
    padding: 20px 40px;
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  .nav-menu ul li a:hover {
    transform: translateY(-3px);
    background: rgba(110, 72, 170, 0.2);
    box-shadow: 0 10px 30px rgba(110, 72, 170, 0.3);
  }
  .nav-menu ul li a:hover::before {
    left: 100%;
  }
  .nav-menu ul li:last-child a {
    border-bottom: none;
  }
  .burger-menu {
    display: flex;
    z-index: 1001;
  }
  .nav-brand {
    display: none;
  }
  .github-icon-container {
    right: 60px;
  }
  .github-icon {
    width: 35px;
    height: 35px;
  }
  .github-svg {
    width: 24px;
    height: 24px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .about-stats {
    justify-content: center;
    gap: 30px;
  }
  .contact-content {
    padding: 0 20px;
  }
  .contact-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .social-links {
    gap: 20px;
    margin-bottom: 30px;
  }
  .social-link {
    min-width: 120px;
    padding: 15px;
  }
  .link-icon {
    font-size: 1.5rem;
  }
  .link-text {
    font-size: 0.8rem;
  }
  .floating-dots {
    gap: 15px;
  }
  .dot {
    width: 6px;
    height: 6px;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 70px;
    padding-right: 20px;
  }
  .timeline-marker {
    left: 15px !important;
    right: auto !important;
  }
  .timeline-content::before {
    left: 0 !important;
    right: auto !important;
  }
  .error-digit {
    font-size: 5rem;
  }
  .error-title {
    font-size: 2rem;
  }
  .error-description {
    font-size: 1rem;
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 30px 0;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .about-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .stat {
    text-align: center;
  }
  .error-digit {
    font-size: 4rem;
    gap: 10px;
  }
  .error-title {
    font-size: 1.7rem;
  }
}

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