* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a0a12 0%, #0d1525 50%, #0a1628 100%);
  color: var(--text-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 180, 216, 0.03) 100px, rgba(0, 180, 216, 0.03) 101px), repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 180, 216, 0.03) 100px, rgba(0, 180, 216, 0.03) 101px);
  pointer-events: none;
  z-index: 0;
}

.tech-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.tech-bg .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: pulse-glow 8s ease-in-out infinite;
}
.tech-bg .glow-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.tech-bg .glow-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 108, 255, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: -50px;
  animation-delay: 3s;
}
.tech-bg .glow-orb.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 5s;
}
.tech-bg .circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent);
  height: 1px;
  animation: circuit-flow 4s linear infinite;
}
.tech-bg .circuit-line.line-1 {
  width: 200px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.tech-bg .circuit-line.line-2 {
  width: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 1.5s;
}
.tech-bg .circuit-line.line-3 {
  width: 100px;
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}
.tech-bg .corner-deco {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.15;
}
.tech-bg .corner-deco::before, .tech-bg .corner-deco::after {
  content: "";
  position: absolute;
  background: rgba(0, 180, 216, 0.8);
}
.tech-bg .corner-deco.top-right {
  top: 50px;
  right: 50px;
}
.tech-bg .corner-deco.top-right::before {
  top: 0;
  right: 0;
  width: 80px;
  height: 1px;
}
.tech-bg .corner-deco.top-right::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 80px;
}
.tech-bg .corner-deco.bottom-left {
  bottom: 50px;
  left: 50px;
}
.tech-bg .corner-deco.bottom-left::before {
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
}
.tech-bg .corner-deco.bottom-left::after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 80px;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
@keyframes circuit-flow {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(200%);
  }
}
.construction-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.9) 0%, rgba(0, 119, 182, 0.9) 100%);
  padding: 0.75rem 1rem;
  text-align: center;
}

.construction-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.construction-icon {
  display: flex;
  align-items: center;
  animation: swing 1.5s ease-in-out infinite;
}

.construction-text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
:root {
  --main-bg-color: #0a0a12;
  --text-white: white;
  --accent-color: #00b4d8;
  --accent-cyan: #0ff;
  --accent-blue: #0077b6;
  --accent-glow: rgba(0, 180, 216, 0.5);
}

#navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(28, 27, 27, 0.95), rgba(28, 27, 27, 0.8) 50%, transparent);
  backdrop-filter: blur(10px);
}
#navigation .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#navigation .nav-logo .logo-bracket {
  color: var(--accent-color);
  opacity: 0.6;
  transition: all 0.3s ease;
}
#navigation .nav-logo .logo-text {
  color: var(--text-white);
  letter-spacing: 0.1em;
}
#navigation .nav-logo:hover .logo-bracket {
  opacity: 1;
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-glow);
}
#navigation .nav-logo:hover .logo-bracket:first-child {
  transform: translateX(-3px);
}
#navigation .nav-logo:hover .logo-bracket:last-child {
  transform: translateX(3px);
}
#navigation .nav-logo:hover .logo-text {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
#navigation .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigation .nav-links li {
  position: relative;
}
#navigation .nav-link {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
#navigation .nav-link .nav-index {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}
#navigation .nav-link .nav-text {
  position: relative;
}
#navigation .nav-link .nav-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent-glow);
}
#navigation .nav-link:hover {
  color: var(--text-white);
}
#navigation .nav-link:hover .nav-index {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 10px var(--accent-color);
}
#navigation .nav-link:hover .nav-text::after {
  width: 100%;
}
#navigation .nav-link.active .nav-index {
  opacity: 1;
}
#navigation .nav-link.active .nav-text::after {
  width: 100%;
  background: var(--text-white);
  box-shadow: none;
}
#navigation .nav-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-white);
  opacity: 0.7;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
#navigation .nav-status .status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #4ade80;
}
#navigation .nav-status .status-text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#navigation .nav-status:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  #navigation {
    padding: 1rem 1.5rem;
  }
  #navigation .nav-logo {
    font-size: 1.2rem;
  }
  #navigation .nav-links {
    gap: 1.5rem;
  }
  #navigation .nav-links .nav-index {
    display: none;
  }
  #navigation .nav-status {
    display: none;
  }
}
.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  box-sizing: border-box;
}

.about-section .about-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}
.about-section .about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.about-section .photo-wrapper {
  position: relative;
  width: 300px;
  height: 380px;
  animation: float 6s ease-in-out infinite;
}
.about-section .photo-wrapper::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 20%;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.8), transparent);
  animation: pulse-line 3s ease-in-out infinite;
}
.about-section .photo-wrapper::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 30%;
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.8), transparent);
  animation: pulse-line 3s ease-in-out infinite 1.5s;
}
.about-section .photo-wrapper:hover {
  animation-play-state: paused;
}
.about-section .photo-wrapper:hover .photo-frame {
  transform: scale(1.02);
}
.about-section .photo-wrapper:hover .photo-frame::before {
  opacity: 1;
}
.about-section .photo-wrapper:hover .frame-glow {
  opacity: 0.8;
}
.about-section .photo-wrapper:hover .profile-image {
  filter: brightness(1.1) contrast(1.05);
}
.about-section .photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 180, 216, 0.15);
}
.about-section .photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.6), rgba(100, 108, 255, 0.4), rgba(0, 180, 216, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.about-section .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 180, 216, 0.02) 2px, rgba(0, 180, 216, 0.02) 4px);
  pointer-events: none;
  z-index: 3;
}
.about-section .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: all 0.4s ease;
}
.about-section .frame-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
  opacity: 0.4;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(20px);
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes float-delayed {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-line {
  0%, 100% {
    opacity: 0.3;
    height: 60%;
  }
  50% {
    opacity: 0.8;
    height: 70%;
  }
}
@keyframes scanline {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes glitch {
  0% {
    opacity: 0;
    transform: translate(0);
  }
  20% {
    opacity: 0.8;
    transform: translate(-5px, 2px);
    filter: hue-rotate(90deg);
  }
  40% {
    opacity: 0.6;
    transform: translate(5px, -2px);
    filter: hue-rotate(-90deg);
  }
  60% {
    opacity: 0.8;
    transform: translate(-2px, 5px);
  }
  80% {
    opacity: 0.4;
    transform: translate(2px, -5px);
    filter: hue-rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(0);
  }
}
@keyframes text-flicker {
  0%, 100% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  93% {
    opacity: 0.8;
  }
  94% {
    opacity: 1;
  }
  95% {
    opacity: 0.9;
  }
  96% {
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.about-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-section .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
  opacity: 0.7;
  transition: all 0.4s ease;
  padding: 0.5rem 0.75rem;
  position: relative;
  overflow: hidden;
}
.about-section .contact-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.4s ease;
}
.about-section .contact-item svg {
  flex-shrink: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.about-section .contact-item span {
  transition: transform 0.3s ease;
}
.about-section .contact-item:hover {
  opacity: 1;
}
.about-section .contact-item:hover::after {
  width: 100%;
}
.about-section .contact-item:hover svg {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 8px var(--accent-color));
}
.about-section .contact-item:hover span {
  transform: translateX(5px);
}
.about-section .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.about-section .social-link {
  position: relative;
  color: var(--text-white);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}
.about-section .social-link svg {
  transition: transform 0.3s ease;
}
.about-section .social-link:hover {
  opacity: 1;
  color: var(--main-bg-color);
  transform: translateY(-5px);
}
.about-section .social-link:hover::before {
  transform: scale(1);
}
.about-section .social-link:hover svg {
  transform: scale(1.1);
}
.about-section .social-link:nth-child(1) {
  transition-delay: 0s;
}
.about-section .social-link:nth-child(2) {
  transition-delay: 0.05s;
}
.about-section .social-link:nth-child(3) {
  transition-delay: 0.1s;
}
.about-section .social-links:hover .social-link:not(:hover) {
  opacity: 0.3;
  transform: scale(0.95);
}
.about-section .about-right {
  flex: 1;
  animation: float-delayed 7s ease-in-out infinite;
}
.about-section .about-title {
  margin: 0 0 2rem 0;
  line-height: 1.1;
}
.about-section .about-title span {
  display: block;
}
.about-section .about-title .title-hello {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.about-section .about-title .title-hello::before {
  content: "// ";
  opacity: 0.5;
}
.about-section .about-title .title-hello::after {
  content: "_";
  animation: blink 1s step-end infinite;
}
.about-section .about-title .title-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.about-section .about-title .title-name:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 40px var(--accent-glow);
  letter-spacing: 0.08em;
}
.about-section .about-title .title-job {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}
.about-section .about-title .title-job::before {
  content: "< ";
  opacity: 0.5;
  transition: all 0.3s ease;
}
.about-section .about-title .title-job::after {
  content: " />";
  opacity: 0.5;
  transition: all 0.3s ease;
}
.about-section .about-title .title-job:hover {
  text-shadow: 0 0 30px var(--accent-glow);
  letter-spacing: 0.15em;
}
.about-section .about-title .title-job:hover::before {
  opacity: 1;
  margin-right: 5px;
}
.about-section .about-title .title-job:hover::after {
  opacity: 1;
  margin-left: 5px;
}
.about-section .about-text {
  margin-bottom: 2rem;
}
.about-section .about-text p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.75;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}
.about-section .about-text p:hover {
  opacity: 1;
  border-left-color: var(--accent-color);
  background: linear-gradient(90deg, rgba(100, 108, 255, 0.05), transparent);
  transform: translateX(5px);
}
.about-section .about-text p:last-child {
  margin-bottom: 0;
}
.about-section .cta-button {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  overflow: hidden;
}
.about-section .cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.about-section .cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.about-section .cta-button:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}
.about-section .cta-button:hover::after {
  left: 100%;
}

@media (max-width: 900px) {
  .about-section .about-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .about-section .about-title .title-name {
    font-size: 3rem;
  }
  .about-section .photo-wrapper {
    width: 250px;
    height: 320px;
  }
  .about-section .contact-info {
    align-items: center;
  }
}
.projects-section {
  background: var(--main-bg-color);
}
.projects-section .projects-container {
  max-width: 1200px;
  width: 100%;
}
.projects-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in-up 0.8s ease forwards;
}
.projects-section .section-index {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--accent-color);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}
.projects-section .section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--text-white);
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.projects-section .section-title .title-bracket {
  color: var(--accent-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.projects-section .section-title:hover .title-bracket {
  opacity: 1;
  text-shadow: 0 0 20px var(--accent-glow);
}
.projects-section .section-subtitle {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--text-white);
  opacity: 0.5;
  margin: 0;
}
.projects-section .section-subtitle::before {
  content: "$ ";
  color: var(--accent-color);
}
.projects-section .section-subtitle::after {
  content: "_";
  animation: blink 1s step-end infinite;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.projects-section .project-card-link {
  text-decoration: none;
  display: block;
}
.projects-section .project-card {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.projects-section .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.projects-section .project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(100, 108, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(100, 108, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.projects-section .project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 108, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(100, 108, 255, 0.1);
}
.projects-section .project-card:hover::before {
  opacity: 1;
}
.projects-section .project-card:hover::after {
  opacity: 1;
}
.projects-section .project-card:hover .project-index {
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-glow);
}
.projects-section .project-card:hover .project-title {
  color: var(--text-white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.projects-section .project-card:hover .deco-line {
  width: 100%;
  opacity: 1;
}
.projects-section .project-card:hover .project-link {
  opacity: 1;
}
.projects-section .project-card:nth-child(1) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}
.projects-section .project-card:nth-child(2) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.projects-section .project-card:nth-child(3) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.projects-section .project-card:nth-child(4) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
.projects-section .project-card:nth-child(5) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.projects-section .project-card:nth-child(6) {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
.projects-section .project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.projects-section .project-index {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--text-white);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.projects-section .project-index::before {
  content: "#";
  opacity: 0.5;
}
.projects-section .project-links {
  display: flex;
  gap: 0.75rem;
}
.projects-section .project-link {
  color: var(--text-white);
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 0.25rem;
}
.projects-section .project-link:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateY(-2px);
}
.projects-section .project-link:hover svg {
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.projects-section .project-content {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.projects-section .project-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--text-white);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.projects-section .project-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-white);
  opacity: 0.7;
  margin: 0;
}
.projects-section .project-footer {
  position: relative;
  z-index: 1;
}
.projects-section .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.projects-section .tag {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: var(--accent-color);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(100, 108, 255, 0.3);
  background: rgba(100, 108, 255, 0.05);
  transition: all 0.3s ease;
}
.projects-section .tag:hover {
  background: rgba(100, 108, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(100, 108, 255, 0.2);
}
.projects-section .project-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
}
.projects-section .project-decoration .deco-line {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  opacity: 0;
  transition: all 0.5s ease;
}
.projects-section .projects-footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.projects-section .view-more {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-white);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.projects-section .view-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 108, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.projects-section .view-more svg {
  transition: transform 0.3s ease;
}
.projects-section .view-more:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 30px rgba(100, 108, 255, 0.2);
}
.projects-section .view-more:hover::before {
  left: 100%;
}
.projects-section .view-more:hover svg {
  transform: translateX(5px);
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .projects-section .section-title {
    font-size: 3rem;
  }
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .projects-section .section-title {
    font-size: 2.5rem;
  }
  .projects-section .project-card {
    padding: 1.5rem;
  }
}
.project-detail-section {
  padding-top: 8rem;
  min-height: auto;
}
.project-detail-section .project-detail-container {
  max-width: 1400px;
  width: 100%;
}
.project-detail-section .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.project-detail-section .back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-white);
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
}
.project-detail-section .back-link svg {
  transition: transform 0.3s ease;
}
.project-detail-section .back-link:hover {
  opacity: 1;
  color: var(--accent-color);
  border-color: rgba(100, 108, 255, 0.3);
}
.project-detail-section .back-link:hover svg {
  transform: translateX(-5px);
}
.project-detail-section .project-meta {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--text-white);
  opacity: 0.5;
}
.project-detail-section .project-meta .meta-separator {
  margin: 0 0.5rem;
  color: var(--accent-color);
}
.project-detail-section .project-title-section {
  text-align: center;
  margin-bottom: 4rem;
}
.project-detail-section .project-index {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  color: var(--accent-color);
  opacity: 0.7;
}
.project-detail-section .project-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--text-white);
  margin: 0.5rem 0;
  letter-spacing: 0.05em;
  line-height: 1;
}
.project-detail-section .project-subtitle {
  font-size: 1.1rem;
  color: var(--text-white);
  opacity: 0.6;
  margin: 0 0 2rem 0;
}
.project-detail-section .project-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.project-detail-section .project-links .project-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--text-white);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.project-detail-section .project-links .project-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(100, 108, 255, 0.2);
}
.project-detail-section .project-links .project-link:hover svg {
  filter: drop-shadow(0 0 5px var(--accent-color));
}
.project-detail-section .bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
  margin-bottom: 4rem;
}
.project-detail-section .bento-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.project-detail-section .bento-item.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-detail-section .bento-item.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}
.project-detail-section .bento-item.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}
.project-detail-section .bento-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(100, 108, 255, 0.15);
  z-index: 10;
}
.project-detail-section .bento-item:hover .bento-overlay {
  opacity: 1;
}
.project-detail-section .bento-item:hover .bento-image img,
.project-detail-section .bento-item:hover .image-placeholder {
  transform: scale(1.05);
}
.project-detail-section .bento-item[data-index="1"] {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}
.project-detail-section .bento-item[data-index="2"] {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.project-detail-section .bento-item[data-index="3"] {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.project-detail-section .bento-item[data-index="4"] {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
.project-detail-section .bento-item[data-index="5"] {
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.project-detail-section .bento-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project-detail-section .bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-detail-section .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.9) 0%, rgb(20, 20, 35) 100%);
  transition: transform 0.5s ease;
}
.project-detail-section .image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(100, 108, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(100, 108, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.project-detail-section .image-placeholder .placeholder-icon {
  color: var(--accent-color);
  opacity: 0.3;
}
.project-detail-section .image-placeholder .placeholder-text {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-white);
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-detail-section .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-detail-section .bento-overlay .overlay-index {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}
.project-detail-section .bento-overlay .overlay-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--text-white);
  letter-spacing: 0.05em;
}
.project-detail-section .project-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.project-detail-section .content-block {
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.5) 0%, rgba(20, 20, 35, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
}
.project-detail-section .content-block:hover {
  border-color: rgba(100, 108, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.project-detail-section .block-title {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--accent-color);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-detail-section .block-title .title-icon {
  opacity: 0.5;
}
.project-detail-section .block-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-white);
  opacity: 0.8;
  margin: 0;
}
.project-detail-section .features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.project-detail-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-white);
  opacity: 0.8;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.project-detail-section .feature-item:last-child {
  border-bottom: none;
}
.project-detail-section .feature-item:hover {
  opacity: 1;
  padding-left: 0.5rem;
  border-bottom-color: rgba(100, 108, 255, 0.2);
}
.project-detail-section .feature-item:hover .feature-bullet {
  color: var(--accent-color);
}
.project-detail-section .feature-item .feature-bullet {
  font-family: "Courier New", monospace;
  color: var(--text-white);
  opacity: 0.4;
  transition: color 0.3s ease;
}
.project-detail-section .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-detail-section .tech-tag {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(100, 108, 255, 0.3);
  background: rgba(100, 108, 255, 0.05);
  transition: all 0.3s ease;
}
.project-detail-section .tech-tag:hover {
  background: rgba(100, 108, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(100, 108, 255, 0.2);
  transform: translateY(-2px);
}
.project-detail-section .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.project-detail-section .nav-project {
  text-decoration: none;
  padding: 1rem;
  transition: all 0.3s ease;
}
.project-detail-section .nav-project .nav-label {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: var(--text-white);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.project-detail-section .nav-project .nav-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--text-white);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.project-detail-section .nav-project:hover .nav-title {
  color: var(--accent-color);
  text-shadow: 0 0 20px var(--accent-glow);
}
.project-detail-section .nav-project.nav-prev:hover .nav-title {
  transform: translateX(-5px);
}
.project-detail-section .nav-project.nav-next {
  text-align: right;
}
.project-detail-section .nav-project.nav-next:hover .nav-title {
  transform: translateX(5px);
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .project-detail-section .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .project-detail-section .bento-item {
    min-height: 200px;
  }
  .project-detail-section .bento-item.bento-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }
  .project-detail-section .project-content-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .project-detail-section .project-title {
    font-size: 3rem;
  }
  .project-detail-section .bento-gallery {
    grid-template-columns: 1fr;
  }
  .project-detail-section .bento-item {
    min-height: 200px;
  }
  .project-detail-section .bento-item.bento-large {
    grid-column: span 1;
    min-height: 250px;
  }
  .project-detail-section .project-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  .project-detail-section .project-navigation .nav-next {
    text-align: left;
  }
}
:root {
  --admin-bg: #f5f7fa;
  --admin-sidebar-bg: #1e293b;
  --admin-sidebar-text: #94a3b8;
  --admin-sidebar-active: #ffffff;
  --admin-sidebar-hover: #334155;
  --admin-accent: #3b82f6;
  --admin-accent-hover: #2563eb;
  --admin-white: #ffffff;
  --admin-border: #e2e8f0;
  --admin-text: #334155;
  --admin-text-muted: #64748b;
  --admin-success: #22c55e;
  --admin-warning: #f59e0b;
  --admin-danger: #ef4444;
}

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

body.admin-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--admin-text);
  background-color: var(--admin-bg);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background-color: var(--admin-sidebar-bg);
  color: var(--admin-sidebar-text);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
}
.admin-sidebar__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-sidebar__footer {
  margin-top: auto;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--admin-sidebar-active);
}
.admin-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--admin-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}
.admin-logo__text {
  font-size: 1.25rem;
  font-weight: 600;
}

.admin-nav {
  padding: 1rem 0;
  flex: 1;
}
.admin-nav__list {
  list-style: none;
}
.admin-nav__item {
  margin: 0.25rem 0.75rem;
}
.admin-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--admin-sidebar-text);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.admin-nav__link:hover {
  background-color: var(--admin-sidebar-hover);
  color: var(--admin-sidebar-active);
}
.admin-nav__link.active {
  background-color: var(--admin-accent);
  color: var(--admin-sidebar-active);
}
.admin-nav__link--secondary {
  font-size: 0.875rem;
}
.admin-nav__icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.admin-main {
  flex: 1;
  margin-left: 250px;
  display: flex;
  flex-direction: column;
}

.admin-header {
  background-color: var(--admin-white);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-header__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-header__actions {
  display: flex;
  gap: 0.75rem;
}

.admin-content {
  padding: 2rem;
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn--primary {
  background-color: var(--admin-accent);
  color: var(--admin-white);
}
.btn--primary:hover {
  background-color: var(--admin-accent-hover);
}
.btn--secondary {
  background-color: var(--admin-white);
  color: var(--admin-text);
  border: 1px solid var(--admin-border);
}
.btn--secondary:hover {
  background-color: var(--admin-bg);
}
.btn--danger {
  background-color: var(--admin-danger);
  color: var(--admin-white);
}
.btn--danger:hover {
  background-color: #dc2626;
}
.btn--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

.card {
  background-color: var(--admin-white);
  border-radius: 8px;
  border: 1px solid var(--admin-border);
}
.card__header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--admin-border);
  font-weight: 600;
}
.card__body {
  padding: 1.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--admin-border);
}
.table th {
  font-weight: 600;
  color: var(--admin-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--admin-bg);
}
.table tr:hover td {
  background-color: #f8fafc;
}
.table__actions {
  display: flex;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--admin-text);
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}
.badge--primary {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--admin-accent);
}
.badge--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--admin-success);
}
.badge--warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--admin-warning);
}
.badge--danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--admin-danger);
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.alert--success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #166534;
}
.alert--danger {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
}
.alert--warning {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #92400e;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--admin-text-muted);
}
.empty-state__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}
.empty-state__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--admin-text);
  margin-bottom: 0.5rem;
}
.empty-state__text {
  margin-bottom: 1.5rem;
}

.text-muted {
  color: var(--admin-text-muted);
}

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

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

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas_neue/BebasNeue-Regular-rIndA11.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/structures/general.scss%22,%22../../assets/styles/theme/colors.scss%22,%22../../assets/styles/components/navigation.scss%22,%22../../assets/styles/sections/about.scss%22,%22../../assets/styles/sections/projects.scss%22,%22../../assets/styles/sections/project-detail.scss%22,%22../../assets/styles/admin.scss%22,%22../../assets/styles/app.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA,YAEE;EAeF;EACA;;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAEA;EAEE;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAMR;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;;EAEF;IACE;IACA;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;;EAEF;IACE;;;AC3OJ;EACE;EACA;EACA;EACA;EACA;EACA;;;ACNF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAMA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAIA;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;AAMN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACE;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAMF;EACE;;AAGF;EACE;EACA;EACA;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;;AAMN;EACE;IACE;;EAEA;IACE;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;;;AC5MN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAMA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAMA;;AAIF;EACE;;AAEA;EACE;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YACE;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EAMA,cACE;EAEF;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EAOA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EAKA;EACA;EACA;EACA;;AAGF;EACE;IAAW;;EACX;IAAM;;;AAGR;EACE;IAAW;;EACX;IAAM;;;AAGR;EACE;IAAW;IAAc;;EACzB;IAAM;IAAc;;;AAGtB;EACE;IAAK;;EACL;IAAO;;;AAGT;EACE;IACE;IACA;;EAEF;IACE;IACA;IACA;;EAEF;IACE;IACA;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IAAW;;EACX;IAAM;;EACN;IAAM;;EACN;IAAM;;EACN;IAAM;;EACN;IAAM;;;AAGR;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IAAW;;EACX;IAAM;;;AAIR;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAMN;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAKJ;EAAiB;;AACjB;EAAiB;;AACjB;EAAiB;;AAGnB;EACE;EACA;;AAIF;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,aACE;EAEF;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAMR;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EAKA;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA,cACE;EAEF;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAMA;;AAGF;EACE;EACA;EACA,YACE;;AAGF;EACE;;;AAOR;EAEI;IACE;IACA;IACA;;EAIA;IACE;;EAIJ;IACE;IACA;;EAGF;IACE;;;AC/iBN;EACE;;AAEA;EACE;EACA;;AAIF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAKJ;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA,kBACE;EAEF;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA,YACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAMF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAKN;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAKN;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IAAW;;EACX;IAAM;;;;AAKV;EAEI;IACE;;EAGF;IACE;;;AAKN;EAEI;IACE;;EAGF;IACE;;;ACtWN;EACE;EACA;;AAEA;EACE;EACA;;AAIF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAOR;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAIF;EACE;EACA;EACA,YACE;EAEF;;AAEA;EACE;;AAGF;AAAA;EAEE;;AAMF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAHF;EACE;EACA;EACA;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACE;EACF;;AAGA;EACE;EACA;EACA;EACA,kBACE;EAEF;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EAKA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;;AAIJ;EACE;;AAGF;EACE;;AAEA;EACE;;AAKN;EACE;IACE;IACA;;EAEF;IACE;IACA;;;;AAMN;EAEI;IACE;IACA;;EAGF;IACE;;EAEA;IACE;IACA;IACA;;EAIJ;IACE;;;AAKN;EAEI;IACE;;EAGF;IACE;;EAGF;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;IACA;;EAEA;IACE;;;AC3dR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;;AAKJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;;;AAKJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;AAKJ;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;;AAKJ;EACE;;AAEA;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAKJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;;AAKJ;EACE;;;AAGF;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AAER;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AACR;EAAQ;;;AC/XR;EACE;EACA;EACA;EACA;EACA%22,%22file%22:%22app.output.css%22%7D */
