/* === Safe Link Professional Styles (With Ads) === */
:root {
  --pill-grad: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  --white: #fff;
}

/* 1. Sticky Step Header */
#sl-sticky-header {
  position: fixed; top: 15px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 9999;
  font-weight: 700; font-size: 10px; color: #333;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid #ddd;
}

/* 2. Timer Pill Style */
.timer-pill-box {
  background: var(--pill-grad);
  color: #fff; padding: 12px 25px;
  border-radius: 50px;
  font-family: &#39;Poppins&#39;, sans-serif;
  font-weight: 600; font-size: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
  display: inline-block; 
  margin: 15px auto;
  min-width: 220px;
}

/* 3. Popup Overlay */
#sl-overlay-popup {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85); z-index: 10000;
  display: flex; justify-content: center; align-items: center;
  backdrop-filter: blur(5px);
}
.sl-popup-content {
  background: #fff; padding: 20px; border-radius: 15px;
  text-align: center; width: 90%; max-width: 380px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

/* 4. ADS PLACEHOLDER STYLE */
.ad-placeholder {
  background: #f1f2f6;
  border: 2px dashed #ccc;
  color: #777;
  padding: 15px;
  margin: 10px 0;
  font-size: 12px;
  font-weight: bold;
  border-radius: 8px;
}

/* 5. Buttons */
#safe-action-btn, .home-next-btn {
  background: var(--pill-grad);
  color: #fff; border: none; padding: 12px 30px;
  border-radius: 50px; font-weight: bold; font-size: 15px;
  cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: block; margin: 20px auto; width: 100%; max-width: 280px;
  text-transform: uppercase;
}
