/* ========================================
   Modal Styles for p-modal--lp
   ======================================== */

/* Modal Container */
.p-modal--lp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.p-modal--lp.is-active {
  display: flex;
}

/* Modal Background (Overlay) */
.p-modal--lp .c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

/* Modal Content Wrapper */
.p-modal--lp .c-modal--new-normal__wrap {
  position: relative;
  z-index: 10000;
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-height: 80vh;
  max-width: 820px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Close Button */
.p-modal--lp .c-modal__close {
  position: absolute;
  top: -45px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.p-modal--lp .c-modal__close img {
  width: 25px;
  height: 25px;
}

.p-modal--lp .c-modal__close:hover {
  opacity: 0.7;
}

/* Modal Box */
.p-modal--lp .c-modal--new-normal__box {
  padding: 0px 0 24px 0;
}

.p-modal--lp .c-modal--new-normal__inner {
  width: 100%;
}

/* App Box */
.p-modal--lp .c-app-box {
  text-align: center;
}

.p-modal--lp .c-app-box__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
  background-color: #F2F2F2;
  padding: 15px;
  border-radius: 8px 8px 0 0;
}

.p-modal--lp .c-app-box__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-modal--lp .c-app-box__inner--text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.p-modal--lp .c-app-box__inner--img {
  width: 80px;
  height: 80px;
}

/* Text and Links */
.p-modal--lp .c-text--note {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
}

.p-modal--lp .c-link {
  color: #1a73e8;
  text-decoration: none;
  cursor: pointer;
}

.p-modal--lp .c-link:hover {
  text-decoration: underline;
}
.p-modal--lp .c-app-box__inner--text{
    font-size: 16px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
  .p-modal--lp .c-modal--new-normal__wrap {
    max-width: 95%;
  }

  .p-modal--lp .c-modal--new-normal__box {
    padding: 0 0 20px 0;
  }

  .p-modal--lp .c-app-box__title {
    font-size: 16px;
  }

  .p-modal--lp .c-app-box__inner--text {
    font-size: 13px;
  }
}
