/* ROOT */
.event-hook{
  width:100%;
  background:#0b5cff;
  padding:20px 0;
  overflow:hidden;
  color:#fff;
  font-family:Pretendard,"Noto Sans KR",sans-serif;
}

/* 900px Center */
.event-hook-inner{
  max-width:900px;
  margin:0 auto;
  padding:0 16px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
}

/* TEXT */
.eh-text{
  flex:1;
  max-width:400px;
}

.eh-chip{
  display:inline-block;
  padding:8px 16px;
  font-size:18px;
  font-weight:800;
  background:rgba(255,255,255,0.18);
  border-radius:999px;
  margin-bottom:16px;
}

.eh-title{
  font-size:28px;
  font-weight:900;
  line-height:1.45;
  margin:0;
  text-shadow:0 2px 8px rgba(0,0,0,0.3);
}

/* VISUAL */
.eh-visual{
  flex:1;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-height:260px;
}

/* 후광 */
.eh-light{
  position:absolute;
  top:0;
  right:0;
  width:340px;
  opacity:0.9;
  filter:blur(1px);
  z-index:1;
}

/* 캐릭터 */
.eh-person{
  position:relative;
  right:auto;
  bottom:auto;
  width:240px;
  z-index:3;
  filter:drop-shadow(0 7px 18px rgba(0,0,0,0.3));
  animation:float 3.5s ease-in-out infinite;
}

/* 동전 1개 (기존 유지) */
.coin-single{
  position:absolute;
  right:160px;
  bottom:40px;
  width:42px;
  z-index:4;
  animation:float 4.2s ease-in-out infinite;
}

/* 파티클 — PC: 더 넓게 확산 배치 */
.particle{
  position:absolute;
  width:8px;
  height:8px;
  background:rgba(255,255,255,0.9);
  border-radius:50%;
  box-shadow:0 0 12px rgba(255,255,255,0.8);
  animation:twinkle 2.4s infinite ease-in-out;
}

/* PC 파티클: 좌/우 넓게 분포 */
.p1{ top:20px; left:10%;  animation-delay:0s; }
.p2{ top:110px; left:30%; animation-delay:0.4s; }
.p3{ top:70px; right:18%; animation-delay:0.8s; }

/* MOBILE */
@media(max-width:768px){

  .event-hook{
    padding:20px 0;
  }

  .event-hook-inner{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }

  .eh-title{
    font-size:24px;
  }

  .eh-visual{
    min-height:auto;
    margin-top:4px;
    justify-content:center;
  }

  .eh-person{
    width:200px;
    margin:0 auto;
  }

  /* 모바일 동전 위치 그대로 유지 */
  .coin-single{
    width:36px;
    left:65%;
    top:-18px;
    bottom:auto;
    right:auto;
  }

  /* 모바일 파티클 — 인물 뒤에 가리지 않도록 대폭 재배치 */
  .particle{
    width:6px;
    height:6px;
    opacity:0.8;
  }

  /* 더 넓은 분포 + 인물 피해서 좌측 중심 */
  .p1{ top:-10px; left:18%; }
  .p2{ top:50px; left:5%; }
  .p3{ top:130px; right:8%; }
}

/* FLOAT ANIM */
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

/* TWINKLE */
@keyframes twinkle{
  0%,100%{ opacity:0.4; transform:scale(0.9); }
  50%{ opacity:1; transform:scale(1.4); }
}
