    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'GiantsBold', sans-serif; overflow-x: hidden; background-color: #f9f9f9; }
    @font-face { font-family: 'GiantsBold'; src: url('/app/font/Giants-Bold.ttf'); }
    @font-face { font-family: 'PaperlogyBlack'; src: url('/app/font/Paperlogy-9Black.ttf'); }
    @font-face { font-family: 'PaperlogySemiBold'; src: url('/app/font/Paperlogy-6SemiBold.ttf'); }
    @font-face { font-family: 'PaperlogyMedium'; src: url('/app/font/Paperlogy-5Medium.ttf'); }
    @font-face { font-family: 'PaperlogyRegular'; src: url('/app/font/Paperlogy-4Regular.ttf'); }

    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;
    }


    .zone-nav {
      position: sticky;
      top: 90px;
      width: 1200px;
      margin: 0 auto;
      display: flex;
      border: 1px solid #ccc;
      background: #fff;
      z-index: 999;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .zone-nav a {
      flex: 1;
      display: flex;
      justify-content: center; 
      align-items: center; 
      text-align: center;
      padding: 16px 0;
      text-decoration: none;
      font-family: 'PaperlogyBlack';
      font-size: 1rem;
      color: #222;
      border-right: 1px solid #eee;
      transition: all 0.2s ease;
      position: relative;
    }
    .zone-nav a:last-child { border-right: none; }
    .zone-nav a.active { background: #1d1d1d; color: #fff; }
    .zone-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0; height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 8px solid #1d1d1d;
    }
    .top-visual-wrapper { position: relative; overflow: hidden; }
    .top-visual-wrapper img { width: 100%; height: auto; display: block; }
    .top-visual-textbox {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      justify-content: center; align-items: center; text-align: center; color: #fff;
    }
    .top-visual-title { font-family: 'PaperlogyBlack'; font-size: 4.8rem; text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); }
    .top-visual-subtitle { font-family: 'PaperlogySemiBold'; font-size: 1.45rem; margin-bottom: 10px; line-height: 1.5; }
    .container { max-width: 1200px; margin: 0 auto; padding: 20px 20px; }
    .zone-title {
      font-family: 'PaperlogyBlack'; font-size: 2rem;
      margin: 80px 0 30px; color: #222;
      border-left: 6px solid #f42328; padding-left: 12px;
    }

    .zone-section {
      padding-top: 100px; /* optional: 내용이 너무 붙지 않게 */
    }

    .zone-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }
    .item {
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      border-radius: 10px;
      overflow: hidden;
      width: calc(50% - 10px);
      display: flex;
      flex-direction: column;
    }
    .slider-container {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden;
    }
    .slider-container video {
      width: 100%;
      aspect-ratio: 3 / 2;
      object-fit: cover;
      display: block;
      border: none;
    }

    .slider-container video { cursor: default; } /* 기본 포인터 */
    .slider-container video:hover {
      cursor: url('/m_img/m2/play_cursor.png') 16 16, auto;
    }

    .preview-image, .preview-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .preview-image { display: block; } /* 이미지 기본은 항상 보이도록 */
    .preview-video { display: none; } /* 영상은 숨김에서 시작 */
    .preview-video:hover { cursor: url('/m_img/m2/play_cursor.png') 16 16, auto; }

    .slide-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
      top: 0;
      left: 0;
    }
    .slide-image.active { display: block; }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 24px;
      padding: 5px 10px;
      cursor: pointer;
      z-index: 2;
    }

    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }


    .title {
      font-family: 'PaperlogyBlack';
      font-size: 20px;
      color: #222;
      margin-bottom: 6px;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .name-en {
      font-family: 'PaperlogyRegular';
      font-size: 0.8rem;
      color: #888;
    }

    .desc {
      font-family: 'PaperlogyMedium';
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .meta {
      font-family: 'PaperlogySemiBold';
      font-size: 14px;
      color: #444;
      padding-top: 10px;
      border-top: 1px dashed #ddd;
      line-height: 1.7;
    }

    .meta strong {
      color: #f42328;
      margin-right: 5px;
      font-weight: bold;
    }

    .info { padding: 20px; }
    .info h2 { font-family: 'PaperlogyBlack'; font-size: 20px; margin-bottom: 10px; }
    .name-en { font-family: 'PaperlogyMedium'; font-size: 0.75rem; margin-left: 8px;}
    .info p { font-family: 'PaperlogyRegular'; color: #343A40; margin-bottom: 10px; }
    .meta { font-family: 'PaperlogySemiBold'; font-size: 14px; color: #444; margin-bottom: 4px; }
    .video-btn {
      display: inline-block;
      font-family: 'PaperlogyMedium';
      background: #f42328;
      color: white;
      padding: 8px 16px;
      text-decoration: none;
      border-radius: 4px;
    }


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

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        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; }

      .zone-nav {
        width: 100%;
        margin: 0 auto; /* 가운데 정렬 유지 */
        top: 90px; /* nav 높이에 맞춰서 간섭 줄임 */
        z-index: 5; /* nav보다 낮게 설정 (nav는 z-index: 10) */
        flex-wrap: nowrap; /* 가로 스크롤 방지 */
      }

      .zone-nav a {
        font-size: 0.8rem;
        padding: 12px 0;
        min-width: 100px;
      }

      .zone-grid { flex-direction: column; gap: 16px; }

      .item { width: 100%; }

      .info { padding: 16px; }
      .title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
      }
      .desc {
        font-size: 14px;
      }

      .slider-btn {
        font-size: 20px;
        padding: 4px 8px;
      }

      
      body { font-size: 0.9rem; }

      .section-title { font-size: 2rem; }
      .section-description { font-size: 1.2rem; }
      .section-subtext { font-size: 0.85rem; }

      .korean-text {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: keep-all;
        white-space: normal;
      }

      .top-visual-wrapper {
          height: 40vh; /* 세로 높이를 지정해 이미지가 보이도록 */
        }

      .top-visual-wrapper img {
        height: 100%; /* 지정한 높이에 맞추어 이미지 표시 */
        object-fit: cover; /* 이미지 비율 유지하며 채움 */
        display: block;
      }

      .top-visual-textbox {
        padding: 0 10px;
      }

      .top-visual-title {
        font-size: 2rem; /* 모바일용 폰트 축소 */
        line-height: 1.2;
      }

      .top-visual-subtitle {
        font-size: 1rem;
        line-height: 1.4;
      }

      .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;
      }

    }