.et-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;       /* diameter of your circle */
 height: 25px;      /* same as width */
background: #0A2959;  /* fill color */
border: 2px solid #444;  /* optional border */
border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;        /* above wheel but below segments’ glow */
}
.et-rect-btn {
    animation: glowPulse 1.6s ease-in-out infinite;
    background-color: red;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 25px;
    padding: 20px 100px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 50px auto;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  
  }
  .et-rect-btn:hover {
    background-color: #cc0000;
  }
  .et-spin-container {
    font-family: 'Righteous', cursive;
    text-align: center;
    background: #EBF7FF;
    /*background: linear-gradient(135deg, #0156a3 0%, #01b9f1 100%);*/
    /*padding: 30px 10px;
    /*border-radius: 20px;*/
    padding-top: 145px;
   /* box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
  }

.et-wheel-wrapper {
position: relative ;
width: 500px;
height: 500px;
margin: 50px auto;
}
.et-wheel-wrapper svg {
z-index: 10; /* any number > the wheel’s z-index */
position: absolute; /* just to be explicit */
top: 0;
left: 0;
/* rotate the entire SVG overlay −90° so “right” moves to “top” */
transform: rotate(-90deg);
transform-origin: 50% 50%; /* center of the SVG */
}
  .et-wheel {
    width: 100%;
    height: 100%;
    z-index: 1;  
    border-radius: 50%;
    border: 10px solid #ffffff;
    position: relative;
    transform: rotate(0deg);
    transition: transform 4s ease-out;
    overflow: hidden;
    background: conic-gradient(
      #FDD446 0deg 90deg,
      #C9EBF8 90deg 180deg,
      #4AC6F1 180deg 270deg,
      #A2E1F5 270deg 360deg
    );
  }

  .et-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #444;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    background: transparent;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.5);
  }

  .et-segment.active {
    animation: glow 1s infinite alternate;
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.6);
    z-index: 5;
    border: 2px solid #fff;
  }

  .et-segment span {
    transform: rotate(-45deg) translateY(-40%);
    display: inline-block;
    width: 160px;
    font-size: 25px;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    font-family: 'Righteous', cursive;
    white-space: normal;

  }

  .et-center-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  }

  .et-result {
    margin-top: 20px;
    animation: fadeInPop 0.6s ease;
  }

  .et-result .barcode {
    margin-top: 10px;
  }

  @keyframes glow {
    from { text-shadow: 0 0 5px gold; }
    to { text-shadow: 0 0 20px orange; }
  }

  @keyframes spinPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 153, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
  }
  .et-winning-qr-styled {
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: inline-block;
    margin-top: 20px;
  }
  .et-winning-screen {
  font-family: 'Righteous', cursive;
  text-align: center;
  background: #EBF7FF;
  /*background: linear-gradient(135deg, #0156a3 0%, #01b9f1 100%);*/
  /*padding: 30px 10px;
  /*border-radius: 20px;*/
  padding-top: 145px;
  /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
  position: relative;
  overflow: hidden;
}

  .et-winning-screen::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) scale(0);
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    animation: revealCutout 0.6s ease forwards 0.5s;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }

  .et-winning-screen::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) scale(0);
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    animation: revealCutout 0.6s ease forwards 0.5s;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }
  @keyframes revealCutout { to { transform: translateY(-50%) scale(1); } }
@keyframes glowPulse {
  0%   { box-shadow: 0 0 0 rgba(0,168,243,0.2); }
  40%  { box-shadow: 0 0 12px 6px rgba(0,168,243,0.6); }
  100% { box-shadow: 0 0 0 rgba(0,168,243,0.2); }
}

.et-rect-btn:hover { background-color: #cc0000; }