mvks999 reacted to
DragoslavP in 🏆EuroLeague Final Four - Lucky Draw 🏆
May 20
:root { --card: rgba(10, 20, 38, 0.75); --line: rgba(255,255,255,0.12); --text: #f5f7fb; --muted: #a7b4c9; --gold: #f7c948; --shadow: 0 20px 60px rgba(0, 0, 0, 0.28); }
.glass-card { border: 1px solid var(--line); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(225deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)), var(--card); box-shadow: var(--shadow); backdrop-filter: blur(14px); color: var(--text); transition: 0.25s ease; position: relative; }
.glass-card:hover { transform: translateY(-4px); }
.hero-title { font-size: 30px; font-weight: 800; text-align: center; margin-top: 10px; }
.hero-sub { text-align: center; color: var(--muted); margin-top: 6px; font-size: 15px; }
/* BADGE */
.badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(247,201,72,0.6); background: rgba(255,255,255,0.03); font-weight: 700; overflow: hidden; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(0,0,0,0.25); z-index: 10; }
.badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; }
@keyframes shineBadge { 0% { left:-60%; } 100% { left:120%; } }
/* 🏀 BOUNCE ANIMATION */
.bounce-ball {
font-size: 20px;
display: inline-block;
animation: bounce 1s infinite ease-in-out;
will-change: transform;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
/* 🔥 BET NOW BUTTON */
.bet-wrap {
text-align: center;
margin: 14px 0 10px;
}
.bet-btn {
display: inline-block;
padding: 16px 46px;
background: linear-gradient(135deg, #FFB800, #e6a500);
color: #071824;
font-weight: 800;
font-size: 17px;
border-radius: 14px;
text-decoration: none !important;
transition: 0.25s ease;
box-shadow: 0 10px 25px rgba(255,184,0,0.25);
}
.bet-btn:hover {
transform: translateY(-3px);
box-shadow: 0 14px 35px rgba(255,184,0,0.4);
}
/* HOW TO ENTER */
.challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(247,201,72,0.18); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; position: relative; overflow: hidden; }
.challenge-title { font-size: 18px; font-weight: 800; color: var(--gold); margin-bottom: 18px; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.feature { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px 14px 14px 44px; font-size: 14px; transition: 0.25s ease; position: relative; display: flex; align-items: center; text-align: left; }
.feature:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); }
.feature::before { content: attr(data-step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; }
/* REQUIREMENTS ITEM */
.req-item {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 12px;
margin-bottom: 10px;
font-size: 14px;
text-align: left;
transition: 0.25s ease;
}
.req-item:hover {
background: rgba(247,201,72,0.08);
transform: translateY(-4px);
}
/* BASE INFO BOX */
.info-box {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 14px;
padding: 16px;
text-align: center;
transition: none;
}
/* PRIZE BOX */
.prize-box:hover {
background: rgba(247,201,72,0.08);
transform: translateY(-3px);
}
/* PRIZE SHINE */
.prize-shiny {
font-size: 52px;
font-weight: 900;
background: linear-gradient(90deg,#f7c948,#fff4b0,#f7c948);
background-size: 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 3s linear infinite;
}
@keyframes shine {
0% { background-position: 200% center; }
100% { background-position: -200% center; }
}
/* GRID */
.info-grid {
display: grid;
grid-template-columns: repeat(2,1fr);
gap: 14px;
margin-top: 18px;
}
/* PRIZE LIST FIXED */
.prize-list { margin-top: 10px; font-size: 14px; }
.prize-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.prize-row span:first-child {
color: var(--text);
}
.prize-row span:last-child {
color: var(--gold);
font-weight: 700;
}
.prize-row:last-child { border:none; }
/* TERMS */
.dropdown-card {
background: rgba(255,255,255,0.04);
border-radius: 16px;
margin-top: 20px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.08);
}
.dropdown-trigger {
padding: 14px;
text-align: center;
cursor: pointer;
font-weight: 700;
color: var(--gold);
}
/* RULES */
.rules-list {
list-style: none;
padding: 0;
margin: 0;
counter-reset: step;
}
.rules-list li {
position: relative;
padding: 10px 10px 10px 40px;
margin-bottom: 8px;
text-align: left;
counter-increment: step;
transition: 0.2s;
}
.rules-list li:hover {
transform: translateX(3px);
}
.rules-list li::before {
content: counter(step);
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(247,201,72,0.15);
border: 1px solid rgba(247,201,72,0.6);
color: var(--gold);
font-size: 11px;
font-weight: 800;
display:flex;
align-items:center; justify-content:center;
transition: 0.25s;
}
.center { text-align:center; }
@media(max-width:900px){
.feature-grid, .info-grid { grid-template-columns:1fr; }
}
⚡ Limited-Time Event
🏆 EuroLeague Final Four - Lucky Draw 🏆
The Final Four is finally here!
Place a bet on any EuroLeague Final Four matches and share your Bet IDs below.
Bet Now
Competition ends: 25/05/2026 - 12:00pm GMT
How to Enter:
Place a bet on any EuroLeague Final Four match on Stake.com.
Submitted bets must be a minimum of 10x odds.
Copy your Bet ID(s) after placing your bet.
Reply to this thread with your Bet ID(s) to enter.
📋 Requirements:
🏀 Bets must be on EuroLeague Final Four games.
💵 Minimum bet amount: $5.00.
📈 Minimum 10x odds.
💬 Reply to this thread with your Bet ID(s).
🔒 Bronze VIP or above & KYC Level 2.
💡 Only one bet allowed; others will be removed.
🏆 Prize Pool
$2,000
TOTAL PRIZE POOL
10 users$200 Each
SelectionRandom Draw
Winners will be selected at random from all eligible entries that meet the requirements.
Terms & Conditions
Bronze VIP account or above on Stake.com is required.
KYC Level 2 verification is required for all participants.
Only one Stake account per user. Multi-accounting results in disqualification.
Accounts must have no restrictions or exclusions to receive prizes.
Stake employees are not eligible to participate.
Stake reserves the right to amend or cancel the competition at any time.
Prizes will be delivered within 72 hours of the competition ending.
Winners will have their username displayed with a prize claim link.