-
Posts
14 -
Joined
-
Last visited
Reputation Activity
-
PRIMEDICEian56 reacted to DragoslavP in ⚽Matchday Madness Week 42⚽
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;600;700&display=swap'); :root { --text: #f0f4ff; --muted: #7a8fbb; --gold: #FFB800; --shadow: 0 20px 60px rgba(0,0,0,0.6); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Barlow', sans-serif; background: #0a1525; color: var(--text); padding: 24px; max-width: 100%; margin: 0 auto; } .glass-card { border: 1px solid rgba(255,255,255,0.09); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: rgba(8, 18, 38, 0.95); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07); color: var(--text); position: relative; overflow: hidden; transition: 0.25s ease; } .glass-card::before { content:''; position:absolute; inset:0; background-image: url("data:image/svg+xml,%3Csvg width='600' height='400' viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 300 C100 250 150 100 300 80 C450 60 500 200 650 150' fill='none' stroke='%23e8162b' stroke-width='28' opacity='0.09' stroke-linecap='round'/%3E%3Cpath d='M-50 320 C100 270 150 120 300 100 C450 80 500 220 650 170' fill='none' stroke='%23e8162b' stroke-width='10' opacity='0.06' stroke-linecap='round'/%3E%3Cpath d='M-50 100 C50 150 200 180 320 160 C440 140 520 50 650 80' fill='none' stroke='%232255cc' stroke-width='28' opacity='0.1' stroke-linecap='round'/%3E%3Cpath d='M-50 80 C50 130 200 160 320 140 C440 120 520 30 650 60' fill='none' stroke='%232255cc' stroke-width='10' opacity='0.06' stroke-linecap='round'/%3E%3Cpath d='M-50 420 C120 380 200 300 350 320 C480 340 560 420 650 380' fill='none' stroke='%2300a040' stroke-width='24' opacity='0.08' stroke-linecap='round'/%3E%3Cpolygon points='480,60 483,70 494,70 485,76 488,87 480,81 472,87 475,76 466,70 477,70' fill='%234a9fff' opacity='0.12'/%3E%3Cpolygon points='120,320 123,330 134,330 125,336 128,347 120,341 112,347 115,336 106,330 117,330' fill='%234a9fff' opacity='0.1'/%3E%3Cpolygon points='540,280 542,287 550,287 543,292 546,299 540,295 534,299 537,292 530,287 538,287' fill='%234a9fff' opacity='0.1'/%3E%3Cpolygon points='200,80 202,87 210,87 203,92 206,99 200,95 194,99 197,92 190,87 198,87' fill='%234a9fff' opacity='0.1'/%3E%3Cpath d='M-50 295 C100 245 150 95 300 75 C450 55 500 195 650 145' fill='none' stroke='%23e8162b' stroke-width='2' opacity='0.08' stroke-linecap='round' stroke-dasharray='4 6'/%3E%3Cpath d='M-50 95 C50 145 200 175 320 155 C440 135 520 45 650 75' fill='none' stroke='%232255cc' stroke-width='2' opacity='0.08' stroke-linecap='round' stroke-dasharray='4 6'/%3E%3C/svg%3E"); background-size: 100% 100%; background-repeat: no-repeat; pointer-events: none; border-radius: 28px; z-index: 0; } .glass-card::after { content: none; } .glass-card > * { position: relative; z-index: 1; } .glass-card:hover { transform: translateY(-4px); } .badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,215,0,0.5); background: rgba(255,215,0,0.07); font-weight: 700; font-size: 13px; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(0,0,0,0.3); overflow: hidden; color: var(--gold); display: flex; align-items: center; gap: 6px; } .badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; } @keyframes shineBadge { 0%{left:-60%} 100%{left:120%} } .hero-title { font-family: 'Bebas Neue', sans-serif; font-size: 52px; text-align: center; letter-spacing: 4px; line-height: 1.05; background: linear-gradient(135deg, #fff 20%, var(--gold) 55%, #e8162b 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; } /* ── MATCH DISPLAY ── */ .match-display { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 20px 0 10px; } .match-team { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 3px; line-height: 1; background: linear-gradient(135deg, #ffffff 30%, #c8d8ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; } .match-divider { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; } .match-vs-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: #e8162b; line-height: 1; } .match-vs-line { width: 2px; height: 36px; background: linear-gradient(to bottom, transparent, rgba(232,22,43,0.6), transparent); } .gold-divider { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), #e8162b, var(--gold), transparent); border-radius: 999px; margin: 18px 0; opacity: 0.5; } .timer-wrap { display: flex; justify-content: center; margin: 14px 0; } .timer-box { background: rgba(232,22,43,0.1); border: 1px solid rgba(232,22,43,0.3); border-radius: 14px; padding: 12px 24px; text-align: center; } .timer-label { font-size: 11px; color: var(--muted); letter-spacing: 2px; font-family: 'Barlow Condensed', sans-serif; margin-bottom: 4px; } .timer-end { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #e8162b; letter-spacing: 2px; } .bet-wrap { text-align:center; margin: 20px 0 8px; } .bet-btn { display: inline-block; padding: 16px 56px; background: linear-gradient(135deg, #e8162b, #c0101f); color: #fff; font-weight: 800; font-size: 17px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; border-radius: 14px; text-decoration: none !important; transition: 0.25s ease; box-shadow: 0 10px 30px rgba(232,22,43,0.35); border: 1px solid rgba(255,255,255,0.15); } .bet-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232,22,43,0.5); } .challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(255,215,0,0.15); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; } .challenge-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--gold); margin-bottom: 18px; } .info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; } .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: 0.25s ease; } .info-box:hover { background: rgba(255,215,0,0.05); border-color: rgba(255,215,0,0.2); transform: translateY(-3px); } .info-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 13px 15px; margin-bottom: 10px; font-size: 14px; color: #dbe4ff; line-height: 1.5; transition: 0.25s ease; text-align: left; } .info-item:hover { background: rgba(255,215,0,0.06); border-color: rgba(255,215,0,0.2); transform: translateY(-2px); } .info-item:last-child { margin-bottom: 0; } .prize-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 10px; margin-bottom: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); font-size: 15px; transition: 0.2s ease; } .prize-row:hover { background: rgba(255,215,0,0.07); border-color: rgba(255,215,0,0.2); } .prize-row:last-child { margin-bottom: 0; } .prize-place { color: var(--muted); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 1px; } .prize-shiny { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 3px; background: linear-gradient(90deg, #FFD700, #fff8c0, #FFD700); 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} } .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); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; font-size: 15px; list-style: none; } .rules-list { list-style: none; padding: 0 16px 16px; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 10px 10px 10px 40px; margin-bottom: 8px; text-align: left; counter-increment: step; font-size: 14px; transition: 0.2s; color: #dbe4ff; } .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(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.5); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; } .rules-list li:hover::before { box-shadow: 0 0 8px rgba(255,215,0,0.5); transform: translateY(-50%) scale(1.1); } .bounce-ball { font-size: 24px; display: inline-block; animation: bounce 1s infinite ease-in-out; } @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} } @media(max-width:600px){ .info-grid { grid-template-columns: 1fr; } .hero-title { font-size: 38px; } .prize-shiny { font-size: 48px; } .match-team { font-size: 34px; } .match-vs-text { font-size: 18px; } } World Cup 2026 Matchday Madness ⚽ World Cup Edition ⚽ Brazil VS Morocco FIFA World Cup 2026 · Group Stage · 14/06/2026 - 10:00pm UTC ENTRIES CLOSE 14/06/2026 - 10:00pm UTC Answer 7 prediction questions about the match as accurately as possible. Each question is scored individually, the highest total score wins! Fill Out the Form In case of a tie, the user who submitted their form first has the advantage. How to Enter 1 Click the form link and answer all 7 prediction questions. 2 Submit the form before the match kicks off. 3 Each of the 7 questions is scored individually — points are added together. 4 Highest total score wins. A leaderboard will be posted during the promotion. 📋 Additional Info 📊 Points are awarded based on the value next to each question. All correct answers are summed for your total score. 📅 If the match is postponed, the promotion will also be postponed. 🤕 If a selected player is injured or absent, only predictions for players who participated will be counted. 🏆 The user with the highest total score will be declared the winner. 🏆 Prize Pool $800 TOTAL PRIZE POOL 🥇 1st Place$300 🥈 2nd Place$200 🥉 3rd Place$100 4th Place$100 5th Place$100 In case of a tie, the user who submitted their form first will have the advantage. 📜 Terms & Conditions Only KYC Level 2 or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirror site users are eligible. Stake employees cannot participate in official Stake.com forum challenges. This does not apply to moderators. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. For payment, allow up to 72 hours from the end of the promotion. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. -
PRIMEDICEian56 reacted to DragoslavP in $2,000 Players Markets | World Cup
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;600;700&display=swap'); :root { --card: rgba(8, 18, 38, 0.95); --line: rgba(255,255,255,0.08); --text: #f0f4ff; --muted: #7a8fbb; --gold: #FFB800; --red: #e8162b; --shadow: 0 20px 60px rgba(0,0,0,0.6); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Barlow', sans-serif; background: #0a1525; color: var(--text); padding: 24px; max-width: 100%; margin: 0; } .glass-card { border: 1px solid rgba(255,255,255,0.09); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: var(--card); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07); color: var(--text); transition: 0.25s ease; position: relative; overflow: hidden; } .glass-card::before { content:''; position:absolute; inset:0; background-image: url("data:image/svg+xml,%3Csvg width='600' height='400' viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 300 C100 250 150 100 300 80 C450 60 500 200 650 150' fill='none' stroke='%23e8162b' stroke-width='28' opacity='0.09' stroke-linecap='round'/%3E%3Cpath d='M-50 320 C100 270 150 120 300 100 C450 80 500 220 650 170' fill='none' stroke='%23e8162b' stroke-width='10' opacity='0.06' stroke-linecap='round'/%3E%3Cpath d='M-50 100 C50 150 200 180 320 160 C440 140 520 50 650 80' fill='none' stroke='%232255cc' stroke-width='28' opacity='0.1' stroke-linecap='round'/%3E%3Cpath d='M-50 80 C50 130 200 160 320 140 C440 120 520 30 650 60' fill='none' stroke='%232255cc' stroke-width='10' opacity='0.06' stroke-linecap='round'/%3E%3Cpath d='M-50 420 C120 380 200 300 350 320 C480 340 560 420 650 380' fill='none' stroke='%2300a040' stroke-width='24' opacity='0.08' stroke-linecap='round'/%3E%3Cpolygon points='480,60 483,70 494,70 485,76 488,87 480,81 472,87 475,76 466,70 477,70' fill='%234a9fff' opacity='0.12'/%3E%3Cpolygon points='120,320 123,330 134,330 125,336 128,347 120,341 112,347 115,336 106,330 117,330' fill='%234a9fff' opacity='0.1'/%3E%3Cpolygon points='540,280 542,287 550,287 543,292 546,299 540,295 534,299 537,292 530,287 538,287' fill='%234a9fff' opacity='0.1'/%3E%3Cpolygon points='200,80 202,87 210,87 203,92 206,99 200,95 194,99 197,92 190,87 198,87' fill='%234a9fff' opacity='0.1'/%3E%3C/svg%3E"); background-size: 100% 100%; background-repeat: no-repeat; pointer-events: none; border-radius: 28px; z-index: 0; } .glass-card > * { position: relative; z-index: 1; } .glass-card:hover { transform: translateY(-4px); } .badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,215,0,0.5); background: rgba(255,215,0,0.07); font-weight: 700; font-size: 13px; color: var(--gold); display: flex; align-items: center; gap: 8px; overflow: hidden; z-index: 2; } .badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; } @keyframes shineBadge { 0%{left:-60%} 100%{left:120%} } .hero-title { font-family: 'Bebas Neue', sans-serif; font-size: 52px; text-align: center; letter-spacing: 4px; line-height: 1.05; background: linear-gradient(135deg, #fff 20%, var(--gold) 55%, #e8162b 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; } .bounce-ball { font-size: 26px; display: inline-block; animation: bounce 1s infinite ease-in-out; } @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} } .gold-divider { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent); border-radius: 999px; margin: 18px 0; opacity: 0.5; } .bet-wrap { text-align:center; margin: 18px 0 10px; } .bet-btn { display: inline-block; padding: 16px 52px; background: linear-gradient(135deg, #e8162b, #c0101f); color: #fff; font-weight: 800; font-size: 17px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; border-radius: 14px; text-decoration: none !important; transition: 0.25s ease; box-shadow: 0 10px 30px rgba(232,22,43,0.35); border: 1px solid rgba(255,255,255,0.15); } .bet-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232,22,43,0.5); } .challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(255,215,0,0.15); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; } .challenge-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--gold); margin-bottom: 18px; } .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(232,22,43,0.08); transform: translateY(-4px); border-color: rgba(232,22,43,0.3); } .feature::before { content: attr(data-step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.5); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; } /* ── MARKETS GRID ── */ .markets-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin: 16px 0; } .market-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,184,0,0.2); border-radius: 10px; padding: 10px; text-align: center; font-size: 13px; font-weight: 700; color: var(--gold); transition: 0.2s; } .market-tag:hover { background: rgba(255,184,0,0.08); transform: translateY(-2px); } .info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; } .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: 0.25s ease; } .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(255,215,0,0.06); transform: translateY(-3px); border-color: rgba(255,215,0,0.2); } .prize-box:hover { background: rgba(255,215,0,0.06); transform: translateY(-3px); } .prize-shiny { font-family: 'Bebas Neue', sans-serif; font-size: 58px; letter-spacing: 3px; background: linear-gradient(90deg, #FFD700, #fff8c0, #FFD700); 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} } .prize-list { margin-top: 10px; font-size: 14px; } .prize-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .prize-row span:first-child { color: var(--text); } .prize-row:last-child { border: none; } .tie-item { background: rgba(255,255,255,0.03); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 10px 14px; margin-bottom: 8px; font-size: 14px; color: var(--muted); } .tie-item strong { color: var(--text); } .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); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; font-size: 15px; } .rules-list { list-style: none; padding: 0 16px 16px; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 10px 10px 10px 40px; margin-bottom: 8px; text-align: left; counter-increment: step; font-size: 14px; transition: 0.2s; color: var(--muted); } .rules-list li strong { color: var(--text); } .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(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.5); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; transition: 0.25s; } .rules-list li:hover::before { box-shadow: 0 0 8px rgba(255,215,0,0.5); transform: translateY(-50%) scale(1.1); } .section-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; } @media(max-width:700px){ .feature-grid,.info-grid,.markets-grid{grid-template-columns:1fr;} .hero-title{font-size:38px;} } World Cup 2026 Player Markets ⚡ Bet on the stars of the World Cup! ⚡ Place a winning bet on any player market from any World Cup games and climb the leaderboard. The higher the odds, the higher you rank! Bet on any Player Market available — goals, assists, shots, cards, tackles and more. Ends: 01/07/2026 @ 12:00 UTC Bet Now How to Enter Place a winning bet on any player market in a World Cup games. Copy your Bet ID after the bet is settled. Minimum bet amount: $2.00 USD. Minimum 1.80x odds per selection. Reply to this thread with your Bet ID (e.g. sport:123456789). 📋 Requirements ⚽ Bets must be on any World Cup player market. 💵 Minimum bet amount: $2.00 (any currency). 💬 One valid entry per user. ❌ Cashed out bets are not allowed. ❌ Voided or cancelled bets are not eligible. ❌ Stake Shield bets are not allowed. 🔒 Stake.com accounts only, Bronze VIP or above. 🏆 Prize Pool $2,000 TOTAL PRIZE POOL 1st Place$500 2nd Place$400 3rd Place$300 4th Place$200 5th Place$100 6th–10th Place$60 each 11th–15th Place$40 each Ranked by odds. In case of a tie, the higher bet amount wins. If still tied, earliest entry wins. ⚖️ Tiebreaker Players ranked primarily by odds of the parlay. Tie? Player with the higher bet amount wins. Still tied? Player who posted first has the advantage. Terms & Conditions Bronze VIP account or above. Bet's must've been made after 15/06/2026 @ 12:00pm UTC KYC Level 2 verification required. Bets must be placed and settled within the competition window. You can bet on pre-match or live player markets. Stake employees cannot participate. This does not apply to moderators. Only Stake.com and official mirror site users are eligible. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse. For payment, give us up to 72 hours from the end of the promotion. Winners will be contacted directly via support. Prizes distributed as a coupon. -
PRIMEDICEian56 reacted to DragoslavP in $10,000 Last Leg Legend | May | Sports Challenge
.sf-wrap{ max-width:1000px; margin:20px auto; font-family:Arial,Helvetica,sans-serif; color:#f5f7fb; background: radial-gradient(circle at 80% 15%, rgba(120,160,255,0.06), transparent 45%), radial-gradient(circle at 50% 100%, rgba(160,120,255,0.04), transparent 55%), linear-gradient(145deg, rgba(10,14,28,0.72) 0%, rgba(12,18,38,0.78) 50%, rgba(8,12,24,0.85) 100% ); border:1px solid rgba(255,255,255,0.10); border-radius:26px; overflow:hidden; box-shadow:0 18px 50px rgba(0,0,0,0.35); position:relative; } .sf-wrap::before{ content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 90% 10%, rgba(120,160,255,0.08), transparent 42%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 60%); } .sf-wrap::after{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.35) 100% ); } .sf-hero{ position:relative; padding:34px 28px 28px; background: transparent; } .sf-topbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; flex-wrap:wrap; } .sf-title{ font-size:40px; line-height:1.08; font-weight:900; color:#ffffff; margin:0 0 10px; text-shadow:0 4px 18px rgba(0,0,0,0.25); } .sf-sub{ max-width:760px; font-size:17px; line-height:1.65; color:#dbe4ff; margin-bottom:22px; } .sf-grid-top{ display:flex; flex-wrap:wrap; gap:12px; } .sf-chip{ flex:1 1 180px; min-width:180px; padding:15px 16px; border-radius:18px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); box-shadow:0 6px 16px rgba(0,0,0,0.14); transition:all 0.25s ease; } .sf-chip-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-chip-value{ font-size:19px; font-weight:800; color:#ffffff; } .sf-btns{ margin-top:20px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; padding-bottom:14px; } .sf-btns::after{ content:""; position:absolute; left:20%; right:20%; bottom:-10px; height:2px; background:linear-gradient(90deg,transparent,#f7c948,transparent); opacity:0.55; } .sf-btn{ display:inline-block; padding:14px 20px; border-radius:14px; font-size:14px; font-weight:800; letter-spacing:0.4px; transition:all 0.25s ease; text-decoration:none !important; } .sf-btn-primary{ color:#1a1a1a !important; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); border:1px solid rgba(255,215,0,0.75); box-shadow:0 14px 28px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.25); text-shadow:0 1px 0 rgba(255,255,255,0.35); position:relative; overflow:hidden; } .sf-btn-primary:hover{ transform:translateY(-3px) scale(1.08); box-shadow:0 18px 36px rgba(212,175,55,0.45); } .sf-btn-primary::after{ content:""; position:absolute; top:-60%; left:-70%; width:60%; height:200%; background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent); transform:rotate(25deg); transition:all 0.6s ease; } .sf-btn-primary:hover::after{ left:120%; } .sf-main{ padding:26px; } .sf-columns{ display:flex; flex-wrap:wrap; gap:20px; align-items:flex-start; } .sf-left, .sf-right{ flex:1 1 48%; min-width:320px; display:flex; flex-direction:column; } .sf-card{ background:rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.08); border-radius:22px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,0.18); margin-bottom:20px; backdrop-filter: blur(10px); position:relative; transition:all 0.25s ease; } .sf-left .sf-card:last-child, .sf-right .sf-card:last-child{ margin-bottom:0; margin-top:auto; } .sf-card::before{ content:""; position:absolute; inset:0; border-radius:22px; pointer-events:none; background:linear-gradient(135deg, rgba(247,201,72,0.04), transparent 45%, rgba(120,160,255,0.03) ); } .sf-card h3{ margin:0 0 14px; font-size:24px; color:#ffffff; } .sf-mini{ display:grid; gap:12px; } .sf-mini-box{ padding:14px 15px; border-radius:16px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07); font-size:15px; line-height:1.65; color:#ffffff; } .sf-prize-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-prize-big{ padding:18px; border-radius:18px; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); color:#1c1930; box-shadow:0 12px 26px rgba(212,175,55,0.35); margin-bottom:12px; } .sf-prize-small{ padding:16px 18px; border-radius:18px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); margin-bottom:12px; } .dropdown-card{ margin-top:20px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .rules-list li:hover{ transform:translateX(6px); background:rgba(247,201,72,0.06); border:1px solid rgba(247,201,72,0.35); box-shadow:0 10px 24px rgba(0,0,0,0.25); color:#ffffff; } .sf-main > .sf-card:last-child{ padding:10px 18px; } .sf-main > .sf-card{ margin-top:24px; } .sf-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,0.35); border:1px solid rgba(247,201,72,0.45); } .sf-chip:hover{ transform:translateY(-4px) scale(1.02); box-shadow:0 12px 26px rgba(0,0,0,0.25); border:1px solid rgba(247,201,72,0.35); } .prize-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; text-align: center; color: #f5f7fb; font-family: Arial, Helvetica, sans-serif; } .prize-title { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #ffffff; } .prize-amount { font-size: 52px; font-weight: 900; color: #f7c948; } .prize-sub { font-size: 12px; color: #ffffff; margin-bottom: 10px; } .prize-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; } .prize-row:last-child { border: none; } .prize-row span:last-child { color: #f7c948; font-weight: 700; } .prize-note { margin-top: 10px; font-size: 12px; color: #a7b4c9; } @media (max-width:640px){ .sf-title{font-size:32px;} .sf-hero{padding:24px 18px;} .sf-main{padding:18px;} .sf-btn{width:100%;text-align:center;} } Last Leg Legend | May Ends: 01/06/2026 @ (12 PM) GMT Compete for a $10,000 prize pool in this 30-day challenge, with a fresh reset every month.
This time it's all about the "one leg" warriors, parlays lost by just one selection. The higher your odds, the better your chances!
BET NOW! Requirements
Lose a bet with the highest total odds with only 1 match/selection lost! (If you get a bet with higher odds, you can edit your post) You need to have at least 6 matches/selections. Minimum odds on the last (losing) match/selection that was lost cannot be higher than 5x. The minimum bet amount is set at 2$ USD (in any currency). Bets must have been made after 01/05/2026 - (12 pm) UTC. $10,000 TOTAL PRIZE POOL 1st$2,500 2nd$1,500 3rd$1000 4th$750 5th$600 6th-10th$350 11th-14th$250 15th-20th$150 In case of a tie, ranking is based on the bet amount placed. If tied again, the user who posted the bet(s) first will have an advantage. Terms & Conditions — click to expand
You can bet on pre-match or live markets. Cashed-out bets are not eligible for the challenge. Stake Shield bets are not eligible for the challenge. Adjusted bets after the promotion has ended will not count. Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirrors users will be eligible for the prize. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. For payment, give us up to 72 hours from the end of the promotion. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post.
-
PRIMEDICEian56 reacted to NemanjaPi in $3,000 Perfect 10 | Sports
.sf-wrap{ max-width:1000px; margin:20px auto; font-family:Arial,Helvetica,sans-serif; color:#f5f7fb; background: radial-gradient(circle at 20% 10%, rgba(120,200,255,0.10), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,220,120,0.08), transparent 45%), radial-gradient(circle at 50% 100%, rgba(180,140,255,0.08), transparent 55%), linear-gradient(145deg, #0f1722 0%, #121c2a 45%, #0e1520 100%); border:1px solid rgba(255,255,255,0.14); border-radius:26px; overflow:hidden; box-shadow:0 22px 60px rgba(0,0,0,0.35); position:relative; backdrop-filter: blur(10px); } /* soft animated glow overlay feel */ .sf-wrap::before{ content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 85% 15%, rgba(120,180,255,0.10), transparent 45%), radial-gradient(circle at 20% 80%, rgba(255,210,120,0.07), transparent 50%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%); } .sf-wrap::after{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.25) 100%); } .sf-hero{ position:relative; padding:34px 28px 28px; background: transparent; } .sf-topbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; flex-wrap:wrap; } .sf-title{ font-size:40px; line-height:1.08; font-weight:900; color:#ffffff; margin:0 0 10px; text-shadow:0 4px 18px rgba(0,0,0,0.25); } .sf-sub{ max-width:760px; font-size:17px; line-height:1.65; color:#dbe4ff; margin-bottom:22px; } .sf-grid-top{ display:flex; flex-wrap:wrap; gap:12px; } .sf-chip{ flex:1 1 180px; min-width:180px; padding:15px 16px; border-radius:18px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); box-shadow:0 6px 16px rgba(0,0,0,0.14); transition:all 0.25s ease; } .sf-chip-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-chip-value{ font-size:19px; font-weight:800; color:#ffffff; } .sf-btns{ margin-top:20px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; padding-bottom:14px; } .sf-btns::after{ content:""; position:absolute; left:20%; right:20%; bottom:-10px; height:2px; background:linear-gradient(90deg,transparent,#f7c948,transparent); opacity:0.55; } .sf-btn{ display:inline-block; padding:14px 20px; border-radius:14px; font-size:14px; font-weight:800; letter-spacing:0.4px; transition:all 0.25s ease; text-decoration:none !important; } .sf-btn-primary{ color:#1a1a1a !important; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); border:1px solid rgba(255,215,0,0.75); box-shadow:0 14px 28px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.25); text-shadow:0 1px 0 rgba(255,255,255,0.35); position:relative; overflow:hidden; } .sf-btn-primary:hover{ transform:translateY(-3px) scale(1.08); box-shadow:0 18px 36px rgba(212,175,55,0.45); } .sf-btn-primary::after{ content:""; position:absolute; top:-60%; left:-70%; width:60%; height:200%; background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent); transform:rotate(25deg); transition:all 0.6s ease; } .sf-btn-primary:hover::after{ left:120%; } .sf-main{ padding:26px; } .sf-columns{ display:flex; flex-wrap:wrap; gap:20px; align-items:flex-start; } .sf-left, .sf-right{ flex:1 1 48%; min-width:320px; display:flex; flex-direction:column; } .sf-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:22px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,0.18); margin-bottom:20px; backdrop-filter: blur(12px); position:relative; transition:all 0.25s ease; } .sf-left .sf-card:last-child, .sf-right .sf-card:last-child{ margin-bottom:0; margin-top:auto; } .sf-card::before{ content:""; position:absolute; inset:0; border-radius:22px; pointer-events:none; background:linear-gradient(135deg, rgba(247,201,72,0.04), transparent 45%, rgba(120,160,255,0.03)); } .sf-card h3{ margin:0 0 14px; font-size:24px; color:#ffffff; } .sf-mini{ display:grid; gap:12px; } .sf-mini-box{ padding:14px 15px; border-radius:16px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); font-size:15px; line-height:1.65; color:#ffffff; } .sf-prize-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-prize-big{ padding:18px; border-radius:18px; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); color:#1c1930; box-shadow:0 12px 26px rgba(212,175,55,0.35); margin-bottom:12px; } .sf-prize-small{ padding:16px 18px; border-radius:18px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); margin-bottom:12px; } .dropdown-card{ margin-top:20px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .rules-list li:hover{ transform:translateX(6px); background:rgba(247,201,72,0.06); border:1px solid rgba(247,201,72,0.35); box-shadow:0 10px 24px rgba(0,0,0,0.25); color:#ffffff; } .sf-main > .sf-card:last-child{ padding:10px 18px; } .sf-main > .sf-card{ margin-top:24px; } .sf-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,0.35); border:1px solid rgba(247,201,72,0.45); } .sf-chip:hover{ transform:translateY(-4px) scale(1.02); box-shadow:0 12px 26px rgba(0,0,0,0.25); border:1px solid rgba(247,201,72,0.35); } @media (max-width:640px){ .sf-title{font-size:32px;} .sf-hero{padding:24px 18px;} .sf-main{padding:18px;} .sf-btn{width:100%;text-align:center;} }
$3,000 Perfect 10
Win a bet with at least x10 by betting on at least 10 matches/selections. Eligible sports All Sports Minimum Bet amount $1 USD Minimum ODds 10x or above VIP level Bronze or above Promotionional period May 11 - May 18 (12 pm UTC) BET NOW! Additional Information
Bets must have been made after 11/05/2026 - (12 pm) UTC. You need 10+ forum posts and Level 2 KYC or higher. You can bet on pre-match or live markets. Voided, cancelled, half-loss, and half-win bets are not eligible for the challenge. Cashed-out bets are not eligible for the challenge. Stake Shield bets are eligible for the promotion. Only selections that result in a win will contribute to your total number of winning selections. Only one valid entry per user. You have to be one of the VIP members on our site (at least the Bronze VIP level). Prize Pool
Maximum Prize Pool $3,000 Tiered Prize Pool
Minimum prize pool$300
30 - 40 participants$600
41 - 50 participants$900
51 - 100 participants$1,200
101 - 200 participants$2,500
201 or more participants$3,000 Distribution
All players who complete the challenge in the next 7 days, will get a share in the prize pool! Extra reward 💰
Win an extra reward by hitting x100 or more and we will award you $50!
Terms & Conditions — click to expand
Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirrors users will be eligible for the prize. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. For payment, give us up to 72 hours from the end of the promotion. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post.
-
PRIMEDICEian56 got a reaction from Ozaidoto in 🏆 What’s the Most Interesting Sports Bet You've Ever Placed?
why i always loss.in table tennis ?
small odd, multi odd
single odd
I dream can win $100000 from $100