@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --ppc-red: #7A001F;
  --ppc-red-dark: #8f0025;
  --ppc-green: #0f766e;
  --ppc-gray: #1f2937;
}

.ppc-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: fadeIn 0.3s ease;
}

.ppc-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 540px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  line-height: 1.7;
  animation: slideUp 0.4s ease;
}

.ppc-title {
  color: var(--ppc-red);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
}

.ppc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  color: var(--ppc-gray);
  font-size: 15.8px;
  font-weight: 500;
}

.ppc-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  margin-bottom: 6px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px #eee;
  text-align: justify;
}

.ppc-list li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--ppc-green);
  font-weight: 700;
  font-size: 17px;
}

.ppc-close {
  background: var(--ppc-red);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 12px rgba(122,0,31,0.3);
}

.ppc-close:hover {
  background: var(--ppc-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,0,31,0.4);
}

@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@media (max-width: 600px) {
  .ppc-content {
    max-width: 92%;
    padding: 28px 18px;
  }
  .ppc-title {
    font-size: 20px;
  }
  .ppc-list li {
    font-size: 15px;
    padding: 10px 10px 10px 32px;
  }
  .ppc-close {
    width: 100%;
    padding: 14px;
  }
}
