
    /* 리셋 및 기본 스타일 */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'GiantsBold'; 
      overflow-x: hidden; /* 수평 스크롤 방지 */
    }

    
    @font-face { font-family: 'GiantsBold'; src: url('/app/font/Giants-Bold.ttf') format('truetype'); }
    
    @font-face { font-family: 'PaperlogyBlack'; src: url('/app/font/Paperlogy-9Black.ttf') format('truetype'); font-weight: 900; }
    @font-face { font-family: 'PaperlogySemiBold'; src: url('/app/font/Paperlogy-6SemiBold.ttf') format('truetype'); font-weight: 600; }
    @font-face { font-family: 'PaperlogyMedium'; src: url('/app/font/Paperlogy-5Medium.ttf') format('truetype'); font-weight: 500; }
    @font-face { font-family: 'PaperlogyRegular'; src: url('/app/font/Paperlogy-4Regular.ttf') format('truetype'); font-weight: 400; }


    nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 6px 40px;
      background: rgba(0, 0, 0, 0.4); /* 초기 반투명 */
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      transition: background-color 0.3s ease; 
    }
   
    nav.scrolled {background: rgba(0, 0, 0, 1);}
    nav > a { justify-self: start;}
    .nav-center {display: flex; justify-content: center;}
    nav ul { display: flex; gap: 45px; list-style: none; }
    nav ul li a { color: white; text-decoration: none; font-size: 1.2rem;}
   
    .hamburger {
      display: none;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      z-index: 20;
    }

    .korean-text {
      word-break: keep-all;      /* 단어 단위로 줄바꿈 (띄어쓰기 기준) */
      white-space: normal;       /* 자동 줄바꿈 허용 */
      line-height: 1.5;
    }

    .section-title {
      font-size: 3.2rem;
      font-weight: bold;
      text-align: center;
      font-family: 'GiantsBold', sans-serif;
      margin-bottom: 20px;
    }

    .section-description {
      font-size: 1.7rem;
      font-weight: 600;
      font-family: 'PaperlogySemiBold';
      text-align: center;
      margin-bottom: 30px;
    }

    .section-subtext {
      font-family: 'PaperlogyRegular';
      font-size: 1rem;
      color: #666666;
      text-align: center;
      margin-bottom: 30px;
      line-height: 1.5;
    }


    /* 인트로 영상 배경 */
    .intro-container {
      position: relative; width: 100%; height: 100vh; overflow: hidden;
    }
    .intro-container video {
      position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
      object-fit: cover; z-index: 0;
    }

    /* 영상 위 텍스트 */

    .intro-text {
      position: absolute; top: 70%; left: 100px; transform: translateY(-50%);
      color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
      z-index: 1; max-width: 600px; pointer-events: none;
    }
    .intro-text h1 {
      font-family: 'PaperlogyBlack'; font-weight: 700;
      font-size: 4.8rem; margin-bottom: 10px;
    }
    .highlight { color: #ff0000; font-size: 5.7rem; }
    .intro-text p {
      font-family: 'PaperlogyMedium'; font-weight: 500;
      font-size: 1.4rem; line-height: 1.6; margin: 4px 0;
    }
    .intro-text p.sub { font-size: 1.1rem; opacity: 0.9; }
        
    


    /* 히어로즈 소개 */
    
    .full-width-image img {
      width: 100vw; height: auto; display: block; margin: 0 auto; }
    .intro-hero-block { padding: 100px 20px 0; text-align: center; } /* 기존 intro-hero-block 수정: 상단 여유 공간 추가 */
    .responsive-image { max-width: 1400px; margin: 0 auto; }
    .responsive-image img { width: 100%; height: auto; display: block; }

        
    /* HEROES ZONE section */

    .zone-section { padding: 100px 20px 120px; background: #171717; text-align: center; }

    .zone-section h2,
    .zone-section .section-title {color: #f42328;}    

    .zone-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3등분 */
      max-width: 1400px;
      width: 100%;
      margin: 40px auto 0;
      gap: 0; /* gap 제거 */
    }

    .zone-item {
      background-color: #303030;
      transition: background-color 0.3s ease, transform 0.3s ease;
      padding: 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .zone-image {
      width: 100%;
      height: 220px; /* 고정 또는 반응형 설정 가능 */
      background-size: cover;
      background-position: center;
      margin-top: 12px;
      border-radius: 6px;
    }



    .zone-item:hover { transform: scale(1.1); background-color: #f42328; }
    .zone-title {
      padding: 10px 10px 0 10px;
      font-size: 1.3rem;
      text-align: left;
      font-weight: bold;
      color: #ffffff;
    }
    .zone-description {
      font-family: 'PaperlogySemiBold';
      padding: 10px;
      font-size: 0.8rem;
      text-align: left;
      color: #ffffff;
    }
    .zone-divider {
      border: none;
      height: 1px;
      background-color: #ffffff33; /* 연한 흰색 */
      margin: 10px 10px 10px 10px; /* 좌우 여백 일관성 */
    }

    .zone-item:hover {background-color: #f42328;  }
  

    /* 스크린스포츠 설명 */

    .screen-container {
      max-width: 1400px; margin: 0 auto; background: white;
      border-radius: 20px; overflow: hidden; color: black; padding: 40px;
    }
    .screen-title { font-family: 'PaperlogyBlack'; font-size: 2.5rem; margin-bottom: 20px; }
    .screen-left p { font-family: 'PaperlogyRegular'; font-size: 1.05rem; line-height: 1.6; }
    .highlight-red { font-family: 'PaperlogySemiBold'; color: #f42328; }
    .highlight-bold { font-family: 'PaperlogySemiBold'; font-size: 1.2rem; }
    .emphasis-strong { font-size: 1.3rem; line-height: 1.6; }


    /* 스크린스포츠 설명 블록 */
    .feature-block {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 25px 0; border-bottom: 1px solid #ccc;
    }
    .feature-block:last-child { border-bottom: none; }
    .feature-image {
      flex: 0 0 180px; height: 100px; background-color: #eee;
      border-radius: 8px; background-size: cover; background-position: center;
    }
    .feature-text { flex: 1; }
    .feature-text h3 {
      font-family: 'PaperlogySemiBold';
      font-size: 1.1rem;      
      margin-bottom: 6px;
    }
    .feature-text p {
      font-family: 'PaperlogyRegular';
      font-size: 0.95rem;
      margin: 0; line-height: 1.5;
    }


    /* 비즈니스 카드 그리드 */
    .business-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 20px;
    }

    .business-card {
      position: relative;
      aspect-ratio: 1 / 0.6;
      border-radius: 30px;
      background: white; 
      color: #f42328; 
      border: 4px solid #FF6B6B;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    /* 아이콘 스타일 */
    .business-card i {
      font-size: 60px; color: #f42328;
      margin-bottom: 12px;
      z-index: 2;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .business-card span {
      font-family: 'PaperlogyMedium'; font-size: 20px;  font-weight: 600;  
      color: #f42328; 
      z-index: 2;  transition: opacity 0.3s ease, color 0.3s ease;
    }
    .business-card .business-subtitle {
      font-family: 'PaperlogyRegular';
      font-size: 0.9rem;
      color: #f42328;
      opacity: 0.85;
      margin-top: 4px;
      z-index: 2;
    }
    .business-card:hover .business-subtitle {
      color: white;
      opacity: 0.9;
    }
    .card-overlay {
      content: '';
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      z-index: 1;
    }
    .card-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.4);
    }
    .business-card:hover {
      transform: scale(1.1);
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      border: none; /* 테두리 제거 */
    }
    .business-card:hover i { color: white; filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15)); }
    .business-card:hover span { color: white; filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15)); }
    .business-card:hover .card-overlay { opacity: 1; }
    .business-card:hover span { opacity: 0.9; }


    /* 더보기 */
    .more-link-button {
      font-family: 'PaperlogyMedium', sans-serif;
      text-decoration: none;
      color: #000000;
      font-weight: bold;      
    }

    .more-link a:hover {
      text-decoration: underline;
      margin-left: 5px;
    }


    
    /* 매장 정보 슬라이더 영역 */

    .swiper-slide h3 { font-family: 'PaperlogySemiBold'; font-size: 1.2rem; margin-bottom: 10px; color: #111; }    
    .swiper-slide p { font-family: 'PaperlogyRegular'; font-size: 0.95rem; color: #555; margin: 0; line-height: 1.6; }
    .swiper-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
      padding: 80px 0 120px;
    }    
    .swiper-slide.swiper-slide-active { transform: scale(1.25); z-index: 2; }
    .swiper-slide { transform: scale(0.6); transition: transform 0.6s ease; margin: 10px 0; }
   

    /* 도트 + 화살표를 한 줄로 */
    .slider-controls {
      position: absolute;
      bottom: 10px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      z-index: 10;
    }
      
    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      color: #f42328;
      width: 40px; height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .swiper-button-prev { left: 10px; }
    .swiper-button-next { right: 10px; }

    .swiper-button-prev:hover,
    .swiper-button-next:hover { color: #ffffff; }

    .swiper-pagination {
      display: flex; justify-content: center; align-items: center; gap: 10px; height: 100%; }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: transparent;
      border: 1px solid #f42328;
      opacity: 0.6;
      border-radius: 50%;
      transition: background 0.3s ease, opacity 0.3s ease;
    }

    .swiper-pagination-bullet-active {  background: #f42328;  opacity: 1; }



    
    footer {background-color: #181818; color: white; padding: 20px 0; width: 100%; } 

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%; /* footer의 내부 콘텐츠 너비를 100%로 설정 */
    }

    .footer-left, .footer-right { width: 100%; }
    .footer-left { display: flex; flex-direction: column; }
    .footer-left p { font-family: 'PaperlogySemiBold'; margin: 10px 0;}


    /* 버튼 스타일 */
    footer .top-button { 
      font-size: 1.5rem;  
      display: inline-block;  
      padding: 10px 20px;
      background-color: #f42328; /* 버튼 색상 */
      border-radius: 30px;
      font-weight: bold; /* 텍스트 강조를 위해 font-weight 추가 */
      margin: 0 auto; /* 버튼 가운데 배치 */
    }


    

    .footer-right { display: flex; flex-direction: column; align-items: flex-end; }

    .footer-right button {
      font-family: 'PaperlogySemiBold'; 
      font-size: 14px; 
      color: white; 
      background-color: transparent;
      border: 1px solid white;
      padding: 12px 20px;
      margin: 5px 0;
      cursor: pointer;
      text-align: center;
      width: 220px;
      max-width: 220px; 
    }

    .footer-right button a { color: white; text-decoration: none; display: block; }
    .footer-right button:hover { background-color: white; color: #181818; }
    .footer-right button:hover a { color: #181818; }

    footer a { text-decoration: none; color: white; }



    /* 야구존 버튼 */
    .btn-baseball {
      display: inline-block;
      font-family: 'PaperlogySemiBold'; font-size: 14px; color: #69C9FF;
      border: 1px solid #69C9FF; padding: 12px 20px; margin: 5px 0;
      text-align: center;
      width: 220px; max-width: 220px;
      background-color: transparent;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .btn-baseball:hover { background-color: #69C9FF; color: #ffffff; text-decoration: none; }


    @media (max-width: 768px) {


      nav a img { height: 50px; }
      nav { padding: 4px 10px; }

      .hamburger {
        display: block;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 20;
      }

      nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0,0,0,0.9);
        width: 200px;

        /* 슬라이드 애니메이션용 */
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
      }

      nav ul li {
        margin: 5px 5px;
        text-align: left;
      }

      nav ul li a {
        display: block;
        padding: 3px 3px;
      }
  

      body { font-size: 0.9rem; }

      .section-title { font-size: 2rem; }
      .section-description { font-size: 1.2rem; }
      .section-subtext { font-size: 0.85rem; }
   
      .intro-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        text-align: center;
      }
      .intro-text h1 { font-size: 2rem; }
      .intro-text .highlight { font-size: 2.4rem; }
      .intro-text p { font-size: 0.9rem; }

      .intro-container { height: 60vh; } /* 배경 영상 높이 축소 */
      .intro-container video { height: 80vh; }
  
          /* zone 그리드 1열 */
      .zone-grid { grid-template-columns: 1fr; }
      .zone-item:hover { transform: none; } /* 모바일에서 hover 제거 */

      .business-card:hover { transform: none; }

      /* swiper 슬라이드 */
      .swiper-slide { transform: scale(1); }
      .swiper-slide.swiper-slide-active { transform: scale(1); }



      .screen-title {font-size: 1.5rem;}
      .screen-regular, .emphasis-strong, .highlight-bold, .highlight-red{font-size: 0.9rem;}

      .feature-block {
        flex-direction: column; /* 좌우 → 세로 */
        align-items: center;
        text-align: center;     /* 글씨도 중앙 정렬 */
      }
      .feature-image {
        width: 100%;            /* 모바일에서는 가로 꽉 차게 */
        max-width: 300px;       /* 너무 크게 퍼지지 않도록 제한 */
        height: 180px;          /* 비율에 맞춰 키움 */
      }
      .feature-text {
        width: 100%;
        margin-top: 10px;
      }


      store-slide { flex: 0 0 90%; } 

      .footer-content {
        flex-direction: column; 
        text-align: left; 
      }
      
      .footer-right button,
      .btn-baseball {
        width: 100%;        /* 화면 폭 전체 */
        max-width: 280px;   /* 버튼 최대 폭 제한 */
        padding: 12px 0;    /* 동일한 세로 패딩 */
        font-size: 14px;    /* 동일한 폰트 크기 */
        text-align: center; /* 가운데 정렬 */
        margin: 5px auto;   /* 버튼 간격 균일, 가운데 배치 */
        display: block;
      }


    }

