/* ?????? RESET & VARIABLES ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --jungle-deep:  #060e07;
      --jungle-dark:  #0c1f0e;
      --jungle-mid:   #122014;
      --bone:         #e8d5a3;
      --bone-dim:     rgba(232,213,163,0.6);
      --gold:         #f0b429;
      --gold-light:   #ffe080;
      --fire-bright:  #ff7c2a;
      --earth:        #5c3317;
      --earth-dark:   #3a1f0b;
      --earth-deep:   #1a0a02;
      --font-display: 'Titan One', cursive;
      --font-body:    'Nunito', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--jungle-deep);
      color: var(--bone);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--jungle-deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ?????? SCROLL PROGRESS ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 3px; background: var(--gold); width: 0%;
      z-index: 10001; box-shadow: 0 0 10px rgba(240,180,41,0.8);
      transition: width 0.08s linear;
    }

    /* ?????? HEADER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 40px;
      background: rgba(6,14,7,0.88); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(240,180,41,0.12);
      transition: padding 0.3s, background 0.3s;
    }
    #header.scrolled { padding: 10px 40px; background: rgba(6,14,7,0.97); }

    .header-logo { text-decoration: none; display: flex; align-items: center; }
    .header-logo .logo-img { height: 52px; width: auto; display: block; }

    nav { display: flex; align-items: center; gap: 22px; }
    nav a {
      font-family: var(--font-body); font-weight: 800; font-size: 0.82rem;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--bone-dim); text-decoration: none;
      transition: color 0.2s; position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.2s;
    }
    nav a:hover { color: var(--gold); }
    nav a:hover::after { transform: scaleX(1); }
    nav a.active { color: var(--gold); }
    nav a.active::after { transform: scaleX(1); }

    .btn-book {
      font-family: var(--font-body); font-weight: 800; font-size: 0.9rem;
      letter-spacing: 0.06em; background: var(--gold); color: var(--earth-deep);
      border: none; padding: 11px 26px; border-radius: 6px; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 20px rgba(240,180,41,0.35);
    }
    .btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,180,41,0.55); filter: brightness(1.08); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 2px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(6,14,7,0.98); z-index: 1100;
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    @keyframes menu-open {
      from { opacity: 0; transform: translateX(50px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .mobile-menu.open { display: flex; animation: menu-open 0.35s cubic-bezier(0.22,1,0.36,1) both; }
    .mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--bone); text-decoration: none; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: var(--bone); font-size: 2rem; cursor: pointer; font-family: var(--font-display); }

    /* ?????? SHARED ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    .section-label { display: inline-block; font-size: 0.7rem; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--bone); line-height: 1.05; }
    .accent { color: var(--gold); text-shadow: 0 0 20px rgba(240,180,41,0.4); }
    .section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--fire-bright)); border-radius: 2px; margin-top: 18px; }

    .btn-primary {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 1.05rem; letter-spacing: 0.04em; background: var(--gold);
      color: var(--earth-deep); padding: 17px 38px; border-radius: 6px;
      text-decoration: none; transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 24px rgba(240,180,41,0.4);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(240,180,41,0.6); filter: brightness(1.08); }

    /* ?????? HERO ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #hero {
      position: relative; min-height: 56vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 160px 20px 100px;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(240,180,41,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 30% 60%, rgba(255,124,42,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(240,180,41,0.06) 0%, transparent 55%),
        linear-gradient(180deg, #0e1a0f 0%, #091a0d 40%, #060e07 100%);
    }

    /* floating particles */
    .particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      animation: particleFloat linear infinite;
      opacity: 0;
    }
    .particle:nth-child(1)  { width:3px; height:3px; left:8%;   animation-duration:8s;  animation-delay:0s;   }
    .particle:nth-child(2)  { width:2px; height:2px; left:18%;  animation-duration:11s; animation-delay:2s;   }
    .particle:nth-child(3)  { width:4px; height:4px; left:28%;  animation-duration:7s;  animation-delay:1s;   }
    .particle:nth-child(4)  { width:2px; height:2px; left:40%;  animation-duration:9s;  animation-delay:3.5s; }
    .particle:nth-child(5)  { width:3px; height:3px; left:55%;  animation-duration:12s; animation-delay:0.5s; }
    .particle:nth-child(6)  { width:2px; height:2px; left:66%;  animation-duration:8.5s;animation-delay:2.5s; }
    .particle:nth-child(7)  { width:4px; height:4px; left:76%;  animation-duration:10s; animation-delay:1.5s; }
    .particle:nth-child(8)  { width:2px; height:2px; left:88%;  animation-duration:7.5s;animation-delay:4s;   }
    .particle:nth-child(9)  { width:3px; height:3px; left:94%;  animation-duration:9.5s;animation-delay:0.8s; }
    .particle:nth-child(10) { width:2px; height:2px; left:48%;  animation-duration:11.5s;animation-delay:3s;  }

    @keyframes particleFloat {
      0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
      10%  { opacity: 0.6; }
      80%  { opacity: 0.3; }
      100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
    }

    .hero-bg-lines {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background-image:
        linear-gradient(rgba(240,180,41,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,180,41,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    .hero-content { position: relative; z-index: 2; max-width: 860px; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.68rem; font-weight: 900; letter-spacing: 4px;
      text-transform: uppercase; color: var(--earth-deep);
      background: var(--gold); padding: 6px 16px; border-radius: 20px;
      margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards;
    }

    .hero-brand {
      font-family: var(--font-display); line-height: 0.92; margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.7s ease 0.3s forwards;
    }
    .brand-eyebrow {
      display: block; font-size: clamp(1rem, 3vw, 1.6rem);
      color: var(--bone-dim); letter-spacing: 0.1em; margin-bottom: 8px;
      font-family: var(--font-body); font-weight: 900; text-transform: uppercase;
    }
    .brand-main { display: block; font-size: clamp(2.8rem, 9vw, 6rem); color: var(--bone); letter-spacing: -0.02em; }
    .brand-sub  {
      display: block; font-size: clamp(1.6rem, 5vw, 3.2rem); color: var(--gold);
      text-shadow: 0 0 40px rgba(240,180,41,0.6); letter-spacing: 0.06em;
    }

    .hero-tagline {
      font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--bone-dim);
      line-height: 1.7; max-width: 580px; margin: 0 auto 36px;
      opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
    }
    .hero-tagline strong { color: var(--bone); }

    .hero-cta-group {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.7s ease 0.65s forwards;
    }

    .btn-outline {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 1rem; letter-spacing: 0.04em;
      color: var(--bone); padding: 16px 34px; border-radius: 6px;
      text-decoration: none; border: 2px solid rgba(232,213,163,0.25);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,180,41,0.05); }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(20px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ?????? OPENING STATEMENT ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #opening {
      padding: 80px 40px;
      background: var(--jungle-dark);
    }
    .opening-inner {
      max-width: 840px; margin: 0 auto; text-align: center;
    }
    .opening-quote {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: var(--bone); line-height: 1.3;
      margin-bottom: 20px;
    }
    .opening-quote .accent { color: var(--gold); }
    .opening-body {
      font-size: clamp(1rem, 2vw, 1.1rem);
      color: var(--bone-dim); line-height: 1.85; max-width: 680px; margin: 0 auto;
    }
    .opening-divider {
      width: 80px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 32px auto;
    }

    /* ?????? PERKS SECTION ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #perks {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .perks-inner { max-width: 1100px; margin: 0 auto; }
    .perks-header { max-width: 600px; margin-bottom: 52px; }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .perk-card {
      background: rgba(18,32,20,0.55);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .perk-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(240,180,41,0.4), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .perk-card:hover { transform: translateY(-5px); border-color: rgba(240,180,41,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    .perk-card:hover::before { opacity: 1; }
    .perk-card.highlight {
      border-color: rgba(240,180,41,0.25);
      background: linear-gradient(140deg, rgba(58,31,11,0.3) 0%, rgba(18,32,20,0.55) 100%);
      box-shadow: 0 0 40px rgba(240,180,41,0.07), inset 0 0 40px rgba(240,180,41,0.03);
    }
    .perk-card.highlight::before { opacity: 1; }

    .perk-icon {
      font-size: 2rem; line-height: 1;
      background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
      border-radius: 12px; padding: 12px 14px;
      display: inline-block; margin-bottom: 20px;
    }
    .perk-card.highlight .perk-icon {
      background: rgba(240,180,41,0.15);
      border-color: rgba(240,180,41,0.35);
    }

    .perk-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.15rem;
      color: var(--bone); margin-bottom: 10px; line-height: 1.15;
    }
    .perk-card.highlight .perk-title { color: var(--gold); }

    .perk-body {
      font-size: 0.9rem; color: var(--bone-dim); line-height: 1.75;
    }

    /* ?????? WHO WE WANT ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #who {
      padding: 80px 40px;
      background: var(--jungle-dark);
    }
    .who-inner { max-width: 1000px; margin: 0 auto; }
    .who-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .who-text { }
    .who-list {
      margin-top: 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .who-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 20px;
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(240,180,41,0.1);
      border-radius: 12px;
      transition: border-color 0.2s, background 0.2s;
    }
    .who-item:hover { border-color: rgba(240,180,41,0.25); background: rgba(240,180,41,0.04); }
    .who-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
    .who-item-text { font-size: 0.93rem; color: var(--bone-dim); line-height: 1.6; }
    .who-item-text strong { color: var(--bone); display: block; font-size: 0.88rem; margin-bottom: 2px; }

    .who-aside {
      background: linear-gradient(140deg, rgba(58,31,11,0.4) 0%, rgba(18,32,20,0.6) 100%);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 20px;
      padding: 40px 36px;
      box-shadow: 0 0 60px rgba(240,180,41,0.06);
    }
    .aside-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.4rem;
      color: var(--gold); margin-bottom: 6px;
    }
    .aside-sub {
      font-size: 0.85rem; color: var(--bone-dim); margin-bottom: 28px;
    }
    .commission-display {
      text-align: center;
      padding: 28px 20px;
      background: rgba(240,180,41,0.08);
      border: 1px solid rgba(240,180,41,0.18);
      border-radius: 14px;
      margin-bottom: 20px;
    }
    .commission-num {
      font-family: var(--font-display);
      font-size: 4.5rem; color: var(--gold);
      text-shadow: 0 0 30px rgba(240,180,41,0.5);
      line-height: 1;
    }
    .commission-label {
      font-size: 0.78rem; font-weight: 900; letter-spacing: 3px;
      text-transform: uppercase; color: var(--bone-dim); margin-top: 6px;
    }
    .commission-detail {
      font-size: 0.85rem; color: var(--bone-dim); line-height: 1.65;
      margin-top: 16px;
    }
    .commission-detail strong { color: var(--bone); }

    /* ?????? CONTENT REQUIREMENTS ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #content-req {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .content-req-inner { max-width: 1000px; margin: 0 auto; }
    .content-req-header { text-align: center; margin-bottom: 52px; }

    .timeline {
      display: flex; flex-direction: column; gap: 0;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute; left: 28px; top: 28px; bottom: 28px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold), var(--fire-bright), rgba(240,180,41,0.1));
      z-index: 0;
    }

    .timeline-item {
      display: flex; gap: 32px; align-items: flex-start;
      padding: 0 0 36px;
      position: relative; z-index: 1;
    }
    .timeline-item:last-child { padding-bottom: 0; }

    .timeline-dot {
      flex-shrink: 0;
      width: 58px; height: 58px;
      background: var(--jungle-dark);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; line-height: 1;
      box-shadow: 0 0 20px rgba(240,180,41,0.2);
    }

    .timeline-content {
      flex: 1;
      background: rgba(18,32,20,0.5);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 16px;
      padding: 28px 32px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .timeline-content:hover { border-color: rgba(240,180,41,0.18); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

    .timeline-phase {
      font-size: 0.68rem; font-weight: 900; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
    }
    .timeline-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.25rem;
      color: var(--bone); margin-bottom: 16px;
    }
    .timeline-list {
      list-style: none; padding: 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .timeline-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.92rem; color: var(--bone-dim); line-height: 1.55;
    }
    .timeline-list li::before {
      content: '???';
      flex-shrink: 0;
      color: var(--gold); font-weight: 900; font-size: 0.85rem;
      background: rgba(240,180,41,0.1);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 50%; width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px; font-size: 0.7rem;
    }

    /* ?????? GIVEAWAY ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #giveaway {
      padding: 80px 40px;
      background: var(--jungle-dark);
    }
    .giveaway-inner { max-width: 1000px; margin: 0 auto; }
    .giveaway-header { text-align: center; margin-bottom: 52px; }

    .giveaway-split {
      display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    }

    .split-card {
      border-radius: 16px; padding: 36px 32px;
      border: 1px solid rgba(232,213,163,0.1);
      background: rgba(6,14,7,0.5);
    }
    .split-card.we-provide {
      border-color: rgba(240,180,41,0.2);
      background: linear-gradient(140deg, rgba(58,31,11,0.25) 0%, rgba(6,14,7,0.5) 100%);
    }

    .split-card-header {
      display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
    }
    .split-icon {
      font-size: 1.8rem; line-height: 1;
      background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
      border-radius: 10px; padding: 10px 12px;
    }
    .split-label {
      font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; color: var(--bone);
    }
    .split-card.we-provide .split-label { color: var(--gold); }

    .split-list {
      list-style: none; padding: 0;
      display: flex; flex-direction: column; gap: 12px;
    }
    .split-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.92rem; color: var(--bone-dim); line-height: 1.55;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(232,213,163,0.05);
    }
    .split-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .split-list li::before {
      content: '???'; flex-shrink: 0;
      color: var(--fire-bright); font-weight: 900; font-size: 1rem;
    }

    /* ?????? CONDUCT ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #conduct {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .conduct-inner { max-width: 1000px; margin: 0 auto; }
    .conduct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }

    .conduct-card {
      border-radius: 14px;
      border: 1px solid rgba(232,213,163,0.08);
      padding: 28px 28px;
      background: rgba(18,32,20,0.45);
      display: flex; align-items: flex-start; gap: 16px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .conduct-card:hover { border-color: rgba(240,180,41,0.18); transform: translateX(4px); }

    .conduct-icon {
      font-size: 1.5rem; flex-shrink: 0; line-height: 1;
      margin-top: 2px;
    }
    .conduct-text {}
    .conduct-title {
      font-weight: 900; font-size: 0.9rem;
      color: var(--bone); margin-bottom: 4px;
    }
    .conduct-body {
      font-size: 0.87rem; color: var(--bone-dim); line-height: 1.65;
    }

    /* ?????? FUTURE ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #future {
      padding: 80px 40px;
      background: var(--jungle-dark);
      position: relative; overflow: hidden;
    }
    #future::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,180,41,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .future-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
    .future-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

    .attraction-list {
      margin-top: 28px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .attraction-item {
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 10px; padding: 16px 18px;
      font-size: 0.88rem; font-weight: 700; color: var(--bone-dim);
      display: flex; align-items: center; gap: 10px;
      transition: border-color 0.2s, color 0.2s;
    }
    .attraction-item:hover { border-color: rgba(240,180,41,0.2); color: var(--bone); }
    .attraction-item span { font-size: 1.2rem; }

    .future-perks {
      background: linear-gradient(140deg, rgba(58,31,11,0.4) 0%, rgba(18,32,20,0.6) 100%);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 20px; padding: 40px 36px;
    }
    .future-perks-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.4rem;
      color: var(--gold); margin-bottom: 24px;
    }
    .future-perk-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(232,213,163,0.07);
    }
    .future-perk-item:last-child { border-bottom: none; padding-bottom: 0; }
    .future-perk-item-icon { font-size: 1.4rem; flex-shrink: 0; }
    .future-perk-item-text {
      font-size: 0.92rem; color: var(--bone-dim); line-height: 1.6;
    }
    .future-perk-item-text strong { color: var(--bone); display: block; font-size: 0.88rem; margin-bottom: 2px; }

    /* ?????? ONBOARDING ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #onboarding {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .onboarding-inner { max-width: 900px; margin: 0 auto; }
    .onboarding-header { text-align: center; margin-bottom: 56px; }

    .steps {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; top: 28px; left: 10%; right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--fire-bright), rgba(240,180,41,0.2));
      z-index: 0;
    }

    .step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; position: relative; z-index: 1;
    }

    .step-num {
      width: 56px; height: 56px;
      background: var(--jungle-dark);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; color: var(--gold);
      margin-bottom: 16px;
      box-shadow: 0 0 20px rgba(240,180,41,0.2);
      transition: background 0.2s, box-shadow 0.2s;
    }
    .step:hover .step-num {
      background: rgba(240,180,41,0.1);
      box-shadow: 0 0 30px rgba(240,180,41,0.35);
    }

    .step-label {
      font-weight: 800; font-size: 0.8rem;
      color: var(--bone); line-height: 1.4;
      max-width: 100px;
    }

    /* ?????? FAQ ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #faq {
      padding: 80px 40px;
      background: var(--jungle-dark);
    }
    .faq-inner { max-width: 800px; margin: 0 auto; }
    .faq-header { text-align: center; margin-bottom: 48px; }

    .faq-list { display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 14px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: rgba(240,180,41,0.18); }

    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      padding: 22px 28px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      text-align: left;
    }
    .faq-q-text {
      font-family: var(--font-body); font-weight: 800; font-size: 0.95rem;
      color: var(--bone); line-height: 1.4;
    }
    .faq-q-icon {
      flex-shrink: 0; font-size: 1.4rem; color: var(--gold);
      transition: transform 0.3s; font-weight: 300; line-height: 1;
    }
    .faq-item.open .faq-q-icon { transform: rotate(45deg); }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
    }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner {
      padding: 0 28px 22px;
      font-size: 0.92rem; color: var(--bone-dim); line-height: 1.8;
      border-top: 1px solid rgba(232,213,163,0.06);
      padding-top: 18px;
    }

    /* ?????? CTA STRIP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #cta-strip {
      padding: 100px 40px;
      background: var(--jungle-deep);
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta-strip::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(240,180,41,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 30% 70%, rgba(255,124,42,0.05) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .cta-roar {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 5rem);
      color: var(--gold);
      text-shadow: 0 0 60px rgba(240,180,41,0.4);
      line-height: 1; margin-bottom: 16px;
    }
    .cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 2rem); color: var(--bone); margin-bottom: 14px; }
    .cta-inner p { color: var(--bone-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ?????? FOOTER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    footer { background: var(--earth-deep); border-top: 1px solid rgba(240,180,41,0.12); padding: 60px 40px; }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: auto 1fr auto;
      align-items: center; gap: 40px;
    }
    .footer-logo { text-decoration: none; display: flex; align-items: center; }
    .footer-logo .logo-img { height: 48px; width: auto; display: block; }
    .footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 0.82rem; font-weight: 700; color: rgba(232,213,163,0.4); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-socials { display: flex; gap: 12px; align-items: center; }
    .social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(232,213,163,0.05); border: 1px solid rgba(232,213,163,0.1); transition: background 0.2s, border-color 0.2s; }
    .social-link:hover { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.3); }
    .social-link svg { width: 16px; height: 16px; fill: var(--bone-dim); }
    .footer-copy {
      max-width: 1100px; margin: 32px auto 0;
      font-size: 0.75rem; color: rgba(232,213,163,0.2);
      text-align: center; padding-top: 28px;
      border-top: 1px solid rgba(232,213,163,0.06);
    }
    .footer-copy a { color: rgba(232,213,163,0.2); text-decoration: none; }

    /* ?????? FLOAT CTA ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .float-cta {
      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 500; pointer-events: none;
      opacity: 0; transition: opacity 0.4s;
    }
    .float-cta.visible { opacity: 1; pointer-events: auto; }
    .float-cta a {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 0.9rem; background: var(--gold); color: var(--earth-deep);
      padding: 14px 28px; border-radius: 50px; text-decoration: none;
      box-shadow: 0 8px 32px rgba(240,180,41,0.5);
      white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s;
    }
    .float-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,180,41,0.65); }

    /* ?????? CREATOR FORM ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #creator-form {
      padding: 100px 40px;
      position: relative; overflow: hidden;
      background:
        radial-gradient(ellipse 70% 50% at 50% 10%, rgba(240,180,41,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 5% 85%,  rgba(255,124,42,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 95% 20%, rgba(240,180,41,0.07) 0%, transparent 55%),
        linear-gradient(180deg, #0a1a0c 0%, #071209 50%, #0c1f0e 100%);
    }
    #creator-form::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(240,180,41,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,180,41,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .creator-form-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
    .creator-form-header { text-align: center; margin-bottom: 52px; }
    .creator-form-header .section-title { font-size: clamp(2rem, 5vw, 3rem); }
    .creator-form-tagline {
      font-size: 1rem; color: var(--bone-dim); margin-top: 14px; line-height: 1.7;
    }

    .form-card {
      background: linear-gradient(145deg, rgba(18,32,20,0.85) 0%, rgba(10,20,12,0.95) 100%);
      border: 1px solid rgba(240,180,41,0.18);
      border-radius: 24px;
      padding: 52px 48px;
      box-shadow: 0 0 0 1px rgba(240,180,41,0.04), 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(240,180,41,0.05);
      position: relative; overflow: hidden;
    }
    .form-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--fire-bright), var(--gold), transparent);
    }
    .form-card::after {
      content: '';
      position: absolute; bottom: -80px; right: -80px;
      width: 260px; height: 260px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,180,41,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .form-group { margin-bottom: 26px; position: relative; }
    .form-label {
      display: block; font-weight: 800; font-size: 0.88rem;
      color: var(--bone); margin-bottom: 4px; letter-spacing: 0.03em;
    }
    .form-sublabel {
      display: block; font-size: 0.76rem; color: var(--bone-dim);
      margin-bottom: 10px;
    }
    .form-input {
      width: 100%;
      background: rgba(6,14,7,0.7);
      border: 1px solid rgba(232,213,163,0.12);
      border-radius: 10px; padding: 14px 18px;
      color: var(--bone); font-family: var(--font-body); font-size: 0.95rem;
      outline: none; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .form-input:focus {
      border-color: var(--gold);
      background: rgba(6,14,7,0.9);
      box-shadow: 0 0 0 3px rgba(240,180,41,0.12), 0 4px 20px rgba(0,0,0,0.3);
    }
    .form-input::placeholder { color: rgba(232,213,163,0.2); }

    .radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
    .radio-option {
      display: flex; align-items: center; gap: 14px;
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 10px; padding: 14px 18px;
      cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .radio-option:hover {
      border-color: rgba(240,180,41,0.35);
      background: rgba(240,180,41,0.05);
      transform: translateX(3px);
    }
    .radio-option input[type="radio"] { accent-color: var(--gold); width: 17px; height: 17px; flex-shrink: 0; }
    .radio-option.selected {
      border-color: rgba(240,180,41,0.55);
      background: rgba(240,180,41,0.09);
      box-shadow: 0 0 16px rgba(240,180,41,0.08);
    }
    .radio-label { font-size: 0.92rem; color: var(--bone); font-weight: 700; }

    .form-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(240,180,41,0.15), transparent);
      margin: 36px 0;
    }
    .form-section-title {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-body); font-weight: 900; font-size: 0.72rem;
      letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .form-section-title::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, rgba(240,180,41,0.2), transparent);
    }

    .checkbox-group { display: flex; flex-direction: column; gap: 12px; }
    .checkbox-option {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 10px; padding: 15px 18px;
      cursor: pointer; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .checkbox-option:hover { border-color: rgba(240,180,41,0.35); background: rgba(240,180,41,0.05); }
    .checkbox-option input[type="checkbox"] { accent-color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
    .checkbox-option input[type="checkbox"]:checked ~ .checkbox-label { color: var(--bone); }
    .checkbox-label { font-size: 0.88rem; color: rgba(232,213,163,0.7); font-weight: 600; line-height: 1.55; transition: color 0.2s; }

    .btn-submit {
      width: 100%; margin-top: 36px;
      font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.06em;
      background: linear-gradient(135deg, var(--gold) 0%, var(--fire-bright) 100%);
      color: var(--earth-deep);
      border: none; padding: 20px 32px; border-radius: 10px;
      cursor: pointer; transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 6px 30px rgba(240,180,41,0.4);
      position: relative; overflow: hidden;
    }
    .btn-submit::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(240,180,41,0.6); filter: brightness(1.06); }
    .btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

    .form-msg {
      margin-top: 18px; padding: 16px 20px; border-radius: 10px;
      font-size: 0.92rem; font-weight: 700; display: none; text-align: center;
    }
    .form-msg.success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; display: block; }
    .form-msg.error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; display: block; }
    .form-privacy { text-align: center; font-size: 0.72rem; color: rgba(232,213,163,0.2); margin-top: 16px; }

    /* ?????? RESPONSIVE ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    @media (max-width: 960px) {
      .perks-grid { grid-template-columns: repeat(2, 1fr); }
      .who-layout { grid-template-columns: 1fr; gap: 36px; }
      .future-layout { grid-template-columns: 1fr; gap: 36px; }
      .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .steps::before { display: none; }
      .conduct-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      #header { padding: 14px 20px; }
      nav { display: none; }
      .btn-book { display: none; }
      .hamburger { display: flex; }
      #opening, #perks, #who, #content-req, #giveaway, #conduct, #future, #onboarding, #faq, #creator-form, #cta-strip { padding-left: 20px; padding-right: 20px; }
      .form-card { padding: 32px 22px; }
      #creator-form { padding-top: 70px; padding-bottom: 70px; }
      .perks-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .giveaway-split { grid-template-columns: 1fr; }
      .attraction-list { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-socials { justify-content: center; }
      .timeline::before { display: none; }
    }

    @media (max-width: 560px) {
      .steps { grid-template-columns: 1fr; }
      .hero-cta-group { flex-direction: column; align-items: center; }
    }

    /* ?????? SCROLL TO TOP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 600;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(240,180,41,0.45);
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s, filter 0.2s;
      pointer-events: none;
    }
    #scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #scroll-top:hover { box-shadow: 0 8px 32px rgba(240,180,41,0.65); filter: brightness(1.1); }
    #scroll-top svg { width: 18px; height: 18px; fill: none; stroke: #1a0a02; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    @media (max-width: 768px) {
      #scroll-top { bottom: 76px; right: 16px; z-index: 950; }
    }