main {
  max-width: 1400px;
  margin: 0 auto;
}

.about-me-resume-info p {
  color: #ffffff;
}

.service-contents p,
.service-contents span {
  padding: 0;
  margin: 0;
}

.service-contents span {
  color: #808080;
}

.tp-process-dec br {
  display: inline !important;
}

/* --- Brandgene Network Area --- */
.network-area {
  padding: 80px 0;
  overflow: hidden;
}

.network-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Maintain Aspect Ratio for precise absolute positioning */
.network-nodes-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  /* 1000x700 */
}

@media (max-width: 991px) {
  .network-nodes-wrapper {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.network-svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media (max-width: 991px) {
  .network-svg-layer {
    display: none;
  }
}

.nt-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: ntDrawLine 2s ease forwards 0.5s;
}

.nt-line-dash {
  animation: ntFadeDash 2s ease forwards 1s;
  opacity: 0;
}

@keyframes ntDrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ntFadeDash {
  to {
    opacity: 1;
  }
}

/* Nodes Base */
.nt-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 260px;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0;
  animation: ntNodeFadeIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards var(--nt-delay, 0s);
}

@keyframes ntNodeFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 991px) {
  .nt-node {
    position: relative;
    transform: none;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 320px;
    animation: ntNodeFadeInMobile 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards var(--nt-delay, 0s);
  }

  @keyframes ntNodeFadeInMobile {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nt-center-node {
    order: -1;
  }
}

/* Center Node */
.nt-center-node {
  left: 50%;
  top: 50%;
  width: 280px;
}

.nt-center-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffaf41, #eb701b);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(235, 112, 27, 0.4), inset 0px -5px 15px rgba(0, 0, 0, 0.2);
  animation: ntPulseCenter 3s infinite alternate, ntFloatCenter 6s ease-in-out infinite;
  cursor: default;
}

.nt-center-circle h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.nt-center-circle span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Standard Nodes */
.nt-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4696f5, #17549c);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(23, 84, 156, 0.4), inset 0 -4px 10px rgba(0, 0, 0, 0.2);
  animation: ntFloat 5s ease-in-out infinite var(--nt-delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nt-node:hover .nt-circle {
  transform: scale(1.15);
  box-shadow: 0 15px 25px rgba(23, 84, 156, 0.6), inset 0 -4px 10px rgba(0, 0, 0, 0.2);
  border-color: #fff;
}

.nt-text {
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0;
  background: rgba(20, 20, 20, 0.6);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  word-break: keep-all;
}

/* Animations */
@keyframes ntPulseCenter {
  0% {
    box-shadow: 0 0 0 0 rgba(235, 112, 27, 0.5), inset 0px -5px 15px rgba(0, 0, 0, 0.3);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(235, 112, 27, 0), inset 0px -5px 15px rgba(0, 0, 0, 0.3);
  }
}

@keyframes ntFloatCenter {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ntFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Positions matching SVG viewBox="0 0 1000 700" (Pentagon layout) */
.nt-pos-1 {
  left: 50%;
  top: 15%;
  --nt-delay: 0s;
}

.nt-pos-2 {
  left: 85%;
  top: 38%;
  --nt-delay: 0.5s;
}

.nt-pos-3 {
  left: 75%;
  top: 80%;
  --nt-delay: 1.2s;
}

.nt-pos-4 {
  left: 25%;
  top: 80%;
  --nt-delay: 0.8s;
}

.nt-pos-5 {
  left: 15%;
  top: 38%;
  --nt-delay: 0.5s;
}

/* 지도 */
.root_daum_roughmap {
  width: 100% !important;
}