/* =========================================================
   ULSE SILVER — Premium Light Silver Style
=========================================================*/

.ulse-silver {
  font-family: "Noto Sans", Arial, sans-serif;
  max-width: 940px;
  margin: 55px auto;
  padding: 50px 45px;
  color: #2a2a2a;

  background:
    radial-gradient(circle at 20% 20%, #ffffff, #eaeaea 65%, #dcdcdc 100%),
    linear-gradient(135deg, rgba(255,255,255,0.6), rgba(220,220,220,0.5));

  border-radius: 22px;
  box-shadow:
     0 10px 30px rgba(0,0,0,0.12),
     inset 0 1px 3px rgba(255,255,255,0.9),
     inset 0 -3px 8px rgba(0,0,0,0.08);

  position: relative;
  overflow: hidden;
}

/* ---- Silver shine sweep ---- */
@keyframes ulseSilverSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(200%); }
}

.ulse-silver::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 60%; height: 100%;
  background: linear-gradient(
      105deg,
      transparent 0%,
      rgba(255,255,255,0.65) 50%,
      transparent 100%
  );
  animation: ulseSilverSweep 6s infinite linear;
  pointer-events: none;
}

/* ---- Headings ---- */
.ulse-silver h1,
.ulse-silver h2,
.ulse-silver h3 {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1c1c1c;
  margin-bottom: 25px;
}

/* ---- Paragraph blocks ---- */
.ulse-silver p {
  background: rgba(255,255,255,0.55);
  padding: 20px 24px;
  border-radius: 14px;
  margin: 18px 0;
  line-height: 1.85;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.9),
    inset 0 -2px 4px rgba(0,0,0,0.15);
}

/* ---- Hover micro-shift ---- */
.ulse-silver p:hover {
  transform: translateY(-2px);
  box-shadow:
      inset 0 1px 2px rgba(255,255,255,1),
      inset 0 -2px 4px rgba(0,0,0,0.18),
      0 0 14px rgba(255,255,255,0.45);
  transition: all .25s ease;
}

