.zuyeog_container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.zuyeog_love_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  padding: 2rem 2.8rem;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-l);
  margin-top: 2rem;
  margin-bottom: 3rem;
  min-height: 50rem;
  background: linear-gradient(135deg, #fff0f3 0%, #ffe4ec 50%, #ffd6e0 100%);
}

.zuyeog_love_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--border-radius-l);
  padding: 2rem 1.6rem;
  box-shadow: 0 4px 15px rgba(255, 105, 135, 0.15);
}

.card_white {
  background-color: var(--color-white);
}
.card_pink {
  background: rgba(255, 255, 255, 0.5);
}
.card_lightPink {
  background: linear-gradient(135deg, #fff0f3 0%, #ffe4ec 100%);
  font-size: var(--size-xl);
  font-weight: var(--weight-bold);
  padding: 0.8rem;
  min-height: 4.6rem;
}
.card_hotPink {
  background: linear-gradient(135deg, #ff8fab 0%, #e75480 100%);
}

.zuyeog_love_card_title {
  font-size: var(--size-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: 1rem;
}
.zuyeog_subTitle {
  font-size: var(--size-sm);
  color: var(--color-gray4);
  text-align: center;
  line-height: 1.7;
}
.zuyeog_love_hotpink_txt {
  color: #e75480;
}
.zuyeog_love_pink_txt {
  color: #ff6b95;
}
.italic_txt {
  font-style: italic;
  margin: 0 0.4rem 0 0;
}

.zuyeog_love_card_desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--size-sm);
  color: var(--color-gray4);
  line-height: 1.7;
}

.zuyeog_love_card_select {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  border-radius: var(--border-radius-l);
  margin-top: 1.6rem;
  transition: opacity 0.35s ease-out;
}
#zuyeog_love_card_select.zuyeog_love_hiding {
  opacity: 0;
  pointer-events: none;
}
#zuyeog_love_card_select_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
#zuyeog_love_card_select_btn img {
  width: 16rem;
  height: 16rem;
}
.zuyeog_love_card_guide_desc {
  font-size: var(--size-sm);
  color: var(--color-white);
  opacity: 0.9;
  line-height: 1.8;
}
.guide_burgundy_txt {
  color: #702118;
  text-align: center;
}
.zuyeog_love_result_title {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  font-size: var(--size-base);
  font-weight: var(--weight-large);
}
.zuyeog_love_result_title_icon {
  animation: pulse 1.5s ease infinite;
}
.zuyeog_love_result_gae_img_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 6px;
  margin: 1.6rem 0;
}
.zuyeog_love_result_gae_result_img {
  width: 100%;
  max-width: 110px;
  height: 18px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}
.zuyeog_love_result_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  margin-top: 1.6rem;
}
.zuyeog_love_result_gae_section {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}
.zuyeog_love_result_gae_section_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: var(--border-radius-l);
  padding: 2rem 1.6rem;
  box-shadow: 0 4px 15px rgba(255, 105, 135, 0.15);
}
.zuyeog_love_result_gae_selected_img_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.8rem 0 1rem 0;
}

.zuyeog_love_result_gae_selected_title_container {
  font-size: var(--size-base);
  min-height: 4rem;
  text-align: center;
}

.zuyeog_love_result_icon_txt {
  font-size: var(--size-xl);
}

.pink_border {
  border: 2px solid #ff8fab;
}
.zuyeog_result_heart_icon {
  font-size: 4rem;
  text-shadow: 0 4px 15px rgba(255, 107, 149, 0.4);
  animation: heartBeat 1.5s ease infinite;
}
@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.15);
  }
}

#zuyeog_transfer_gae_text {
  display: block;
  text-align: center;
  font-size: var(--size-sm);
  line-height: 1.7;
  color: var(--color-gray4);
  word-break: keep-all;
}
#zuyeog_transfer_gae_text > span {
  color: #e75480;
  font-weight: var(--weight-black);
}
.zuyeog_love_point_container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--color-white);
  font-weight: var(--weight-black);
  margin: 1rem 0;
}
#zuyeog_love_point {
  font-size: 6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.zuyeog_love_point_txt {
  font-size: var(--size-2xl);
}
.zuyeog_love_heart_container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.zuyeog_love_heart {
  font-size: var(--size-2xl);
  color: var(--color-black2);
}
.zuyeog_love_result_desc_title_border {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(255, 182, 193, 0.5);
  margin-bottom: 1.2rem;
}
#zuyeog_love_result_desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.zuyeog_love_gae_paragraph {
  font-size: var(--size-base);
  color: var(--color-gray4);
}

#zuyeog_love_result_section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
#zuyeog_love_result_section.zuyeog_love_visible {
  display: flex;
  opacity: 1;
}

@media screen and (max-width: 400px) {
  .zuyeog_love_card_title {
    font-size: var(--size-xl);
  }
  .zuyeog_love_card_desc {
    font-size: var(--size-sm);
  }
  .zuyeog_love_result_gae_selected_title_container {
    font-size: var(--size-sm);
  }
  #zuyeog_love_card_select_btn img {
    width: 12rem;
    height: 12rem;
  }
  .zuyeog_gae_result_img {
    width: 10rem;
    height: 1.6rem;
  }
}
/* 반응형 */
@media screen and (max-width: 320px) {
  .zuyeog_love_result_gae_section {
    flex-direction: column;
  }
}
