/* Base Section Styles */
.mvp-scoping-section {
  width: 100%;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  background: #fff;
  padding: 30px;
}

#mvp-scoping-template {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.mvp-scoping-section h2 {
  color: #002f87;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mvp-scoping-section p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #002f87;
  text-align: center;
}

/* Button */
.mvp-download-btn {
  background-color: #002f87;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  transition: background-color 0.2s ease;
}

.mvp-download-btn:hover {
  background-color: #0140b8;
}

/* Modal Overlay */
.mvp-scoping-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.5);
}

/* Modal Content */
.mvp-scoping-modal-content {
  background: #fff;
  margin: auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 40%;
  position: relative;
  text-align: center;
  animation: fadeInScale 0.3s ease forwards;
}

.mvp-scoping-modal-content h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #002f87;
  border-bottom: 2px solid #002f87;
  padding-bottom: 8px;
  text-align: center;
}

/* Links */
.mvp-link {
  display: block;
  margin: 10px 0;
  color: #002f87;
  text-decoration: underline;
  font-size: 1rem;
}

/* Close Button */
.close {
  color: #aaa;
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #000;
}

/* Animation */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  #mvp-scoping-template {
    width: 90%;
    padding: 0 15px;
  }

  .mvp-scoping-modal-content {
    max-width: 90%;
    padding: 20px 20px;
  }

  .mvp-scoping-modal-content h3 {
    font-size: 1.5rem;
  }

  .mvp-link {
    font-size: 0.95rem;
  }

  .close {
    top: 10px;
    right: 14px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .mvp-scoping-section {
    padding: 20px;
  }

  .mvp-scoping-section h2 {
    font-size: 1.25rem;
  }

  .mvp-scoping-section p {
    font-size: 15px;
  }

  .mvp-download-btn {
    font-size: 15px;
    padding: 10px;
  }

  .mvp-scoping-modal-content h3 {
    font-size: 1.3rem;
  }

  .mvp-link {
    font-size: 0.9rem;
  }
}
