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

.ppc-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.ppc-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 520px;
  padding: 32px 24px;
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  animation: slideUp 0.4s ease;
}

.ppc-title {
  color: var(--ppc-red);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ppc-list {
  list-style: none;
  text-align: left;
  margin: 0 0 20px 0;
  padding: 0;
}

.ppc-list li {
  font-size: 15px;
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #1f2937;
  display: flex;
  align-items: flex-start;
}

.ppc-list li::before {
  content: "✔";
  color: var(--ppc-green);
  margin-right: 6px;
  font-weight: 600;
}

.ppc-close {
  background: var(--ppc-red);
  color: #fff;
  border: none;
  font-size: 16px;
  line-height: 1.2;
  padding: 12px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(122,0,31,0.3);
  font-weight: 500;
  min-width: 180px;
}

.ppc-close:hover {
  background: var(--ppc-red-dark);
  box-shadow: 0 5px 15px 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: 24px 16px;
  }
  .ppc-title { font-size: 20px; }
  .ppc-close {
    width: 100%;
    padding: 14px;
    min-width: auto;
  }
}
