#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.strfury-popup {
  width: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top, rgb(30, 20, 102), rgba(48, 16, 32, 0.99));
  box-shadow: 0 20px 60px rgba(5, 5, 15, 0.94);
  animation: strfuryZoom .35s ease;
}

.strfury-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.3;
}

.strfury-close {
  position: absolute;
  right: 12px;
  top: 10px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.strfury-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
}

.strfury-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-family: Muli;
  color: rgba(186, 145, 227, 0.79);
}
  
.strfury-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: .3s;
  cursor: pointer;
}

.strfury-plan:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.2);
}

.strfury-plan.highlight {
  box-shadow: 0 0 20px rgb(18, 18, 41);
}

.strfury-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.strfury-primary {
  flex: 1;
  background: rgb(183, 47, 140);
  border: 1px solid rgb(38, 55, 93);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.strfury-secondary {
  flex: 1;
  background: rgb(12, 84, 204);
  border: 1px solid rgb(38, 55, 93);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes strfuryZoom {
  from {transform: scale(.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.strfury-primary,
.strfury-secondary {
  transition: all 0.3s ease;
}

 
.strfury-secondary:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13,110,253,0.4);
}
 
.strfury-primary:hover {
  background: linear-gradient(45deg, #ff4ecd, #ff0080);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px rgba(255,0,128,0.5);
}




 /* STRFURY popup logo - text  */
.strfury-logo-area{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}
 
.strfury-logo{
    width: 70px;  
    height: auto;  
	  transition: transform 0.3s ease;
}

.strfury-logo:hover {
    transform: scale(1.15);   
}

.strfury-logo-text {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(
    90deg,
    #f5d27a,
    #faa733,
    #fff1b0,
    #faa733
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldText 4s linear infinite;
}

@keyframes goldText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

