🛑 VIP Bonus Alert! 🛑
🛑 CONGRATULATIONS! You’ve Won a VIP Bonus!
Tap ‘SPIN NOW’ to reveal your exclusive 1xBet Bonus!
/* RESET & GLOBAL STYLES */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background-color: #f0f0f0; /* Light background for speed */
color: #333;
display: flex;
justify-content: center;
align-items: flex-start; /* Align to top for better mobile view */
min-height: 100vh;
padding: 20px 10px;
}
.container {
width: 100%;
max-width: 400px; /* Mobile-first design */
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
text-align: center;
}
/* HEADLINE */
.headline {
color: #D90000; /* Red for attention/urgency */
font-size: 1.4em;
margin-bottom: 20px;
padding: 10px;
border: 2px dashed #D90000;
}
/* WHEEL STAGE */
.wheel-box {
position: relative;
width: 100%;
max-width: 300px;
height: 300px;
margin: 0 auto 20px;
}
.spinning-wheel {
width: 100%;
height: 100%;
/* Add animation class here (e.g., .spin-animation) when ready */
}
.pointer {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 20px solid #D90000; /* Red arrow pointing down */
z-index: 10;
}
#spin-btn {
background-color: #00AA00; /* Green for GO */
color: white;
border: none;
padding: 15px 30px;
font-size: 1.2em;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 5px 0 #008000;
margin-top: 15px;
transition: background-color 0.1s;
}
#spin-btn:active {
background-color: #008000;
box-shadow: none;
transform: translateY(5px);
}
/* CLAIM STAGE */
.win-text {
font-size: 1.5em;
color: #FFC300; /* Gold/Yellow for prize */
margin-bottom: 10px;
}
.bonus-claim {
color: #333;
font-size: 1.6em;
margin-bottom: 25px;
}
.claim-button {
display: block;
background-color: #FFC300; /* Bright yellow/gold CTA */
color: #333;
text-decoration: none;
padding: 18px 25px;
font-size: 1.4em;
font-weight: bold;
border-radius: 8px;
box-shadow: 0 4px 0 #D0A000;
transition: all 0.1s;
}
.claim-button:hover {
background-color: #D0A000;
}
.scarcity {
color: #D90000;
margin-top: 15px;
font-size: 1.1em;
font-weight: bold;
}
.small-print {
font-size: 0.8em;
color: #666;
margin-top: 10px;
}