Marbah
-
Posts
53 -
Joined
-
Last visited
Reputation Activity
-
-
-
Marbah 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. -
Marbah reacted to DragoslavP in $10,000 Last Leg Legend | June | 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 | June Ends: 01/07/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/06/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.
-
Marbah reacted to BratislavK in Bet ID Prediction: May❓
🎉 Congratulations 🎉
You can claim prizes on the link below until the July 7th!
Target Bet ID: 481,816,231,534
Place Username Bet ID Prize 1 Turntosun 481,816,102,932 $600 2 torchangel02 481,814,355,223 $400 3 Marbah 481,810,569,954 $200 4 Thinover 481,824,066,789 $100 5 Platinichi 481,808,060,583 $50 6 Lime131 481,831,078,131 $20 7 SH350i 481,832,101,301 $20 8 Nightabcd 481,800,073,523 $20 9 Tariktan54 481,800,000,000 $20 10 BonusKedi 481,795,800,611 $20 CLAIM HERE -
Marbah reacted to DragoslavP in $5,000 Road to the Ring | Finals
:root { --card: rgba(10, 20, 38, 0.75); --line: rgba(255,255,255,0.12); --text: #f5f7fb; --muted: #a7b4c9; --gold: #f7c948; --shadow: 0 20px 60px rgba(0, 0, 0, 0.28); } .glass-card { border: 1px solid var(--line); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(225deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)), var(--card); box-shadow: var(--shadow); backdrop-filter: blur(14px); color: var(--text); transition: 0.25s ease; } .glass-card:hover { transform: translateY(-4px); } .hero-title { font-size: 30px; font-weight: 800; text-align: center; margin-top: 10px; } .hero-sub { text-align: center; color: var(--muted); margin-top: 6px; font-size: 15px; } /* BADGE */ .badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(247,201,72,0.6); background: rgba(255,255,255,0.03); font-weight: 700; overflow: hidden; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(0,0,0,0.25); } .badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; } @keyframes shineBadge { 0% { left:-60%; } 100% { left:120%; } } /* 🏀 BOUNCE ANIMATION */ .bounce-ball { font-size: 20px; display: inline-block; animation: bounce 1s infinite ease-in-out; will-change: transform; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } /* 🔥 BET NOW BUTTON (slightly bigger) */ .bet-wrap { text-align: center; margin: 14px 0 10px; } .bet-btn { display: inline-block; padding: 16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color: #071824; font-weight: 800; font-size: 17px; border-radius: 14px; text-decoration: none !important; transition: 0.25s ease; box-shadow: 0 10px 25px rgba(255,184,0,0.25); } .bet-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(255,184,0,0.4); } /* HOW TO ENTER */ .challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(247,201,72,0.18); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; position: relative; overflow: hidden; } .challenge-title { font-size: 18px; font-weight: 800; color: var(--gold); margin-bottom: 18px; text-transform: uppercase; } .feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; } .feature { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px 14px 14px 44px; font-size: 14px; transition: 0.25s ease; position: relative; display: flex; align-items: center; text-align: left; } .feature:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } .feature::before { content: attr(data-step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; } /* REQUIREMENTS ITEM */ .req-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; margin-bottom: 10px; font-size: 14px; text-align: left; transition: 0.25s ease; } .req-item:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } /* BASE INFO BOX */ .info-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; text-align: center; transition: none; } /* PRIZE BOX */ .prize-box:hover { background: rgba(247,201,72,0.08); transform: translateY(-3px); } /* PRIZE SHINE */ .prize-shiny { font-size: 52px; font-weight: 900; background: linear-gradient(90deg,#f7c948,#fff4b0,#f7c948); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; } @keyframes shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } } /* GRID */ .info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; } /* PRIZE LIST FIXED */ .prize-list { margin-top: 10px; font-size: 14px; } .prize-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .prize-row span:first-child { color: var(--text); } .prize-row span:last-child { color: var(--gold); font-weight: 700; } .prize-row:last-child { border:none; } /* TERMS */ .dropdown-card { background: rgba(255,255,255,0.04); border-radius: 16px; margin-top: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); } .dropdown-trigger { padding: 14px; text-align: center; cursor: pointer; font-weight: 700; color: var(--gold); } /* RULES */ .rules-list { list-style: none; padding: 0; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 10px 10px 10px 40px; margin-bottom: 8px; text-align: left; counter-increment: step; transition: 0.2s; } .rules-list li:hover { transform: translateX(3px); } .rules-list li::before { content: counter(step); position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; transition: 0.25s; } .rules-list li:hover::before { box-shadow: 0 0 8px rgba(247,201,72,0.6); transform: translateY(-50%) scale(1.1); } .center { text-align:center; } @media(max-width:900px){ .feature-grid, .info-grid { grid-template-columns:1fr; } } ⚡ Limited-Time Event
Road to the Ring 💍
The Finals are here! 🏀
Win a bet on any Finals Playoff game and share your Bet IDs below.
Better odds will lead you towards the top of the leaderboard!
Bet Now Competition ends when first round is finished. How to Enter: Win a bet on any Finals NBA game. Copy your Bet ID(s) after placing your bet. Submitted bets must be a minimum of 5x odds. Reply to this thread with your Bet ID(s) to enter. 📋 Requirements: 🏀 Bets must be on any Finals NBA game. 💵 Minimum bet amount: $2.00 (in any currency). 📈 Minimum 5x odds (bets must be winning). 💬 Reply to this thread with your Bet ID(s). ❌ Cashed out bets are not allowed. ✅ Stake Shield / SGM bets are allowed. 🔒 Stake.com accounts only, Bronze VIP or above. 🏆 Prize Pool $5,000 TOTAL PRIZE POOL 1st Place$1000 2nd Place$800 3rd Place$600 4th Place$400 5th Place$200 6th OnwardShare of $2,000 In the event of a tie, the higher bet amount wins. If still tied, the user who posted the bet(s) first will have an advantage. Terms & Conditions Bronze VIP account or above. KYC Level 2 verification required. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Only Stake.com and official Stake.com mirror sites users will be eligible for the prize. 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 challenge. 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. -
Marbah reacted to DragoslavP in 🏀NBA Finals Points Battle | Game 2 | 🏀
🏀POINTS BATTLE🏀
🏆 New York Knicks vs San Antonio Spurs🏆
Ends: 06/06/26 @ (12 pm) GMT
Requirements:
Guess the total number of points for each of the 7 selected players. This refers to the Game 2 match of the NBA Finals. The match is scheduled for June 6th. To have a valid entry, fill out the form below. HERE
Tips & Terms & Conditions:
Points are awarded based on how close your predictions are to the actual points for each player.
Exact match: 150 points
Within 1 point: 100 points
Within 2 points: 75 points
Within 3 points: 50 points
Within 4 points: 30 points
From 5 to 10 points: 15 points
From 11 to 20 points: 10 points
From 21 to 30 points: 5 points Total Score: Your total score will be the sum of points from all 7 players. Fill out the form that's linked to this topic to be eligible for promotion. The user with the highest Total Score will be declared the winner. In case of a tie, the user who submitted their entry first will have the advantage. A Pastebin leaderboard will be featured as part of the promotion. If a player is not on the roster for that game due to injury or any other reason. In that case, only the predictions for selected players who participated in Game 2 will be counted. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Any player using multiple accounts will not be eligible for prizes. Do not post more than one comment/entry. You have to be one of the VIP members on our site ( at least the Bronze VIP level ). Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verification Only stake.com and official stake.com mirrors users will be eligible for the prize. 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. Prize Pool distribution
1st place - $150 2nd place - $100 3rd place - $50 4th place - $50 5th place - $50
How to Enter
Click on the "HERE" button. Fill out the form and good luck! -
Marbah reacted to BratislavK in Bet ID Prediction: May❓
Bet ID Prediction ❓ Predict the closest bet ID to the one that will be on Stake.com at end of this challenge. The closest 10 predictions will be awarded with some amazing rewards. 💰
The prediction phase will remain open for 5 days, after which the thread will be closed. The final results will be determined after the full challenge period once the ending Bet ID is revealed.
Ends: 01 June 2026 - 12 PM UTC. 📋 Requirements Submit your Bet ID prediction. Include your Stake username. Only one entry allowed. Minimum 10 forum posts required. 🏆 Prize Pool 1st$600 2nd$400 3rd$200 4th$100 5th$50 6th–10th$20 🚀 How to Enter Reply with your predicted Bet ID and Stake username. Example: Bet ID: 660,000,000,000 | Username: Bratislav
📄 Terms & Conditions
(Click to expand) Entry must have been made after the commencement of this promotion - 01/04/26 - (12 pm) GMT. In case of a tie, the user who posted/edited their entry first will have the advantage. Do not post more than one comment/entry. 10+ Posts count on Forum. Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirror sites users will be eligible for the prize. 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, give us up to 72 hours from the end of the challenge. 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. -
-
-
Marbah reacted to Jake7589 in 💰[$50,000] Great Stake Community Raffle
🏆 Great Stake Community Raffle 🎟️
Ends: 03/12/2025 @ 1.00 AM GMT
The Great Stake Community Raffle is here, and $50,000 is up for grabs! 💰
To enter, wager a minimum of $40 on any slot / live game / Stake Original, and submit your bet ID below. 👇
The more bet IDs you submit, the higher your chances of winning 🍀
Only 100 winners will get lucky. You cannot miss this! 💵
Requirements:
$40 USD bet minimum
Any casino game
Bets must be dated from 02/09/2025 01:00 AM GMT and onwards
Each Bet ID counts as one entry; you are allowed to submit as many Bet IDs as you wish
Reply to this thread with your Bet IDs; you can include multiple bet IDs in one reply
Include your Stake ID
Prize Pool: $50,000
Distributed to 100 randomly selected unique winners who meet the above conditions. How to Enter:
Bet ID: Your bet ID here Prize pool distribution:
Complete the challenge within the next 90 days for a shot at the prize pool. Winners are limited to 100. Stake.com users only ‼
Terms of Service – Competition:
For Full Terms of Service - Expand below Quote
-
Marbah got a reaction from Nexusdice com in 💰[$3,000] Royal Club of Originals | Keno 🎰
casino:409123274027
-
Marbah got a reaction from Treasure in 💰[$3,000] Royal Club of Originals | Keno 🎰
casino:409123274027
-
-
Marbah got a reaction from ruthlessunruly in 💰$3,000 Royal Club of Originals | Hilo 🃏
casino:400319775183