-
Posts
37 -
Joined
-
Last visited
Reputation Activity
-
hrs_25 reacted to Jake7589 in 💰[$3,000 USD] Crystal Cricket Ball 🔮
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #071824; --gold: #FFB800; --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; animation-delay:.05s; } .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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } .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 24px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:17px; font-weight:800; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 0 0 0 #FFB80055; position:relative; overflow:hidden; } .play-btn::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 ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } .prize-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .prize-card { background: var(--surface); border-radius:16px; padding:28px 18px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, border-color .3s, box-shadow .3s; cursor:default; } .prize-card:hover { transform:translateY(-6px) scale(1.02); } .prize-card.gold { border-color:#FFB80044; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; } .prize-card.silver:hover { border-color:#0079ffaa; box-shadow:0 12px 40px #0079ff25; } .prize-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, var(--glow) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card.gold { --glow:#FFB80018; } .prize-card.silver{ --glow:#0079ff14; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:12px; right:14px; font-size:22px; animation:float 3s ease-in-out infinite; } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.silver .prize-amount { color:#0079ff; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#6a90a8; margin-top:4px; } .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; } .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; } /* ── REPLY BOX ── */ .reply-box { margin-top:20px; padding:18px; border-radius:16px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); text-align:center; } .reply-label { display:block; margin-bottom:10px; color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; } .reply-value-row { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; } .reply-value { display:inline-block; padding:12px 18px; border-radius:12px; background:rgba(7,24,36,.65); border:1px solid rgba(255,255,255,.08); color:var(--text); font-size:18px; font-weight:900; font-family:monospace; } .reply-value span { color:var(--gold); } .copy-btn { background:transparent; border:1px solid #0079ff44; color:#4da6ff; font-size:13px; font-weight:700; padding:10px 18px; border-radius:10px; cursor:pointer; transition:all .2s; white-space:nowrap; } .copy-btn:hover { background:#0079ff22; border-color:#0079ff88; } .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; } .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; } .dist-list { display:flex; flex-direction:column; gap:8px; } .dist-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--primary); border-radius:10px; border:1px solid #ffffff0a; font-size:14px; transition:background .2s, border-color .2s; } .dist-item:hover { background:#0a2236; border-color:#FFB80033; } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#FFB800; font-weight:700; } .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 { 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%; } } 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} @media(max-width:480px){ .prize-row{grid-template-columns:1fr;} .header h1{font-size:26px;} .pool-total .amount{font-size:38px;} } Crystal Cricket Ball
Competition ends: 31/5/2026 @ 1:00 aM GMT
The IPL is heating up, as each team looks to take the prize home 🏆
We’re giving away $3,000 to 30 lucky winners.
Place qualifying bets on any IPL outright market, then reply in this thread with your Bet ID to enter.
🏏 Bet Now 🏆 $3,000 PRIZE POOL 🥈 $100 Each × 30 Winners 💡 Bets must be outright on any IPL match 📋 How To Enter 1 Place a qualifying outright on any IPL game market on Stake.com 2 Copy your Bet ID after placing your bet 3 Reply to this thread with your Bet ID to enter. ✅ Requirements ⚽️ Bets must be outright on any IPL match 💵 minimum bet amount: $5.00 USD or currency equivalent 💬 Reply to this thread with your Bet ID 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $3,000 Total Prize Pool 🥈 30 × Winners$100 each 👥 Total Winners30 People 📅 Duration16 Days ⚠️ Don't miss out! Stay tuned for winner announcements. 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 Prizes & Delivery
Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 14 days of competition ending. Winners selected at random from all eligible entries. One entry per user — multiple entries result in only the first being valid. 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 -
hrs_25 reacted to Jake7589 in 💰[$1,000] Eddie's missing! 😱
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #0d1a0a; --gold: #e8a020; --green: #4a9e3f; --green-soft: rgba(74,158,63,0.15); --surface: #121f0e; --surface2: #172812; --text: #e8f0e0; --muted: #8aaa78; } * { margin:0; padding:0; box-sizing:border-box; } body { background: linear-gradient(180deg, #0a1508 0%, #0d1a0a 50%, #0a1508 100%); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; overflow-x: hidden; } /* ── JUNGLE LEAVES ── */ .leaves { position:fixed; inset:0; pointer-events:none; z-index:0; overflow:hidden; } .leaf { position:absolute; top:-30px; font-size:1.4em; opacity:0; animation: leaffall linear infinite; } @keyframes leaffall { 0% { transform:translateY(0) rotate(0deg) translateX(0); opacity:.6; } 50% { transform:translateY(50vh) rotate(180deg) translateX(20px); opacity:.4; } 100% { transform:translateY(110vh) rotate(360deg) translateX(-10px); opacity:0; } } .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 ── */ .header { text-align:center; padding:0 0 36px; background: linear-gradient(160deg, #1a2e0f 0%, #0d1a0a 100%); border-radius:20px; border:1px solid rgba(74,158,63,0.3); margin-bottom:20px; position:relative; overflow:hidden; box-shadow: 0 0 60px rgba(74,158,63,0.08); } .header::before { content:''; position:absolute; top:-60px; left:50%; transform:translateX(-50%); width:400px; height:400px; background: radial-gradient(circle, rgba(74,158,63,0.12) 0%, transparent 70%); animation: pulse-glow 4s ease-in-out infinite; pointer-events:none; } @keyframes pulse-glow { 0%,100% { opacity:.5; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.15); } } /* jungle vine decorations */ .header::after { content:'🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿'; position:absolute; top:0; left:0; right:0; font-size:18px; letter-spacing:2px; line-height:1; opacity:.35; pointer-events:none; overflow:hidden; white-space:nowrap; } .hero-img-wrap { border-radius:20px 20px 0 0; overflow:hidden; border-bottom:2px solid rgba(74,158,63,0.3); } .hero-img-wrap img { width:100%; display:block; } .header-body { padding:28px 28px 0; } .eyebrow { display:inline-block; padding:7px 14px; border-radius:999px; border:1px solid rgba(74,158,63,0.4); background:rgba(74,158,63,0.1); color:#7dcc6a; font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; } .header h1 { font-size:36px; font-weight:900; line-height:1.1; background: linear-gradient(90deg, #e8a020, #f5c842, #e8a020); 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:#c0d8a8; max-width:480px; margin:0 auto 14px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #4a9e3f, #2d7a24); color:#e8f0e0; font-size:17px; font-weight:800; text-decoration:none !important; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 4px 20px rgba(74,158,63,0.4); position:relative; overflow:hidden; margin-top:8px; } .play-btn::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.2) 50%,transparent 70%); transform:translateX(-100%); transition:transform .5s ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px rgba(74,158,63,0.55); text-decoration:none !important; } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } /* ── PRIZE CARDS ── */ .prize-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .prize-card { background: var(--surface); border-radius:16px; padding:28px 18px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, border-color .3s, box-shadow .3s; cursor:default; } .prize-card:hover { transform:translateY(-6px) scale(1.02); } .prize-card.gold { border-color:rgba(232,160,32,0.4); --glow:rgba(232,160,32,0.1); } .prize-card.gold:hover { border-color:rgba(232,160,32,0.8); box-shadow:0 12px 40px rgba(232,160,32,0.2); } .prize-card.jungle { border-color:rgba(74,158,63,0.3); --glow:rgba(74,158,63,0.08); } .prize-card.jungle:hover { border-color:rgba(74,158,63,0.7); box-shadow:0 12px 40px rgba(74,158,63,0.15); } .prize-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, var(--glow,transparent) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:12px; right:14px; font-size:22px; animation:float 3s ease-in-out infinite; } @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#e8a020; } .prize-card.jungle .prize-amount { color:#7dcc6a; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#5a7a4a; margin-top:4px; } /* ── PILL ── */ .pill { background:rgba(74,158,63,0.1); border:1px solid rgba(74,158,63,0.3); border-radius:40px; padding:10px 20px; text-align:center; font-size:13px; font-weight:600; color:#7dcc6a; margin-bottom:18px; transition:background .3s, border-color .3s; } .pill:hover { background:rgba(74,158,63,0.18); border-color:rgba(74,158,63,0.55); } /* ── SECTIONS ── */ .section { background: var(--surface); border-radius:16px; padding:24px; margin-bottom:16px; border:1px solid rgba(255,255,255,0.06); transition:border-color .3s, box-shadow .3s; } .section:hover { border-color:rgba(74,158,63,0.25); box-shadow:0 4px 24px rgba(74,158,63,0.06); } .section-title { font-size:12px; font-weight:700; color:#e8a020; text-transform:uppercase; letter-spacing:1.4px; margin-bottom:18px; display:flex; align-items:center; gap:8px; } .section-title span { 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: linear-gradient(135deg, #4a9e3f, #2d7a24); 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 rgba(74,158,63,0.2); } .step-text { font-size:15px; color:#c0d8a8; 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 rgba(255,255,255,0.05); transition:background .25s, border-color .25s, transform .25s; cursor:default; } .req-item:hover { background:#172812; border-color:rgba(74,158,63,0.3); transform:translateX(6px); } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#c0d8a8; } .req-text strong { color:#e8a020; } /* ── PRIZE POOL ── */ .pool-total { text-align:center; padding:22px; background:linear-gradient(135deg,rgba(232,160,32,0.1),rgba(232,160,32,0.03)); border:1px solid rgba(232,160,32,0.3); border-radius:14px; margin-bottom:16px; transition:box-shadow .3s; } .pool-total:hover { box-shadow:0 0 40px rgba(232,160,32,0.15); } .pool-total .amount { font-size:52px; font-weight:900; color:#e8a020; animation: count-pulse 2.5s ease-in-out infinite; } @keyframes count-pulse { 0%,100% { text-shadow:0 0 0 #e8a020; } 50% { text-shadow:0 0 24px rgba(232,160,32,0.6); } } .pool-total .label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; } .dist-list { display:flex; flex-direction:column; gap:8px; } .dist-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--primary); border-radius:10px; border:1px solid rgba(255,255,255,0.05); font-size:14px; transition:background .2s, border-color .2s; } .dist-item:hover { background:#172812; border-color:rgba(232,160,32,0.25); } .dist-item .who { color:#c0d8a8; } .dist-item .val { color:#e8a020; font-weight:700; } /* ── NOTICE ── */ .notice { background:rgba(232,100,0,0.07); border:1px solid rgba(232,100,0,0.25); border-radius:14px; padding:16px; margin-bottom:16px; display:flex; gap:14px; align-items:flex-start; transition:border-color .3s; } .notice:hover { border-color:rgba(232,100,0,0.5); } .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:rgba(74,158,63,0.08); border:1px solid rgba(74,158,63,0.3); border-radius:12px; color:#7dcc6a; 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 rgba(74,158,63,0.2); } .stake-badge::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(74,158,63,0.12),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } /* ── TERMS ── */ details { background:var(--primary); border:1px solid rgba(255,255,255,0.06); border-radius:14px; overflow:hidden; transition:border-color .3s; } details:hover { border-color:rgba(74,158,63,0.25); } 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:#7dcc6a; } details[open] summary::after { content:'▲'; } .terms-body { padding:0 20px 20px; font-size:13px; color:#6a8a5a; line-height:1.9; } .terms-body h2 { font-size:12px; color:#e8a020; 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:#7dcc6a; } .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} @media(max-width:480px){ .prize-row{grid-template-columns:1fr;} .header h1{font-size:26px;} .pool-total .amount{font-size:38px;} } 🍃 🌿 🍃 🌴 🍃 🌿 🍃 🌴 🌿 🍃 🦁 CREATIVE Competition Eddie's missing!
Competition ends: 18/5/2026 @ 1:00 AM GMT
Eddie has gone missing somewhere in the wild jungle, and we need to find him!
We have set up a $2,000 bounty to help find Eddie before it's too late, Send us photos of Eddie being spotted in the jungle!
🦁 $1,000 Prize Pool 🐯 $50 × 20 Winners 🌿 Your photo must include Eddie and a jungle-themed 📋 How To Enter 1 Create a photo of Eddie in a jungle setting 2 Reply to this thread with your creation to enter ✅ Requirements 💬 Reply to this thread with your Creation 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $1,000 Total Prize Pool 🐯 20 × Winners$50 each 👥 Total Winners20 People 📅 Duration7 Days ⚠️ Don't miss out! Stay tuned for winner announcements. 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 Prizes & Delivery
Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 14 days of competition ending. Winners selected at random from all eligible entries. One entry per user — multiple entries result in only the first being valid. 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 -
-
hrs_25 reacted to Jake7589 in 💰[$2,500] Some-bunny loves you! 💔
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #071824; --gold: #FFB800; --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; animation-delay:.05s; } .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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } .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 24px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:17px; font-weight:800; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 0 0 0 #FFB80055; position:relative; overflow:hidden; } .play-btn::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 ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } .prize-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .prize-card { background: var(--surface); border-radius:16px; padding:28px 18px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, border-color .3s, box-shadow .3s; cursor:default; } .prize-card:hover { transform:translateY(-6px) scale(1.02); } .prize-card.gold { border-color:#FFB80044; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; } .prize-card.silver:hover { border-color:#0079ffaa; box-shadow:0 12px 40px #0079ff25; } .prize-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, var(--glow) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card.gold { --glow:#FFB80018; } .prize-card.silver{ --glow:#0079ff14; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:12px; right:14px; font-size:22px; animation:float 3s ease-in-out infinite; } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.silver .prize-amount { color:#0079ff; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#6a90a8; margin-top:4px; } .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; } .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; } /* ── REPLY BOX ── */ .reply-box { margin-top:20px; padding:18px; border-radius:16px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); text-align:center; } .reply-label { display:block; margin-bottom:10px; color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; } .reply-value-row { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; } .reply-value { display:inline-block; padding:12px 18px; border-radius:12px; background:rgba(7,24,36,.65); border:1px solid rgba(255,255,255,.08); color:var(--text); font-size:18px; font-weight:900; font-family:monospace; } .reply-value span { color:var(--gold); } .copy-btn { background:transparent; border:1px solid #0079ff44; color:#4da6ff; font-size:13px; font-weight:700; padding:10px 18px; border-radius:10px; cursor:pointer; transition:all .2s; white-space:nowrap; } .copy-btn:hover { background:#0079ff22; border-color:#0079ff88; } .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; } .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; } .dist-list { display:flex; flex-direction:column; gap:8px; } .dist-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--primary); border-radius:10px; border:1px solid #ffffff0a; font-size:14px; transition:background .2s, border-color .2s; } .dist-item:hover { background:#0a2236; border-color:#FFB80033; } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#FFB800; font-weight:700; } .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 { 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%; } } 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} @media(max-width:480px){ .prize-row{grid-template-columns:1fr;} .header h1{font-size:26px;} .pool-total .amount{font-size:38px;} } Some-bunny Loves you!
Competition ends: 13/4/2026 @ 1:00 AM GMT
Bunnies and Easter are as iconic as America and oil
We’re asking you to design a Stake-themed bunny 🐰. Drop your AI slop below and your bunny might be chosen to win a share of $2,500.
🏆 $2,500 Total Given Away 🥈 $100 Each × 25 Winners 💡 Creativity wins attention. Keep it fun, clear, and on theme. 📋 How To Enter 1 Have a valid Stake Community Account 2 Post your Stake-themed bunny design directly in this thread. 3 Make sure your reply clearly includes your Stake ID so your entry can be verified. ✅ Requirements 🎨 Create a Stake-themed Bunny 💬 Reply to this thread with your Design and Stake ID 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $2,500 Total Prize Pool 🏆 Total Prize Pool$2,500 🥈 25 × Winners$100 each 👥 Total Winners25 People 📅 Duration7 Days ⚠️ Don't miss out! Stay tuned for winner announcements. 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 Prizes & Delivery
Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 14 days of competition ending. Winners selected at random from all eligible entries. One entry per user — multiple entries result in only the first being valid. 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 -
-
hrs_25 reacted to Jake7589 in 💰[$2,000] Whack-a-who? 🔨
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #071824; --gold: #FFB800; --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; animation-delay:.05s; } .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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } .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 24px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:17px; font-weight:800; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 0 0 0 #FFB80055; position:relative; overflow:hidden; } .play-btn::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 ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } .prize-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .prize-card { background: var(--surface); border-radius:16px; padding:28px 18px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, border-color .3s, box-shadow .3s; cursor:default; } .prize-card:hover { transform:translateY(-6px) scale(1.02); } .prize-card.gold { border-color:#FFB80044; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; } .prize-card.silver:hover { border-color:#0079ffaa; box-shadow:0 12px 40px #0079ff25; } .prize-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, var(--glow) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card.gold { --glow:#FFB80018; } .prize-card.silver{ --glow:#0079ff14; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:12px; right:14px; font-size:22px; animation:float 3s ease-in-out infinite; } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.silver .prize-amount { color:#0079ff; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#6a90a8; margin-top:4px; } .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; } .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; } /* ── REPLY BOX ── */ .reply-box { margin-top:20px; padding:18px; border-radius:16px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); text-align:center; } .reply-label { display:block; margin-bottom:10px; color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; } .reply-value-row { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; } .reply-value { display:inline-block; padding:12px 18px; border-radius:12px; background:rgba(7,24,36,.65); border:1px solid rgba(255,255,255,.08); color:var(--text); font-size:18px; font-weight:900; font-family:monospace; } .reply-value span { color:var(--gold); } .copy-btn { background:transparent; border:1px solid #0079ff44; color:#4da6ff; font-size:13px; font-weight:700; padding:10px 18px; border-radius:10px; cursor:pointer; transition:all .2s; white-space:nowrap; } .copy-btn:hover { background:#0079ff22; border-color:#0079ff88; } .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; } .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; } .dist-list { display:flex; flex-direction:column; gap:8px; } .dist-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--primary); border-radius:10px; border:1px solid #ffffff0a; font-size:14px; transition:background .2s, border-color .2s; } .dist-item:hover { background:#0a2236; border-color:#FFB80033; } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#FFB800; font-weight:700; } .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 { 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%; } } 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} @media(max-width:480px){ .prize-row{grid-template-columns:1fr;} .header h1{font-size:26px;} .pool-total .amount{font-size:38px;} } Whack-a-who?
Competition ends: 31/3/2026 @ 1:00 AM GMT
Moles is LIVE on Stake
We're giving away $2,000 in bonuses. Comment below for a chance to get WHACKED with a $100 bonus
Only 20 winners, start commenting NOW!
🏆 $2,000 Total Given Away 🥈 $100 Each × 20 Winners 💡 Winners will be randomly selected, so much sure to keep commenting 📋 How To Enter 1 Have a valid Stake Community Account 2 Reply below with your Stake ID ✅ Requirements 💬 Reply to this thread with your Stake ID 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $2,000 Total Prize Pool 🏆 Total Prize Pool$2,000 🥈 20 × Winners$100 each 👥 Total Winners20 People 📅 Duration7 Days ⚠️ Don't miss out! Stay tuned for winner announcements. 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 Prizes & Delivery
Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 14 days of competition ending. Winners selected at random from all eligible entries. One entry per user — multiple entries result in only the first being valid. 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
-
hrs_25 reacted to Jake7589 in 💰[$2,500] Dear Eddie... 💞
🏆 Dear Eddie... 💞
Ends: 17/02/2026 @ 1.00 AM GMT
It’s a time of love and affection, and Eddie is here to send some “flowers” to his secret admirer 💘
Drop your Valentine’s message to Eddie below, and he might pick some cutie pooties to win a prize 💞
Requirements:
Reply with a Valentines Msg to Eddie
Include your Stake ID
Prize Pool: $2,500
Distributed to 25 randomly selected winners who meet the above conditions. How to Enter:
Reply meeting the above requirements Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 25. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3 month time period ends. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 got a reaction from Sujithpoojary01 in 💰[$2,000 USD] Share the Christmas Spirit 🎄
Big shout to @Jake7589the one who continuously conducts challenges, competitions, etc, thereby helping many people to win .
I hope this time I will or my friend @Exclusive03
-
hrs_25 got a reaction from Exclusive03 in 💰[$2,000 USD] Share the Christmas Spirit 🎄
Big shout to @Jake7589the one who continuously conducts challenges, competitions, etc, thereby helping many people to win .
I hope this time I will or my friend @Exclusive03
-
hrs_25 reacted to Jake7589 in 💰 [$1,000] Hi or Lo - September
🔍 Hi or Lo 🃏
Ends: 16/09/2025 @ 1.00 AM GMT
Hilo is a true Stake Classic, but how well are your prediction skills?
We’ve kicked off a round of Higher or Lower. Simply guess whether the next card will be higher or lower. 🤨
Drop your guess below 💬
Requirements:
Reply to this thread with your guess. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $1,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your Guess Include your Stake ID Prize pool distribution:
Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 20. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3 month time period ends. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰 [$2,000] Guess the Drop - August
🔍 Guess the Drop 🤔
Ends: 25/08/2025 @ 1.00 AM GMT
Plinko is all about the thrill of the drop, but can you predict where the ball will land? 🔮
We've dropped a ball on the iconic Plinko board. Can you guess which multiplier it will land on? 🤔
Drop your guess below 💬
Requirements:
Reply to this thread with your guess. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $2,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your Guess Include your Stake ID Prize pool distribution:
Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰 [$8,000] Stake's Birthday #15: Share a birthday toast in 10 words
🎉 Share a birthday toast for Stake in 10 words or less! 🍾
Ends: 21/08/2025 @ 1.00 AM GMT
It's been an amazing 8 years at Stake, and it's time for a toast 🍾
Share a birthday toast for Stake in 10 words or less, and we will choose 20 random users to share $8k 🎉
Drop your toast below 💬
Requirements:
Reply to this thread with your toast. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $8,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your answer Include your Stake ID Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰[$8,000] Stake's Birthday #13: What game deserves a Birthday reskin?
🎉 What Stake game deserves a Birthday reskin? 🥳
Ends: 21/08/2025 @ 1.00 AM GMT
With all these games on Stake, which game do you think deserves a birthday reskin? 🎰
Reply with which slot/game you would love to see a birthday reskin for, and we will choose 20 random users to share $8k 🎉
Drop your answer below 💬
Requirements:
Reply to this thread with your answer. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $8,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your answer Include your Stake ID Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰 [$8,000] Stake's Birthday #9: What was the best gift you got?
🎉 What was the best birthday gift you got? 🎁
Ends: 21/08/2025 @ 1.00 AM GMT
With all this birthday talk, it got us wondering, what's the best birthday gift you got? 🎁
Reply with which gifts you have received, and we will choose 20 random users to share $8k 🎉
Drop your answer below 💬
Requirements:
Reply to this thread with your answer. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $8,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your answer Include your Stake ID Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰 [$8,000] Stake's Birthday #8: What year did you join Stake?
🎉 What year did you join Stake? ⏰
Ends: 14/08/2025 @ 1.00 AM GMT
Stake has been around for 8 years, so we wanna know when you join Stake 🤔
Reply with which year you first joined Stake, and we will choose 20 random users to share $8k 🎉
Drop your answer below 💬
Requirements:
Reply to this thread with your answer. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $8,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Reply with your answer Include your Stake ID Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰 [$8,000] Stake's Birthday #1: Wish Stake Happy Birthday on Socials
🎉 Wish Stake a happy birthday on our socials! 📲
Ends: 14/08/2025 @ 1.00 AM GMT
Stake is turning 8 this year, and what better way to celebrate than by giving away Stake balance 💰
Wish Stake a happy 8th birthday on any of our socials, and you could win a share of $8,000 🎂
Submit your birthday wishes below 🎉
Requirements:
Your social post must have Stake tagged and include your Stake ID Fill out the Google form below to have a valid entry Include your Stake ID Include your Stake Forum account Include a link to your social media post (which mentioned your Stake ID)
(Please submit your entries via the Google form below)
ENTER HERE
Prize Pool: $8,000
Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
Fill out all the information on the above Google Form Prize pool distribution:
Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
hrs_25 reacted to Jake7589 in 💰[$2,000] Guess the Spin - July
🔍 Guess the Spin 🎡
Ends: 29/07/2025 @ 1.00 AM GMT
There’s nothing quite like the suspense of a spinning wheel, but how good are you at calling where it stops? 🎡
For this week's Stake Community competition, we have given the wheel a big spin. Can you guess which multiplier it will land on? 🤔
Drop your guess below 💬
Requirements:
Reply to this thread with your guess. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $2,000
Distributed to 20 randomly selected winners who meet the above conditions. Prize pool distribution:
Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
Terms of Service – Competition:
-
hrs_25 reacted to Jake7589 in 💰 [$2,000] Guess the Hits - July
🔍 Guess the Hits 💎
Ends: 25/07/2025 @ 3.00 AM GMT
Keno has always been a fan favourite on Stake, but how will your skills stack up against the rest of the community? 💎
We’ve selected ten numbers on the classic Keno board. Your challenge? Guess how many will hit! 🤔
Drop your guess below 💬
Requirements:
Reply to this thread with your guess. Include your Stake ID. Terms of Service – Competition:
Prize Pool: $2,000
Distributed to 20 randomly selected winners who meet the above conditions. Prize pool distribution:
Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 20.
How to Enter:
Respond to this topic by responding to the above question, leaving your answer in the comment section below To have a valid entry, fill out this form, providing your details - https://sta.ke/3ItjJqT
(A Google account is required to participate in this competition)
Stake.com users only ‼
-
hrs_25 reacted to Jake7589 in 💰 [$3,000] Xmas in July #2: Pick your Present 🎁
🎁 Pick your Present 💰
Ends: 15/07/2025 @ 3.00 AM GMT
Who doesn't love some free presents 🎁
We have wrapped up 10 gifts, all with different prizes that range from money to StakeWorld gift vouchers
Drop your pick below 💬
Requirements:
Reply to this thread with your pick. Include your Stake ID. Terms of Service – Competition:
Prize Pool: $3,000
Distributed to 30 randomly selected winners who meet the above conditions. Prize pool distribution:
Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 30.
How to Enter:
Respond to this topic by responding to the above question. Include your Stake ID. To have a valid entry, fill out this form, providing your details - https://sta.ke/44floss
(A Google account is required to participate in this competition)
Stake.com users only ‼
-
hrs_25 got a reaction from DoppleGanger77 in 💰 [$2,000] Guess the Game - July
Evil Devil
stake id : Hrs25