@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

    @font-face {
      font-family: 'GangwonEdu';
      src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff') format('woff');
      font-weight: normal;
      font-display: swap;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --accent: #ff613c;
      --gold: #f5c842;
      --blue: #4787d6;
    }

    body {
      font-family: 'Pretendard', sans-serif;
      overflow-x: hidden;
      background: #0a0a0f;
    }

    /* ?? NAV ?? */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: transparent;
      transition: background 0.3s;
    }
    .navbar.scrolled {
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(12px);
    }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo img {
      height: 24px;
      display: block;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-menu a:hover { color: var(--gold); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 60%;
        max-width: 420px;
        height: calc(100dvh - 70px);
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,0.97);
        padding: 1rem 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(.4,0,.2,1);
        pointer-events: none;
        overflow-y: auto;
      }
      .nav-menu.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
      }
      .hamburger span { background: #fff; }
      .nav-menu li { text-align: left; padding: 0.75rem 1.25rem; }
      .nav-menu a { display: block; width: 100%; text-align: left; }
      .nav-menu a { color: #1b2230; }
    }

    /* ?? HERO ?? */
    .hero {
      position: relative;
      width: 100vw;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/images/main_bg.jpg') center center / cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.04) 45%,
        rgba(0,0,0,0.28) 100%
      );
    }

    /* ?? HERO ?띿뒪???곸뿭 ?? */
    .hero-content {
      position: relative;
      z-index: 4;
      text-align: center;
      color: #111;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding-top: clamp(90px, 13vh, 140px);
      padding-bottom: clamp(260px, 36vh, 420px);
      width: 100%;
    }

    .hero-subtitle {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: 40px;
      font-weight: normal;
      letter-spacing: 0.04em;
      color: #ffffff;
      /* text-shadow: 0 1px 8px rgba(255,255,255,0.6); */
      margin-bottom: 30px;
    }
    .hero-title {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(4.2rem, 14vw, 6rem);
      font-weight: normal;
      letter-spacing: -0.02em;
      line-height: 0.92;
      color: #ffffff;
      /* text-shadow: 2px 3px 0 rgba(255,255,255,0.5), 0 8px 28px rgba(0,0,0,0.18); */
      margin-bottom: 0.5rem;
      display: flex;
      gap: 0;
      justify-content: center;
      align-items: center;
      white-space: nowrap;
    }
    .hero-title .title-char {
      display: inline-block;
      animation: titleWave 2.1s ease-in-out infinite;
    }
    .hero-title .title-run-char {
      color: #f5c842;
      text-shadow: 0 2px 12px rgba(0,0,0,0.34), 0 0 10px rgba(245,200,66,0.42);
    }

    /* ?? ?щ줈嫄??? */
    .hero-slogan-wrap {
      margin-top: 0.3rem;
      margin-bottom: 1.6rem;
      animation: floatUpDown 3s ease-in-out infinite;
    }
    .hero-slogan {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(1.6rem, 4.5vw, 3.4rem);
      font-weight: normal;
      color: #F4C742;
      letter-spacing: 0.01em;
      display: flex;
      gap: 0;
      /* text-shadow: 1px 2px 0 rgba(255,255,255,0.7), 0 4px 16px rgba(0,0,0,0.15); */
    }
    .hero-slogan .char {
      display: inline-block;
      animation: waveChar 1.8s ease-in-out infinite;
    }

    /* ?? ?대깽???뺣낫 (?섎떒 2以? ?? */
    .hero-event-info {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: clamp(108px, 16vh, 180px);
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      width: 100%;
      text-align: center;
      pointer-events: none;
    }
    .event-date {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(2.1rem, 6.8vw, 4.8rem);
      font-weight: normal;
      color: #ffffff;
      letter-spacing: 0.02em;
      line-height: 1;
      text-shadow: 0 6px 18px rgba(0,0,0,0.2);
      white-space: nowrap;
    }
    .event-location {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(1.2rem, 3.9vw, 2.4rem);
      font-weight: normal;
      color: #ffffff;
      letter-spacing: 0.01em;
      line-height: 1.1;
      text-shadow: 0 6px 18px rgba(0,0,0,0.2);
      white-space: nowrap;
    }

    .hero-bottom-layer {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: min(100%, 1440px);
      height: min(48vh, 460px);
      pointer-events: none;
    }

    /* ?? ?섎떒 ?몃Ъ ?대?吏 ?? */
    .hero-people {
      position: absolute;
      z-index: 1;
      left: clamp(12px, 2vw, 24px);
      bottom: 0;
      display: block;
      animation: peoplePulse 3.5s ease-in-out infinite;
    }
    .hero-people img {
      width: clamp(300px, 38vw, 620px);
      max-height: min(40vh, 420px);
      object-fit: contain;
      display: block;
    }

    /* ?? ?ㅽ겕濡??붿궡???? */
    .hero-scroll-hint {
      position: absolute;
      bottom: 2.2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      opacity: 0.7;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .hero-scroll-hint span {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: #fff;
      text-transform: uppercase;
    }
    .hero-scroll-hint svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: #fff;
      stroke-width: 2;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ?? HERO ?고븯??移댁슫?몃떎???? */
    .hero-countdown {
      position: absolute;
      right: clamp(12px, 2vw, 24px);
      bottom: clamp(18px, 2.8vh, 34px);
      z-index: 4;
      width: auto;
      background: none;
      border: none;
      border-radius: 0;
      backdrop-filter: none;
      box-shadow: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      pointer-events: auto;
    }

    .countdown-grid {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      gap: clamp(0.5rem, 1.2vw, 1rem);
    }
    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      min-width: 0;
    }
    .countdown-box {
      width: clamp(66px, 6.6vw, 86px);
      height: clamp(54px, 5.8vw, 72px);
      background: linear-gradient(145deg, rgba(43,53,78,0.88), rgba(24,30,48,0.9));
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 14px rgba(0,0,0,0.22);
    }
    .countdown-num {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(2.6rem, 4.8vw, 4.2rem);
      font-weight: normal;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1;
      text-shadow: 0 2px 16px rgba(0,0,0,0.35);
      font-variant-numeric: tabular-nums;
    }
    .countdown-unit {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }
    .countdown-colon {
      font-family: 'GangwonEdu', 'Pretendard', sans-serif;
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: normal;
      color: rgba(255,255,255,0.55);
      line-height: 1;
      padding-bottom: 1.2rem;
      user-select: none;
      animation: colonBlink 1s step-end infinite;
      text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    @keyframes colonBlink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }

    .countdown-event-meta { display: none; }

    /* ?? ?좊땲硫붿씠???? */
    @keyframes floatUpDown {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-14px); }
    }
    @keyframes waveChar {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    @keyframes titleWave {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }
    @keyframes peoplePulse {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.05); }
    }

    /* ?? 諛섏쓳???? */
    @media (max-width: 900px) {
      .nav-logo img { height: 28px; }
      .hero-content { padding-top: 110px; padding-bottom: 300px; }
      .hero-slogan-wrap { margin-bottom: 1rem; }
      .hero-bottom-layer {
        height: min(52vh, 470px);
        padding: 0 10px;
      }
      .hero-people {
        left: 10px;
      }
      .hero-people img {
        width: clamp(250px, 48vw, 430px);
        max-height: 34vh;
      }
      .hero-event-info { bottom: clamp(110px, 15vh, 180px); }
      .hero-countdown { right: 10px; bottom: 14px; }
      .countdown-grid { gap: 0.4rem; }
    }
    @media (max-width: 480px) {
      .hero-content { padding-bottom: 330px; }
      .hero-bottom-layer {
        height: min(56vh, 500px);
      }
      .hero-event-info { bottom: clamp(210px, 28vh, 250px); }
      .event-date { font-size: clamp(1.8rem, 8.2vw, 2.5rem); }
      .event-location { font-size: clamp(1.05rem, 5.2vw, 1.45rem); }
      .hero-people {
        left: 50%;
        transform: translateX(-50%);
      }
      .hero-people img {
        width: min(82vw, 360px);
      }
      .hero-countdown { left: 50%; right: auto; transform: translateX(-50%); }
      .countdown-grid { gap: 0.2rem; }
    }