.cv-train-scratch-section {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #fff;
    color: #222;
  }
  
  .cv-train-container {
    text-align: center;
  }
  
  .cv-train-container h2 {
    font-weight: 700;
    line-height: 1.4;
  }
  
  .cv-train-container h2 span {
    color: #4a47ff;
  }
  
  .cv-train-container p {
    font-size: 16px;
    margin: 10px 0;
  }
  
  .cv-train-hint {
    margin-top: 20px;
    color: #666;
  }
  
  .cv-train-scratch-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 20px auto;
  }
  
  #cv-train-scratchCanvas {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
    cursor: grab;
    z-index: 2;
  }
  
  .cv-train-prize {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: #f1f9f1;
    color: #2e7d32;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    opacity: 0; /* Hidden by default */
    z-index: 1;
    transition: opacity 0.6s ease;
  }
  
  .cv-train-prize.cv-train-show {
    opacity: 1; /* Revealed once enough scratch is done */
  }
  
  .cv-train-prize:hover {
    opacity: 1; /* Show coupon when hovered */
  }
  
  .cv-train-prize h1 {
    font-size: 60px;
    margin: 0;
  }
  
  .cv-train-prize h1 span {
    font-size: 40px;
  }
  