/*
Description:
    Contains all the styles for the winning wheel page.
    
Verison History:
    2012-01-28, Douglas McKechie
    - Created based off earlier version.
    
    2015-09-26, Douglas McKechie
    - Minor updates for the 2.0 winwheel example.
*/

body
{
    font-family: arial;


      background-repeat: no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}

audio {
  display: none;
}

.btn-grad2 {
  background: #fff900; /* tetap kuning */
  color: #000;
  font-weight: bold;
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  display: inline-block;
  border: none;
  cursor: pointer;

  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ✨ hover: naik + bounce */
.btn-grad2:hover {
  animation: bounce 0.5s;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* 🎯 efek bounce */
@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-4px); }
  100% { transform: translateY(-5px); }
}

/* klik biar terasa ditekan */
.btn-grad2:active {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-grad {background-image: linear-gradient(to right, #ff2828 50%, #00bbff 50%);}
.btn-grad {
    color: black;font-weight: bold;
            margin: 10px;
            padding: 15px 45px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
                      
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
          }

/*.btn-grad:hover {*/
            background-position: right center; /* change the direction of the change here */
/*            color: #fff;*/
/*            text-decoration: none;*/
/*          }*/

.kodeTicket {
    font-size: 25px;
    color:#ffff ;
    font-family: 'Lobster', cursive;
}
/* Sets the background image for the wheel */
td.the_wheel
{
    
    background-position: center;
    background-repeat: no-repeat;
  background-size: 500px 550px;
}

/* Do some css reset on selected elements */
.container2 {
  position: relative;
}
#canvas {

}
.overlay {
  position: absolute;
  top: 40%;
  left:39%;
  
  opacity: 0.8;
}
h1, p
{
    margin: 0;
}

div.power_controls
{
    margin-right:70px;
}

div.html5_logo
{
    margin-left:70px;
}

/* Styles for the power selection controls */
table.power
{
    background-color: #cccccc;
    cursor: pointer;
    border:1px solid #333333;
}

table.power th
{
    background-color: white;
    cursor: default;
}

td.pw1
{
    background-color: #6fe8f0;
}

td.pw2
{
    background-color: #86ef6f;
}

td.pw3
{
    background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable
{
    cursor: pointer;
}

/* Other misc styles */
.margin_bottom
{
    margin-bottom: 5px;
}