.push-content {
  min-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInCustom 1.5s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeInCustom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-body .profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 1.5s ease-out;
}

.portfolio-body .profile-img-container {
  margin-bottom: 40px;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

.portfolio-body .profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #333;
  filter: grayscale(20%) contrast(110%);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.portfolio-body .profile-section h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out 0.4s backwards;
}

.portfolio-body .profile-section h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  animation: fadeUp 1s ease-out 0.6s backwards;
}

.portfolio-body .profile-section p {
  max-width: 600px;
  font-size: 18px;
  color: var(--color-text-muted);
  animation: fadeUp 1s ease-out 0.8s backwards;
}

.portfolio-body .grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 20px;
}

.portfolio-body #tech-specs .section-title,
.portfolio-body #gallery .section-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
  text-align: center;
}

.portfolio-body .box-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.portfolio-body .skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-body .skill-tag {
  background-color: var(--color-surface);
  color: var(--color-text);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-body .skill-tag:hover {
  border-color: var(--color-text);
  transform: scale(1.05);
}

.portfolio-body .project-list {
  list-style: none;
}

.portfolio-body .project-item {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.portfolio-body .project-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.portfolio-body .project-item p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.portfolio-body .gallery-wrapper {
  width: 100%;
  padding-left: calc((100vw - min(100% - 2rem, var(--layout-container))) / 2);
  padding-right: 20px;
}

.portfolio-body .gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: var(--color-border) transparent;
  /*👉scrollbar-width: none;
	-ms-overflow-style: none;👈*/
}

.portfolio-body .gallery-scroll::-webkit-scrollbar {
  display: block !important;
  height: 10px;
}

.portfolio-body .gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-body .gallery-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 10px;
  transition: background 0.3s;
}

.portfolio-body .gallery-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-text-muted);
}

.portfolio-body .gallery-card {
  width: 500px;
  min-width: 300px;
  max-width: 80vw;
  height: 320px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.portfolio-body .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-body .gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.portfolio-body .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 18px;
  font-weight: 600;
}

.portfolio-body .contact-section {
  text-align: center;
  padding: 120px 20px;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 12, 0.5));
}

.portfolio-body .contact-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.portfolio-body .contact-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 50px;
}

.portfolio-body .contact-form {
  max-width: 500px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.portfolio-body .form-group {
  width: 100%;
}

.portfolio-body .form-input {
  width: 100%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.portfolio-body .form-input::placeholder {
  color: #666666;
}

.portfolio-body .form-input:focus {
  border-color: #55555a;
  background-color: #1a1a1c;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.portfolio-body textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.portfolio-body .submit-button {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 18px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.portfolio-body .submit-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.portfolio-body .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.portfolio-body .social-links a {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color 0.3s;
}

.portfolio-body .social-links a:hover {
  color: var(--color-text);
}

@media (max-width: 767px) {
  .portfolio-body .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .portfolio-body .contact-section {
    padding: 96px 20px;
  }

  .portfolio-body .contact-subtitle {
    font-size: 18px;
  }

  .portfolio-body .gallery-wrapper {
    padding-left: 20px;
  }

  .portfolio-body .gallery-card {
    width: 86vw;
    height: 280px;
  }
}

@media (min-width: 768px) {
  .portfolio-body .grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .portfolio-body .gallery-wrapper {
    padding-left: 20px;
  }
}

.portfolio-body #tech-specs,
.portfolio-body #gallery,
.portfolio-body #contact {
  padding-block: 80px;
}
