/* Promotional Overlay Styles */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.promo-overlay.show {
  display: flex;
}

.promo-frame {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: 3px solid #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.5s ease-out;
}

.promo-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.promo-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.promo-header {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.promo-text {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
}

.promo-cta {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.promo-cta:hover {
  background: #0056b3;
  color: white;
  text-decoration: none;
}

.promo-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.promo-cta-secondary {
  background: #28a745 !important;
  border: 2px solid #28a745;
  color: white !important;
}

.promo-cta-secondary:hover {
  background: #218838 !important;
  border-color: #218838;
  color: white !important;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .promo-frame {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .promo-header {
    font-size: 24px;
  }
  
  .promo-text {
    font-size: 14px;
  }
  
  .promo-buttons {
    gap: 12px;
  }
  
  .promo-cta {
    padding: 10px 25px;
    font-size: 14px;
  }
} 