/* Main 페이지 전용 스타일 */

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

/* Top Header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #6b6b6b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

/* Back Button */
.back-button {
  background-color: #252525;
  border: 1px solid #3f3f3f;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.7rem;
  font-weight: 400;
  height: 30px;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 130px;
}

.back-button:hover {
  background-color: rgba(24, 28, 37, 0.9);
}

/* Login Button */
.login-button {
  justify-self: end;
  min-width: 130px;
  justify-content: center;
}

/* Desktop Header Navigation */
.header-nav.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-link {
  font-family: "Lora", serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 1;
  color: #ffffff;
}

.nav-link.active {
  opacity: 1;
  font-weight: 500;
}

/* Mobile Navigation Dropdown */
.mobile-nav-dropdown {
  display: none;
  position: relative;
  justify-self: center;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.mobile-nav-toggle:hover {
  opacity: 1;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: #252525;
  border: 1px solid #3f3f3f;
  border-radius: 3px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  min-width: 200px;
  white-space: nowrap;
}

.mobile-nav-menu.active {
  display: flex;
}

.mobile-nav-link {
  font-family: "Lora", serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  opacity: 0.8;
  white-space: nowrap;
  width: 100%;
  display: block;
  text-align: center;
}

.mobile-nav-link:hover {
  opacity: 1;
  background-color: rgba(24, 28, 37, 0.9);
}

.mobile-nav-link.active {
  opacity: 1;
  font-weight: 500;
  background-color: rgba(24, 28, 37, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: #181c25;
}

.about-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Projects container - 더 적절한 높이 설정 */
.projects-container {
  min-height: auto;
  height: fit-content;
}

/* Background Image */
.background-image {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-image: url("/bg/1.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #181c25;
  z-index: 2;
  transition: opacity 0.6s ease;
}

/* Dark Overlay */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(24, 28, 37, 0.8);
  z-index: 2;
}

/* Main Content */
.about-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  padding: 5rem 2rem;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
}

/* Left Column - Branding & Title */
.left-column {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  position: sticky;
  top: 5rem;
  align-self: flex-start;
  height: fit-content;
  max-height: calc(100vh - 10rem);
}

.studio-name {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.about-title {
  font-family: "Lora", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* Right Column - Content */
.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-top: 2rem;
  max-width: 100%;
  overflow: hidden; /* 오버플로우 방지 */
}

/* Content Sections */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%; /* 라이트 칼럼 너비 제한 */
  overflow: hidden; /* 오버플로우 방지 */
}

.content-section #projects {
  width: 200px;
}

.section-heading {
  font-family: "Lora", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6b6b6b;
}

.section-content h3 {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  letter-spacing: -0.2px;
}

/* Hover Translation Effect */
.hover-translate {
  position: relative;
  overflow: visible;
  min-height: 1.2em;
}

.hover-translate .korean {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.hover-translate .english {
  transition: opacity 0.3s ease;
}

.hover-translate:hover .english {
  opacity: 0;
}

.hover-translate:hover .korean {
  opacity: 1;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%; /* 라이트 칼럼 너비 제한 */
  overflow: hidden; /* 오버플로우 방지 */
}

.section-content p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* Principles List */
.principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}

.principles-list li {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.2px;
  position: relative;
  padding-left: 1.5rem;
}

.principles-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 400;
}

.principles-list strong {
  font-weight: 500;
  color: #ffffff;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.kakao-button {
  background-color: #252525;
  border: 1px solid #3f3f3f;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.kakao-button:hover {
  background-color: #fee500;
  color: #3c1e1e;
  border-color: #fee500;
  text-decoration: none;
}

.kakao-button.hover-translate .english::before,
.kakao-button.hover-translate .korean::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/images/kakao_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

/* Kakao Button Hover Translation Fix */
.kakao-button.hover-translate {
  position: relative;
  overflow: visible;
  min-height: 44px;
}

.kakao-button.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.kakao-button.hover-translate .english {
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.kakao-button.hover-translate:hover .english {
  opacity: 0;
}

.kakao-button.hover-translate:hover .korean {
  opacity: 1;
}

/* Kmong Button */
.kmong-button {
  background-color: #252525;
  border: 1px solid #3f3f3f;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.kmong-button:hover {
  background-color: #92fa72;
  color: #000000;
  border-color: #92fa72;
  text-decoration: none;
}

/* Kmong Button Hover Translation */
.kmong-button.hover-translate {
  position: relative;
  overflow: visible;
  min-height: auto;
}

.kmong-button.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.kmong-button.hover-translate .english {
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.kmong-button.hover-translate .english::before,
.kmong-button.hover-translate .korean::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/images/kmong_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.kmong-button.hover-translate:hover .english {
  opacity: 0;
}

.kmong-button.hover-translate:hover .korean {
  opacity: 1;
}

/* Subscription Service Button */
.subscription-button {
  background-color: #4f46e5;
  border: 1px solid #6366f1;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.subscription-button:hover {
  background-color: #4338ca;
  color: #ffffff;
  border-color: #4338ca;
  text-decoration: none;
}

.subscription-button.hover-translate {
  position: relative;
  overflow: visible;
  min-height: 44px;
}

.subscription-button.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.subscription-button.hover-translate .english {
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.subscription-button.hover-translate .english::before,
.subscription-button.hover-translate .korean::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.subscription-button.hover-translate:hover .english {
  opacity: 0;
}

.subscription-button.hover-translate:hover .korean {
  opacity: 1;
}

/* Subscription Service Section */
.subscription-service-section {
  margin-top: 4rem;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #3f3f3f;
}

.subscription-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}

.subscription-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subscription-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.subscription-feature {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  background-color: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 20px;
  position: relative;
  min-width: 140px;
}

.subscription-feature.hover-translate {
  position: relative;
  overflow: visible;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-feature.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.subscription-feature.hover-translate .english {
  transition: opacity 0.3s ease;
}

.subscription-feature.hover-translate:hover .english {
  opacity: 0;
}

.subscription-feature.hover-translate:hover .korean {
  opacity: 1;
}

.subscription-cta-button {
  display: inline-block;
  background-color: #4f46e5;
  border: 1px solid #6366f1;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 140px;
}

.subscription-cta-button:hover {
  background-color: #4338ca;
  border-color: #4338ca;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.subscription-cta-button.hover-translate {
  position: relative;
  overflow: visible;
  min-height: auto;
}

.subscription-cta-button.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.subscription-cta-button.hover-translate .english {
  transition: opacity 0.3s ease;
}

.subscription-cta-button.hover-translate:hover .english {
  opacity: 0;
}

.subscription-cta-button.hover-translate:hover .korean {
  opacity: 1;
}

/* Footer */
.footer {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    padding: 5% 10%;
    gap: 6%;
  }

  .left-column {
    flex: 0 0 35%;
  }

  .header-nav.desktop-nav {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 860px) {
  .header-content {
    padding: 0 1rem;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .header-nav.desktop-nav {
    display: none;
  }

  .mobile-nav-dropdown {
    display: block;
  }

  .back-button {
    font-size: 0.7rem;
    height: 30px;
    padding: 0 1rem;
    min-width: 100px;
  }

  .login-button {
    font-size: 0.7rem;
    height: 30px;
    padding: 0 1rem;
    min-width: 100px;
  }

  .about-content {
    flex-direction: column;
    padding: 5%;
    gap: 3rem;
  }

  .left-column {
    flex: none;
    text-align: center;
    padding-top: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    height: fit-content;
    max-height: none;
    margin-bottom: 100px;
  }

  .studio-name {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .about-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .right-column {
    padding-top: 0;
    gap: 2.5rem;
    width: -webkit-fill-available;
    overflow: hidden; /* 오버플로우 방지 */
  }

  .content-section {
    gap: 1.2rem;
  }

  .section-content {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }

  .back-button {
    font-size: 0.65rem;
    height: 28px;
    padding: 0 0.8rem;
    min-width: 85px;
  }

  .mobile-nav-toggle {
    font-size: 0.85rem;
  }

  .mobile-nav-link {
    font-size: 0.85rem;
    padding: 0.65rem 0.8rem;
  }

  .login-button {
    font-size: 0.65rem;
    height: 28px;
    padding: 0 0.8rem;
    min-width: 85px;
  }

  .about-content {
    padding: 10% 8%;
    gap: 2.5rem;
  }

  .left-column {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    height: fit-content;
    max-height: none;
  }

  .studio-name {
    font-size: 0.85rem;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  .section-content p,
  .principles-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .principles-list {
    gap: 0.8rem;
  }

  .principles-list li {
    padding-left: 1.2rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 2rem 0;
  overflow: hidden; /* 오버플로우 방지 */
  width: -webkit-fill-available;
}

.contact-title {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background-color: #2a2a2a;
  border: 1px solid #404040;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888888;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #666666;
  background-color: #333333;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

.file-upload-wrapper {
  position: relative;
}

.upload-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2a2a2a;
  border: 1px solid #404040;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.upload-button:hover {
  border-color: #666666;
  background-color: #333333;
}

.upload-icon {
  font-size: 1rem;
}

.submit-application-button {
  background-color: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  align-self: flex-start;
}

.submit-application-button:hover {
  background-color: #f0f0f0;
}

.submit-application-button:active {
  transform: translateY(0);
}

/* Submit Button Hover Translation Fix */
.submit-application-button.hover-translate {
  position: relative;
  overflow: visible;
  min-height: auto;
}

.submit-application-button.hover-translate .korean {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.submit-application-button.hover-translate .english {
  transition: opacity 0.3s ease;
}

.submit-application-button.hover-translate:hover .english {
  opacity: 0;
}

.submit-application-button.hover-translate:hover .korean {
  opacity: 1;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  .contact-section {
    padding: 1.5rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form {
    gap: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .submit-application-button {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
}

/* Projects Navigation */
.projects-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nav-arrow {
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid #404040;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background-color: rgba(66, 66, 66, 0.9);
  border-color: #666666;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Projects Grid - Horizontal Carousel Layout */
.projects-grid {
  display: flex;
  gap: 0.8rem; /* 작은 카드 기준으로 갭 설정 */
  width: max-content; /* 내용에 맞게 너비 설정 */
  max-width: 100%; /* 라이트 칼럼 너비 제한 */
  padding: 3rem 0; /* 위아래 패딩 증가로 스케일된 카드 공간 확보 */
  justify-content: flex-start;
  align-items: center;
}

/* Project Card */
.project-card {
  background-color: rgba(42, 42, 42, 0.6);
  border: 1px solid #404040;
  border-radius: 6px;
  overflow: hidden;
  cursor: url("/images/cursor.png"), pointer; /* 커스텀 커서 */
  transition: all 0.5s ease;
  position: relative;
  width: 350px; /* PC에서 스크롤 보이도록 증가 */
  height: 465px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Main Card (First Card) */
.project-card.main-card {
  transform: scale(1.2);
  margin: 0 30px;
  transform-origin: center center; /* 중앙에서 스케일링 */
  z-index: 3;
  opacity: 1;
}

/* Side Cards */
.project-card.side-card {
  opacity: 0.7;
  z-index: 1;
}

/* Projects Navigation Container */
.projects-navigation-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nav-arrow {
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid #404040;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background-color: rgba(66, 66, 66, 0.9);
  border-color: #666666;
}

.list-button {
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid #404040;
  border-radius: 3px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
  height: 40px;
  animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%,
  100% {
    background-color: rgba(42, 42, 42, 0.8);
    border-color: #404040;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    background-color: rgba(90, 90, 90, 0.95);
    border-color: #888888;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }
}

.list-button:hover {
  background-color: rgba(66, 66, 66, 0.9);
  border-color: #666666;
}

.project-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border-color: #666666;
}

.project-card-image {
  position: relative;
  width: 100%;
  height: 230px; /* 이미지 높이 고정 */
  overflow: hidden;
  background-color: #1a1a1a;
  flex-shrink: 0; /* 이미지 영역 크기 고정 */
  border-radius: 5px;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.view-more {
  font-family: "Lora", serif;
  font-size: 0.9rem;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.project-card-content {
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1; /* 남은 공간 모두 사용 */
  overflow: hidden; /* 넘치는 내용 숨김 */
}

.project-card-title {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap; /* 줄바꿈 방지 */
  overflow: hidden; /* 넘치는 텍스트 숨김 */
  text-overflow: ellipsis; /* 줄임말 표시 */
}

.project-card-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 최대 3줄까지 표시 */
  line-clamp: 5; /* 표준 속성 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  overflow: hidden; /* 넘치는 태그 숨김 */
  flex-shrink: 0; /* 태그 영역 크기 고정 */
}

.tag {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tag:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Technology Card Styles - Default style like project-card */
.technology-card {
  background-color: rgba(42, 42, 42, 0.6);
  border: 1px solid #404040;
  height: auto;
  min-height: 280px;
  max-height: 320px;
  width: 100%;
  flex-shrink: 0;
  opacity: 1;
  z-index: 3;
  transform: none;
  transition: all 0.5s ease;
}

.technology-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border-color: #666666;
}

.technology-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  height: 100%;
}

.technology-icon-small {
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
}

.technology-card-title {
  font-family: "Lora", serif;
  margin-top: 35px;
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

.technology-card-description {
  font-family: "Inter", sans-serif;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.6;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.technology-benefits {
  margin-top: 0.5rem;
}

.technology-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cccccc;
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.technology-benefits li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.technology-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Technologies Grid Container */

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .technologies-grid {
    grid-template-columns: 1fr;
  }
}

.technology-more-card {
  background-color: rgba(42, 42, 42, 0.4);
  border: 2px dashed #666666;
  transition: all 0.3s ease;
}

.technology-more-card:hover {
  background-color: rgba(42, 42, 42, 0.6);
  border-color: #4f46e5;
  transform: translateY(-2px);
}

.technology-more-content {
  padding: 0;
  height: 100%;
}

/* Project Modal */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 1;
  padding: 2rem;
}

.project-modal-content {
  background-color: #1a1a1a;
  border: 1px solid #404040;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.project-modal-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  backdrop-filter: blur(10px);
}

.project-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.project-modal-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 800px;
}

/* Top Section: Profile & Button */
.modal-top-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.modal-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgb(250, 250, 252);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
}

.modal-developer-title {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #999999;
  font-weight: 400;
  margin-bottom: 2px;
}

.modal-username {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
}

.modal-contact-button {
  background-color: #404040;
  color: #999999;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: not-allowed;
  transition: background-color 0.3s ease;
}

/* Main Content: 2-Column Layout */
.modal-main-content {
  display: flex;
  gap: 2.5rem;
  flex: 1;
}

/* Left Sidebar */
.modal-sidebar {
  flex-basis: 330px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  height: fit-content;
  max-height: 100vh;
  overflow-y: auto;
}

.modal-category h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #999999;
  margin: 0;
  line-height: 1.5;
}

.modal-category h2 span {
  margin: 0 0.25rem;
}

.modal-project-title {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.55;
}

.modal-action-buttons {
  display: flex;
  gap: 0.5rem;
}

.modal-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background-color: transparent;
  border: 1px solid #666666;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.modal-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #888888;
}

.modal-action-btn svg {
  flex-shrink: 0;
}

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

.modal-tags .tag {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.modal-divider {
  border: none;
  border-top: 1px solid #404040;
  margin: 1.5rem 0;
}

.modal-period,
.modal-features-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-section-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-section-content {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.79;
  white-space: pre-wrap;
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-features-list li {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.modal-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 700;
}

/* Right Main Content */
.modal-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #999999;
  font-style: italic;
}

.modal-description p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

.modal-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-images img {
  width: 100%;
  height: auto;
  border: 1px solid #404040;
  border-radius: 0;
  object-fit: contain;
}

/* Responsive Design for Projects */
@media (max-width: 1024px) {
  .projects-grid {
    gap: 0.8rem; /* 작은 카드 기준으로 갭 유지 */
  }

  .modal-main-content {
    flex-direction: column;
    gap: 2rem;
  }

  .modal-sidebar {
    flex-basis: auto;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    gap: 0.8rem; /* 작은 카드 기준으로 갭 유지 */
  }

  .projects-navigation-container {
    gap: 0.8rem;
  }

  .project-modal.active {
    padding: 1rem;
    align-items: flex-start;
  }

  .project-modal-content {
    margin: 1rem 0;
  }

  .project-modal-body {
    padding: 1.5rem;
    min-height: auto;
  }

  .modal-top-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .modal-contact-button {
    width: 100%;
  }

  .modal-main-content {
    gap: 1.5rem;
  }

  .modal-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .modal-project-title {
    font-size: 1.1rem;
  }

  .modal-action-buttons {
    flex-direction: column;
  }

  .modal-images img {
    aspect-ratio: auto;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    gap: 0.8rem; /* 작은 카드 기준으로 갭 유지 */
  }

  .projects-navigation-container {
    gap: 0.6rem;
  }

  .project-modal-body {
    padding: 1rem;
  }

  .modal-project-title {
    font-size: 1rem;
  }

  .modal-profile-info {
    font-size: 0.875rem;
  }

  .modal-contact-button {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }

  .project-modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
  }
}

/* Projects Slider Styles */
.projects-slider-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  cursor: url("/images/scroll.png"), pointer; /* 커스텀 커서 */
}

.projects-slider-container:active {
  cursor: url("/images/scroll.png"), grabbing; /* 드래그 중 */
}

.projects-slider {
  width: 100%;
  cursor: url("/images/scroll.png"), pointer; /* 커스텀 커서 */
}

.projects-slider .slick-slide {
  padding: 15px;
  box-sizing: border-box;
  margin-right: -20px;
  cursor: url("/images/scroll.png"), pointer; /* 커스텀 커서 */
}

.projects-slider .slick-slide .project-card {
  width: 320px;
  max-width: 350px;
  margin: 0 auto;
}

.projects-slider .slick-center .project-card {
  z-index: 2;
  transition: all 0.4s ease;
}

.projects-slider .slick-slide:not(.slick-center) .project-card {
  transform: scale(0.8);
  opacity: 0.7;
  transition: all 0.4s ease;
}

/* project-card 클래스가 있지만 slick-current slick-active 클래스가 없는 카드들에 스케일 0.9 적용 */
/* 단, technology-card는 제외 */
.project-card:not(.technology-card):not(.slick-current):not(.slick-active) {
  transform: scale(0.8);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.projects-slider .slick-prev,
.projects-slider .slick-next {
  display: none !important;
}

.projects-slider .slick-prev:hover,
.projects-slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.projects-slider .slick-prev:before,
.projects-slider .slick-next:before {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.8;
}

.projects-slider .slick-prev {
  left: 10px;
}

.projects-slider .slick-next {
  right: 10px;
}

/* 반응형 조정 */
@media (max-width: 768px) {
  .projects-slider .slick-slide {
    padding: 15px 10px;
  }

  .projects-slider .slick-slide .project-card {
    width: 280px;
  }

  .projects-slider .slick-prev,
  .projects-slider .slick-next {
    width: 35px;
    height: 35px;
  }

  .projects-slider .slick-prev:before,
  .projects-slider .slick-next:before {
    font-size: 16px;
  }

  .projects-slider .slick-prev {
    left: 5px;
  }

  .projects-slider .slick-next {
    right: 5px;
  }

  /* 프로젝트 카드 텍스트 크기 조정 */
  .project-card-title {
    font-size: 1.1rem;
  }

  .project-card-description {
    font-size: 0.8rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .projects-slider .slick-slide {
    padding: 15px 8px;
  }

  .projects-slider .slick-slide .project-card {
    width: 240px;
  }

  .projects-slider .slick-prev,
  .projects-slider .slick-next {
    display: none !important;
  }

  /* 프로젝트 카드 텍스트 크기 조정 (더 작게) */
  .project-card-title {
    font-size: 1rem;
  }

  .project-card-description {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
}

.view-detail-btn {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
}

.view-detail-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}

/* 커스텀 버튼 스타일 */
.modal-detail-btn-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.modal-detail-btn-container .service-btn {
  width: 100%;
  text-align: center;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border-radius: 6px;
  font-weight: 700;
}

/* 서비스 버튼 스타일 */
.service-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Reviews Section Styles */
.reviews-section {
  margin-top: 5rem;
}

.reviews-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.reviews-link-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.reviews-link-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.reviews-container {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.reviews-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

/* Review Item Styles */
.review-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.reviewer-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details {
  flex: 1;
}

.reviewer-rating {
  margin-bottom: 0.25rem;
}

.star-ratings {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star-icon-small {
  width: 12px;
  height: 12px;
  fill: #ffd700;
}

.reviewer-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.review-content {
  margin-left: 44px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.review-meta {
  font-size: 0.75rem;
  color: #999;
  font-family: "Inter", sans-serif;
}

.review-meta span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-container {
    height: 250px;
  }

  .reviews-title-container {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .reviews-title {
    font-size: 1.1rem;
  }

  .reviews-link-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .review-content {
    margin-left: 0;
  }

  .reviewer-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .reviewer-avatar {
    width: 28px;
    height: 28px;
  }

  .review-text {
    font-size: 0.85rem;
  }

  .reviewer-name {
    font-size: 0.8rem;
  }
}

/* Fixed Contact Button */
.fixed-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #059669;
  border: 1px solid #10b981;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.fixed-contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.6);
  background-color: #047857;
  border-color: #059669;
}

.fixed-contact-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.5);
}

.fixed-contact-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Mobile responsive for fixed contact button */
@media (max-width: 768px) {
  .fixed-contact-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .fixed-contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .fixed-contact-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .fixed-contact-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Contact Button in Modal */
.contact-button {
  background-color: #059669;
  border: 1px solid #10b981;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  height: 40px;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.contact-button:hover {
  background-color: #047857;
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
  transform: translateY(-1px);
}

.contact-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}

.contact-button svg {
  width: 16px;
  height: 16px;
}

.more-projects-button {
  background-color: #667eea;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  height: 40px;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.more-projects-button:hover {
  background-color: #5568d3;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.more-projects-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.more-projects-button svg {
  width: 16px;
  height: 16px;
}

/* HTML 본문 콘텐츠 스타일 (모달용) */
.project-html-content {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: #cccccc;
}

.project-html-content h1,
.project-html-content h2,
.project-html-content h3,
.project-html-content h4,
.project-html-content h5,
.project-html-content h6 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-html-content h1 {
  font-size: 2rem;
}
.project-html-content h2 {
  font-size: 1.5rem;
}
.project-html-content h3 {
  font-size: 1.25rem;
}
.project-html-content h4 {
  font-size: 1.1rem;
}

.project-html-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.project-html-content ul,
.project-html-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.project-html-content li {
  margin-bottom: 0.5rem;
}

.project-html-content a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-html-content a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.project-html-content code {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

.project-html-content pre {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.project-html-content pre code {
  background-color: transparent;
  padding: 0;
}

.project-html-content blockquote {
  border-left: 3px solid #667eea;
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  color: #999999;
  font-style: italic;
}

.project-html-content img,
.project-html-content video {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 5px;
  display: block;
}

.project-html-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.project-html-content th,
.project-html-content td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  text-align: left;
}

.project-html-content th {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.project-html-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

/* Project Modal Image */
.project-modal-image {
  width: 100%;
  height: auto;
  border: 1px solid #404040;
  border-radius: 0;
  object-fit: contain;
  cursor: pointer;
}
