*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 100vh;
	color: white;
    position: relative;
  z-index: 1;
  background: none; /* Elimina fondo que tapa el video */
}


.container{
	height: 350px;
	width: 350px;
	background: #3e00f8;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 10px gray;
	transition: 3s all;
}
.container div{
	height: 50%;
	width: 200px;
	clip-path: polygon(100% 0,50% 100%, 0 0);
	transform: translateX(-50%);
	transform-origin: bottom;
	position: absolute;
	left: 21%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-family: monospace;
	font-weight: 1000;
	color:#008276; 
	 writing-mode: vertical-rl;
}
.container .one{
	background: #009dff;
    color: white;
	left: 50%;
}
.container .two{
	background: #0091ff;
	transform: rotate(60deg);
    color: white;
}
.container .three{
	background: #8000ff;
	transform: rotate(120deg);
    color: white;
}
.container .four{
	background: #00d9ff;
	transform: rotate(180deg);
    color: white;
}
.container .five{
	background: #0062ff;
	transform: rotate(240deg);
    color: white;
}
.container .six{
	background: #022976;
	transform: rotate(300deg);
    color: white;
}
.mid{
	height: 25px;
	width: 25px;
	border-radius: 50%;
	position: absolute;
	background: #008276;
}
#spin{
	height: 60px;
	width: 200px;
	background: #0022ff;
	position: absolute;
	margin-top: 470px;
	font-size: 30px;
	color: white;
	font-weight: 1000;
	letter-spacing: 4px;
	border: 1px solid white;
	cursor: pointer;
	box-shadow: 0 5px 10px gray;
	transition: 0.2s all;
    border-radius: 10px;
}

#spini{
	height: 60px;
	width: 200px;
	background: #ff3c00;
	position: absolute;
	margin-top: 620px;
	font-size: 30px;
	color: white;
	font-weight: 1000;
	letter-spacing: 4px;
	border: 1px solid white;
	cursor: pointer;
	box-shadow: 0 5px 10px gray;
	transition: 0.2s all;
    border-radius: 10px;
} 

#spin:hover{
	box-shadow: none;
    background-color: #eeff00;
    color: black;
}
.stoper{
	height: 50px;
	width: 40px;
	background: #eeff00;
	position: absolute;
	clip-path: polygon(100% 0,50% 100%, 0 0);
	margin-top: -350px;
}

#mensaje-premio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  color: #003a6f;
  padding: 20px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 1; /* Cambia si quieres más brillo o menos */
}

#spin[disabled] {
  font-size: 16px;
  letter-spacing: normal;
  background: #ccc;
  color: #333;
  cursor: not-allowed;
}
