/* FULL ORIGINAL CSS */
.wsp-risk-box {
  font-family: system-ui, -apple-system, sans-serif;
  padding: 30px 20px;
  background: #0a0a2a;
  max-width: 1200px;
  margin: 30px auto;
  position: relative;
  border-left: 5px solid #ff3d3d;
  border-right: 5px solid #ffd700;
}
.wsp-risk-box .title {
  color: #ffffff;
  font-weight: 800;
  font-size: 28px;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  background: #1a1a40;
  border-radius: 10px;
  position: relative;
}
.wsp-risk-box .risk-container {
  background: #1a1a40;
  padding: 25px;
  border-radius: 10px;
}
.wsp-risk-box ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  counter-reset: list-counter;
}
.wsp-risk-box li {
  background: #1e1e3c;
  padding: 20px 20px 20px 50px;
  border-radius: 8px;
  color: #e6e6ff;
  position: relative;
}
.wsp-risk-box li::before {
  counter-increment: list-counter;
  content: counter(list-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  width: 28px;
  height: 28px;
  border: 2px solid #ffd700;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b6b;
}
.warning-message {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 61, 61, 0.1);
}
.cta-button {
  display: block;
  width: 85%;
  margin: 25px auto;
  background: linear-gradient(90deg, #ff3d3d, #ff6b6b);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 18px 25px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #ffd700;
}
.subtext {
  text-align: center;
  color: #aaaaff;
  font-size: 14px;
}
