/* body {
  background: #f2f4f3;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
} */

.safaricom-card {
  background: #009e3a; /* Safaricom green */
  color: #fff;
  width: 250px;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.safaricom-card:hover {
background: #45A52A;
}
.safaricom-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  pointer-events: none;
}

.logo img {
  width: 120px;
  margin-bottom: 15px;
}

.card-value {
  font-weight: 700;
  margin-bottom: 5px;
}

.currency {
  display: block;
  font-size: 18px;
}

.amount {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.card-text {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  width: 80%;
  background: rgba(255,255,255,0.4);
  margin: 15px auto;
}

.scratch-area {
  background: #f4f4f4;
  color: #333;
  border-radius: 8px;
  padding: 10px;
  margin: 15px 0;
}

.scratch-box {
  background: repeating-linear-gradient(
    45deg,
    #c0c0c0,
    #c0c0c0 10px,
    #d9d9d9 10px,
    #d9d9d9 20px
  );
  height: 40px;
  border-radius: 6px;
  margin-top: 5px;
}

.instructions {
  font-size: 13px;
  color: #e0ffe0;
  margin-top: 10px;
}
