@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700&display=swap');

#epc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 16px;
}
#epc-overlay.epc-visible {
  display: flex;
  opacity: 1;
}
#epc-popup {
  background: #fffaf0;
  border-radius: 18px;
  padding: 0 0 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
#epc-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
#epc-banner {
  background: #e0483e;
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 40px 14px 20px;
  border-bottom: 3px dashed #fffaf0;
  text-align: left;
}
#epc-step-form, #epc-step-success {
  padding: 24px 28px 0;
}
#epc-title {
  margin: 4px 0 8px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #e0483e;
  letter-spacing: 0.3px;
}
#epc-subtitle {
  margin: 0 0 20px;
  color: #3d3d3d;
  font-size: 14px;
}
#epc-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
#epc-form label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #2d4739;
  margin-top: 8px;
}
#epc-name, #epc-email {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  background: #fff;
}
#epc-submit, #epc-download {
  margin-top: 16px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #e0483e;
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
#epc-submit:hover, #epc-download:hover {
  background: #c73c33;
}
#epc-error {
  color: #c0392b;
  font-size: 13px;
  min-height: 16px;
  margin-top: 8px;
}
#epc-step-success h2 {
  font-family: 'Baloo 2', sans-serif;
  color: #2d4739;
  font-size: 24px;
  margin: 4px 0 8px;
}
#epc-step-success p {
  color: #3d3d3d;
  font-size: 14px;
  margin-bottom: 18px;
}
