banoon reacted to
Jake7589 in 💰[$5,000 USD] Reel Bounty: Puffer Stacks 3
June 10
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');
:root {
--primary: #071824;
--gold: #FFB800;
--silver: #c0c8d4;
--bronze: #cd7f32;
--blue: #0079ff;
--surface: #0a2236;
--surface2: #0d2a40;
--text: #e0eef8;
--muted: #7fa8c4;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
background: var(--primary);
color: var(--text);
font-family: 'Inter', sans-serif;
min-height: 100vh;
overflow-x: hidden;
}
.container { max-width:740px; margin:0 auto; padding:24px 20px 60px; position:relative; z-index:1; }
.fade-up { opacity:0; transform:translateY(28px); animation:fadeUp .6s ease forwards; }
@keyframes fadeUp { to { opacity:1; transform:none; } }
.header {
text-align:center;
padding:44px 28px 36px;
background: linear-gradient(160deg, #0d2a40 0%, #071824 100%);
border-radius:20px;
border:1px solid #ffffff12;
margin-bottom:20px;
position:relative;
overflow:hidden;
}
.header::before {
content:'';
position:absolute;
top:-60px; left:50%; transform:translateX(-50%);
width:340px; height:340px;
background: radial-gradient(circle, #FFB80018 0%, transparent 70%);
animation: pulse-glow 4s ease-in-out infinite;
pointer-events:none;
}
@keyframes pulse-glow {
0%,100% { opacity:.6; transform:translateX(-50%) scale(1); }
50% { opacity:1; transform:translateX(-50%) scale(1.15); }
}
.hero-img-wrap {
margin:0 0 24px;
border-radius:16px;
overflow:hidden;
border:1px solid #FFB80033;
box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-img-wrap img { width:100%; display:block; }
.eyebrow {
display:inline-block; padding:7px 14px; border-radius:999px;
border:1px solid rgba(255,184,0,.22); background:rgba(255,184,0,.08);
color:var(--gold); font-size:11px; font-weight:800;
letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px;
}
.header h1 {
font-size:34px; font-weight:900;
background: linear-gradient(90deg, #FFB800, #ffda6e, #FFB800);
background-size:200%;
-webkit-background-clip:text; -webkit-text-fill-color:transparent;
animation: shimmer 3s linear infinite; margin-bottom:6px;
}
@keyframes shimmer { to { background-position:200% center; } }
.ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:14px; }
.ends-label strong { color:#fff; }
.countdown-wrapper { margin:10px 0 22px; }
.countdown-wrapper iframe { border-radius:8px; }
.header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 14px; line-height:1.7; }
/* ── CTA BUTTON — inline, not full width ── */
.cta-section { margin-top:16px; }
.cta-single {
display:inline-flex; align-items:center;
gap:10px; padding:14px 28px;
background: linear-gradient(135deg, #FFB800, #e6a500);
color:#071824; font-weight:900;
text-decoration:none !important;
border-radius:12px;
transition:transform .2s, box-shadow .2s;
position:relative; overflow:hidden;
box-shadow:0 4px 18px #FFB80044;
font-size:15px; letter-spacing:.3px;
}
.cta-single::after {
content:''; position:absolute; inset:0;
background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.25) 50%,transparent 70%);
transform:translateX(-100%); transition:transform .5s;
}
.cta-single:hover { transform:translateY(-3px); box-shadow:0 8px 28px #FFB80066; text-decoration:none !important; }
.cta-single:hover::after { transform:translateX(100%); }
.cta-single:active { transform:scale(.98); }
.cta-icon { font-size:18px; line-height:1; }
.cta-arrow { font-size:15px; transition:transform .2s; }
.cta-single:hover .cta-arrow { transform:translateX(4px); }
/* ── PRIZE HERO ── */
.prize-hero {
background: var(--surface); border:1px solid #FFB80044;
border-radius:16px; padding:28px 18px; text-align:center;
position:relative; overflow:hidden; margin-bottom:16px;
transition:transform .3s, border-color .3s, box-shadow .3s;
}
.prize-hero:hover { transform:translateY(-4px); border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; }
.prize-hero::before {
content:''; position:absolute; inset:0;
background:radial-gradient(ellipse at 50% 0%, #FFB80018 0%, transparent 65%);
pointer-events:none;
}
.prize-hero .badge { position:absolute; top:14px; right:18px; font-size:26px; animation:float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.prize-hero .prize-amount { font-size:52px; font-weight:900; color:#FFB800; position:relative; margin-bottom:8px; }
.prize-hero .prize-label { font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; position:relative; }
.prize-hero .prize-sub { font-size:13px; color:#b0cee4; margin-top:8px; position:relative; }
.pill {
background:#0079ff12; border:1px solid #0079ff33;
border-radius:40px; padding:10px 20px;
text-align:center; font-size:13px; font-weight:600; color:#4da6ff;
margin-bottom:18px; transition:background .3s, border-color .3s;
}
.pill:hover { background:#0079ff22; border-color:#0079ff66; }
.section {
background: var(--surface); border-radius:16px; padding:24px;
margin-bottom:16px; border:1px solid #ffffff0d;
transition:border-color .3s, box-shadow .3s;
}
.section:hover { border-color:#0079ff33; box-shadow:0 4px 24px #0079ff0d; }
.section-title {
font-size:12px; font-weight:700; color:var(--gold);
text-transform:uppercase; letter-spacing:1.4px;
margin-bottom:18px; display:flex; align-items:center; gap:8px;
}
.section-title span { font-size:16px; }
/* ── LIVE BANNER ── */
.live-banner {
display:flex; align-items:center; justify-content:center; gap:10px;
background:linear-gradient(135deg,#00c85318,#00c85306);
border:1px solid #00c85344; border-radius:12px;
padding:12px 18px; margin-bottom:18px;
font-size:13px; font-weight:700; color:#5fe08f; letter-spacing:.4px;
}
.live-dot {
width:9px; height:9px; border-radius:50%; background:#00c853;
box-shadow:0 0 0 0 #00c85399; animation:live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
0% { box-shadow:0 0 0 0 #00c85399; }
70% { box-shadow:0 0 0 8px #00c85300; }
100% { box-shadow:0 0 0 0 #00c85300; }
}
/* ── LEADERBOARD ── */
.leaderboard { display:flex; flex-direction:column; gap:10px; }
.lb-row {
display:flex; align-items:center; gap:14px;
padding:16px 18px; background:var(--primary);
border:1px solid #ffffff0a; border-radius:12px;
transition:background .25s, border-color .25s, transform .25s;
position:relative; overflow:hidden;
}
.lb-row:hover { background:#0a2236; transform:translateX(4px); }
.lb-row::before {
content:''; position:absolute; left:0; top:0; bottom:0; width:4px;
background:var(--tier-color, #ffffff20); transition:width .25s;
}
.lb-row:hover::before { width:6px; }
.lb-row.tier-1 { --tier-color:#FFB800; border-color:#FFB80044; }
.lb-row.tier-1:hover { border-color:#FFB80088; box-shadow:0 4px 20px #FFB80022; }
.lb-row.tier-2 { --tier-color:#c0c8d4; border-color:#c0c8d433; }
.lb-row.tier-2:hover { border-color:#c0c8d488; }
.lb-row.tier-3 { --tier-color:#cd7f32; border-color:#cd7f3233; }
.lb-row.tier-3:hover { border-color:#cd7f3288; }
.lb-row.tier-4 { --tier-color:#0079ff; border-color:#0079ff22; }
.lb-row.tier-5 { --tier-color:#4a6a85; border-color:#ffffff10; }
.lb-rank {
min-width:48px; height:48px; display:flex; align-items:center; justify-content:center;
font-weight:900; font-size:16px; border-radius:10px;
background:#0a2236; color:var(--tier-color, #fff);
border:1px solid var(--tier-color, #ffffff20); flex-shrink:0;
}
.lb-row.tier-1 .lb-rank { background:linear-gradient(135deg,#FFB80022,#FFB80008); font-size:22px; }
.lb-row.tier-2 .lb-rank { background:linear-gradient(135deg,#c0c8d422,#c0c8d408); font-size:20px; }
.lb-row.tier-3 .lb-rank { background:linear-gradient(135deg,#cd7f3222,#cd7f3208); font-size:20px; }
.lb-info { flex:1; }
.lb-place { font-size:14px; font-weight:800; color:#fff; }
.lb-place .tier-tag {
display:inline-block; margin-left:6px; padding:2px 8px;
font-size:10px; font-weight:700; color:var(--tier-color, #fff);
border-radius:999px; letter-spacing:.5px; text-transform:uppercase;
vertical-align:middle;
}
.lb-sub { font-size:12px; color:var(--muted); margin-top:2px; }
.lb-prize { font-size:18px; font-weight:900; color:var(--tier-color, #FFB800); text-align:right; white-space:nowrap; }
.lb-row.tier-4 .lb-prize, .lb-row.tier-5 .lb-prize { font-size:16px; }
/* ── STEPS ── */
.steps { display:flex; flex-direction:column; gap:14px; }
.step { display:flex; gap:14px; align-items:flex-start; }
.step-num {
min-width:34px; height:34px; background:#0079ff;
border-radius:50%; display:flex; align-items:center; justify-content:center;
font-weight:800; font-size:14px; color:#fff; flex-shrink:0;
transition:transform .25s, box-shadow .25s;
}
.step:hover .step-num { transform:scale(1.15); box-shadow:0 0 0 6px #0079ff22; }
.step-text { font-size:15px; color:#b0cee4; padding-top:6px; }
.step-text strong { color:#fff; }
/* ── REQUIREMENTS ── */
.req-list { display:flex; flex-direction:column; gap:10px; }
.req-item {
display:flex; align-items:center; gap:14px;
background:var(--primary); border-radius:12px;
padding:13px 16px; border:1px solid #ffffff0a;
transition:background .25s, border-color .25s, transform .25s; cursor:default;
}
.req-item:hover { background:#0a2236; border-color:#0079ff44; transform:translateX(6px); }
.req-icon { font-size:20px; flex-shrink:0; }
.req-text { font-size:14px; color:#b0cee4; }
.req-text strong { color:#FFB800; }
/* ── PRIZE POOL ── */
.pool-total {
text-align:center; padding:22px;
background:linear-gradient(135deg,#FFB80012,#FFB80005);
border:1px solid #FFB80044; border-radius:14px; margin-bottom:16px;
transition:box-shadow .3s;
}
.pool-total:hover { box-shadow:0 0 40px #FFB80020; }
.pool-total .amount { font-size:52px; font-weight:900; color:#FFB800; animation: count-pulse 2.5s ease-in-out infinite; }
@keyframes count-pulse { 0%,100%{text-shadow:0 0 0 #FFB800} 50%{text-shadow:0 0 24px #FFB80066} }
.pool-total .label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; }
/* ── NOTICE ── */
.notice {
background:#ff6b0010; border:1px solid #ff6b0040;
border-radius:14px; padding:16px; margin-bottom:16px;
display:flex; gap:14px; align-items:flex-start; transition:border-color .3s;
}
.notice:hover { border-color:#ff6b0088; }
.n-icon { font-size:22px; flex-shrink:0; }
.n-text { font-size:13px; color:#f0c8a0; line-height:1.7; }
.n-text strong { color:#fff; }
/* ── STAKE BADGE ── */
.stake-badge {
text-align:center; padding:14px;
background:linear-gradient(135deg,#0079ff18,#0079ff08);
border:1px solid #0079ff44; border-radius:12px; color:#4da6ff;
font-weight:700; font-size:14px; margin-bottom:16px; letter-spacing:.5px;
position:relative; overflow:hidden; transition:box-shadow .3s;
}
.stake-badge:hover { box-shadow:0 0 32px #0079ff25; }
.stake-badge::after {
content:''; position:absolute; top:0; left:-100%; width:60%; height:100%;
background:linear-gradient(90deg,transparent,rgba(0,121,255,.12),transparent);
animation:sweep 3s linear infinite;
}
@keyframes sweep { to { left:160%; } }
/* ── TERMS ── */
details { background:var(--primary); border:1px solid #ffffff0d; border-radius:14px; overflow:hidden; transition:border-color .3s; }
details:hover { border-color:#0079ff33; }
summary {
padding:16px 20px; cursor:pointer; font-weight:700; color:var(--muted);
font-size:14px; list-style:none; display:flex; justify-content:space-between;
align-items:center; user-select:none; transition:color .2s;
}
summary:hover { color:#fff; }
summary::after { content:'▼'; font-size:10px; color:var(--blue); }
details[open] summary::after { content:'▲'; }
.terms-body { padding:0 20px 20px; font-size:13px; color:#6a90a8; line-height:1.9; }
.terms-body h2 { font-size:12px; color:#FFB800; text-transform:uppercase; letter-spacing:.8px; margin:18px 0 8px; }
.terms-body ul, .terms-body ol { padding-left:20px; }
.terms-body li { margin-bottom:5px; }
.terms-body a { color:var(--blue); }
.d1{animation-delay:.08s} .d2{animation-delay:.16s} .d3{animation-delay:.24s}
.d4{animation-delay:.32s} .d5{animation-delay:.40s} .d6{animation-delay:.48s}
.d7{animation-delay:.56s} .d8{animation-delay:.64s} .d9{animation-delay:.72s}
@media(max-width:480px){
.header h1 { font-size:26px; }
.pool-total .amount { font-size:38px; }
.prize-hero .prize-amount { font-size:42px; }
.lb-row { padding:12px 14px; gap:10px; }
.lb-rank { min-width:40px; height:40px; font-size:14px; }
.lb-prize { font-size:16px; }
}
Leaderboard Competition
Reel Bounty: Puffer Stacks 3
Competition ends: 12/6/2026 @ 1:00 AM GMT
Hit the highest multiplier on Puffer Stacks 3 to climb the leaderboard and win a share of $5,000! The single biggest multiplier takes the grand prize.
One game. Your top multiplier. Top 10 win.
🐡 Play Puffer Stacks 3 →
🏆
$5,000
Total Prize Pool
Shared across the Top 10 multipliers
💡 Highest single multiplier on Puffer Stacks 3 wins the grand prize
🏅 Leaderboard & Tiered Prizes
LEADERBOARD · UPDATES EVERY 2 HOURS
🥇
1st Place Grand Prize
Highest multiplier
$2,000
🥈
2nd Place Runner-up
Second highest multiplier
$1,000
🥉
3rd Place Bronze
Third highest multiplier
$750
4
4th Place
Fourth highest multiplier
$500
5
5th Place
Fifth highest multiplier
$250
6–10
6th – 10th Place Top 10
5 winners
$100 each
📋 How To Enter
1
Play Puffer Stacks 3 on Stake.com
2
Land the highest multiplier you can with at least a $0.20 USD bet
3
Copy your Bet ID from your best winning spin
4
Reply to this thread with your Bet ID to be placed on the leaderboard
✅ Requirements
🐡
Bets must be from Puffer Stacks 3
💵
Minimum bet amount: $0.20 USD
📈
Ranked by your highest multiplier
💬
Reply to this thread with your Bet ID
🔒
Must be a Stake.com account — Bronze VIP or above
💰 Prize Pool Breakdown
$5,000
Total Prize Pool · 10 Winners
🥇 1st Place
$2,000
🥈 2nd Place
$1,000
🥉 3rd Place
$750
4th Place
$500
5th Place
$250
6th – 10th · 5 winners
$100 each
⚠️
Don't miss out! The leaderboard below this post updates every 2 hours — keep climbing until the competition closes. You must claim your prize within 3 months — users will not be credited after this period expires.
‼️ Stake.com users only ‼️
📄 Full Terms & Conditions — click to expand
This competition is published by Stake, which operates stake.com, and is subject to the Stake Terms and Conditions and Community Terms of Use.
In the event of conflict, the following order of precedence applies:
Terms and Conditions
These Rules
Stake Community Terms of Use
Leaderboard & Ranking
Entrants are ranked by the highest qualifying multiplier achieved on Puffer Stacks 3.
The leaderboard beneath this post will be updated every 2 hours until the competition closes.
Only bets placed during the competition window count toward the leaderboard.
In the event of a tied multiplier, the earliest submission timestamp takes the higher rank.
Prizes & Delivery
Winners' usernames will be displayed on the thread alongside a prize claim link.
Prizes will be delivered within 14 days of the competition ending.
Prizes are awarded strictly based on final leaderboard standing.
Eligibility
Bronze VIP account or above on Stake
KYC Level 2 verification required
Account must have no restrictions or exclusions
Must not be a Stake employee
Must maintain only one Stake account
Must not be in a Prohibited Jurisdiction
Stake's Reserved Rights
To amend the Rules at any time
To cancel the Competition at any time
To verify the nominated account for prize delivery