/* ¦¡ ±âº» ¦¡ */
#event {
  position: relative;
  font-family: 'Pretendard', 'Arial', sans-serif;
  text-align: center;
}




/* »õ Åä±Û ¹öÆ° */
.event-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px auto;
  padding: 8px 16px;
  background: #2e9f6b;
  color: #fff;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  font-weight: 700;
  animation: bounce 1.5s infinite;
}




.event-toggle-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.event-toggle .main-text {
  font-size: 2rem;
}
.event-toggle .sub-text {
  font-size:1.5rem;
 
}




/* ¼Õ°¡¶ô ¾ÆÀÌÄÜ */
.finger-icon {
  width: 50px;
  height: auto;
  animation: blink 1.2s infinite;
}




/* ±ôºýÀÓ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}




/* »ìÂ¦ Æ¢´Â ´À³¦ */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}








/* ¦¡ ¿À¹ö·¹ÀÌ ¹× »ó¼¼ ¹Ú½º ¦¡ */
.overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, .35);
  z-index: 900;
}




.event-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  width: 320px;
  max-width: 90vw;
  background: #fffce8;
  border: 1px solid #ffd54f;
  border-radius: 8px;
  padding: 18px 16px;
  gap: 14px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
}




.event-title {
  font-size: 1.5rem;font-weight: bold;
  font-weight: 600;
  color: #333;
}




.event-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;font-weight: bold;
  gap: 6px;
}




.event-item img {
  width: 80px;
}




.event-note {
  font-size: .75rem;
  color: #666;
}




/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 480px) {
  .event-box {
    width: 300px;
    padding: 14px;
  }
  .event-item img {
    width: 68px;
  }
  .event-toggle .main-text {
    font-size: 1.5rem;font-weight: bold;
  }
  .event-toggle .sub-text {
    font-size: 1.2rem;font-weight: bold;
  }
  .finger-icon {
    width: 35px;
  }
}