/* PC 히어로 레거시 섹션 (30년 전통 강조) */
@media (min-width: 1025px) {
.hero-pc-legacy {
              position: relative;
              min-height: 520px;
              background: #f5f0ea;
              overflow: hidden;
              z-index: 1;
              padding: 0;
            }


.hero-pc-legacy-bg {
              position: absolute;
              top: 0; left: 0; right: 0; bottom: 0;
              z-index: 0;
              background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23d4a574" opacity="0.05"/><circle cx="15" cy="15" r="1" fill="%23d4a574" opacity="0.03"/><circle cx="45" cy="45" r="1" fill="%23d4a574" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
              opacity: 0.3;
              pointer-events: none;
            }
.hero-pc-legacy-inner {
              max-width: 1300px;
              margin: 0 auto;
              padding: 4rem 2rem 4rem 2rem;
              display: flex;
              flex-direction: column;
              align-items: center;
              z-index: 2;
              position: relative;
            }
.legacy-headline-group {
  margin-bottom: 3.5rem;
  text-align: center;
}

/* 날개 장식 스타일 */
.legacy-headline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.legacy-wing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.left-wing {
  transform: rotate(-5deg);
}

.right-wing {
  transform: rotate(5deg);
}

.wing-decoration {
  font-size: 1.2rem;
  color: #c49a6a;
  opacity: 0.7;
  animation: wingFloat 3s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(196, 154, 106, 0.3);
}

.wing-decoration:nth-child(1) {
  animation-delay: 0s;
}

.wing-decoration:nth-child(2) {
  animation-delay: 0.5s;
}

.wing-decoration:nth-child(3) {
  animation-delay: 1s;
}

@keyframes wingFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
    opacity: 1;
  }
}
.legacy-headline {
              font-size: 2.4rem;
              font-weight: 900;
              color: #6b4a2e;
              margin-bottom: 1.5rem;
              letter-spacing: -0.8px;
              text-shadow: 0 6px 20px rgba(180,148,106,0.15);
              line-height: 1.1;
              position: relative;
              background: linear-gradient(135deg, #6b4a2e 0%, #8b6f4e 50%, #6b4a2e 100%);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
            }
            
.legacy-subtext {
              font-size: 1.2rem;
              color: #8b6f4e;
              line-height: 1.8;
              margin-bottom: 0;
              font-weight: 500;
              text-shadow: 0 2px 8px rgba(139, 111, 78, 0.1);
              position: relative;
            }
            
.legacy-subtext::before {
              content: '';
              position: absolute;
              top: -10px;
              left: 50%;
              transform: translateX(-50%);
              width: 60px;
              height: 2px;
              background: linear-gradient(90deg, transparent, #c49a6a, transparent);
            }
.legacy-highlight-text {
              color: #c49a6a;
              font-weight: 700;
              font-size: 1.1em;
              background: linear-gradient(135deg, #c49a6a, #a8845a);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
            }
            
            .legacy-emphasis {
              color: #6b4a2e;
              font-weight: 600;
              font-size: 1.05em;
            }
.legacy-best-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
}
.legacy-best-card {
              background: #fff;
              border-radius: 22px;
              box-shadow: 0 8px 32px rgba(212,165,116,0.12);
              border: 2px solid #e8dcc8;
              padding: 2rem 1.5rem 4rem 1.5rem;
              display: flex;
              flex-direction: column;
              align-items: center;
              min-width: 280px;
              max-width: 320px;
              flex: 1 1 0;
              transition: box-shadow 0.3s, transform 0.3s;
              position: relative;
              overflow: hidden;
            }
.legacy-best-card:hover {
              box-shadow: 0 16px 48px rgba(212,165,116,0.2);
              transform: translateY(-8px) scale(1.03);
              border-color: #c49a6a;
            }
            
            .legacy-best-card:hover .legacy-best-link-hover {
              display: inline-block;
            }
.legacy-best-img-wrap {
              width: 160px;
              height: 160px;
              border-radius: 18px;
              overflow: hidden;
              margin-bottom: 1.5rem;
              background: linear-gradient(135deg, #f8f5f0 0%, #f2ede4 100%);
              box-shadow: 0 2px 8px rgba(212,165,116,0.08);
              flex-shrink: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              position: relative;
            }
.legacy-best-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.3s;
}
.legacy-best-card:hover .legacy-best-img {
  transform: scale(1.06);
}
.legacy-best-content {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: center;
              text-align: center;
            }
.legacy-best-title {
              font-size: 18.4px;
              font-weight: 700;
              color: #6b4a2e;
              margin-bottom: 1rem;
              text-align: center;
              line-height: 1.3;
            }
.legacy-best-badge {
              position: absolute;
              top: 10px;
              left: 50%;
              transform: translateX(-50%);
              background: linear-gradient(135deg, #c49a6a, #a8845a);
              color: #fff;
              font-size: 0.7rem;
              font-weight: 700;
              padding: 0.3em 0.8em;
              border-radius: 12px;
              letter-spacing: 1px;
              box-shadow: 0 2px 8px rgba(196,154,106,0.25);
              z-index: 10;
            }
.legacy-best-desc {
              font-size: 13px;
              color: #7a5a3a;
              margin-bottom: 1.2rem;
              min-height: 3.2em;
              line-height: 1.5;
              word-break: keep-all;
              text-align: center;
            }
.legacy-best-stats {
              font-size: 12.5px;
              color: #c49a6a;

              font-weight: 600;
              text-align: center;
            }
            
            .legacy-best-message {
              position: absolute;
              bottom: 0;
              left: 0;
              right: 0;
              background: linear-gradient(135deg, #f5f0ea, #e8dcc8);
              padding: 1rem 1.5rem;
              font-size: 0.85rem;
              color: #6b4a2e;
              text-align: center;
              line-height: 1.5;
              font-style: italic;
              border-radius: 0 0 20px 20px;
              border-top: 1px solid #e8dcc8;
            }
.legacy-best-link-hover {
              display: none;
              background: rgba(196, 154, 106, 0.9);
              color: #fff;
              font-weight: 700;
              font-size: 0.95rem;
              padding: 0.8em 1.8em;
              border-radius: 25px;
              text-decoration: none;
              transition: all 0.3s ease;
              box-shadow: 0 4px 16px rgba(196,154,106,0.3);
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              z-index: 20;
              backdrop-filter: blur(5px);
            }
.legacy-best-link-hover:hover {
              background: rgba(196, 154, 106, 1);
              box-shadow: 0 6px 20px rgba(196,154,106,0.4);
              transform: translate(-50%, -50%) scale(1.05);
            }
}

/* 반응형: 1200px 이하에서 카드 크기 축소 */
            @media (max-width: 1200px) and (min-width: 1025px) {
              .legacy-best-list {
                gap: 1.2rem;
              }
              .legacy-best-card {
                min-width: 240px;
                max-width: 280px;
                padding: 1.5rem 1rem 1.5rem 1rem;
              }
              .legacy-best-img-wrap {
                width: 120px;
                height: 120px;
                margin-bottom: 1rem;
              }
              .legacy-best-badge {
                top: 8px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 0.65rem;
                padding: 0.25em 0.7em;
              }
            }

/* 1024px 이하에서는 PC 히어로 레거시 섹션 숨김 */
@media (max-width: 1024px) {
  .hero-pc-legacy {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    z-index: -9999 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
    max-height: 0 !important;
    min-height: 0 !important;
  }
} 