Jump to content

Taufeeqkhan

Member
  • Posts

    165
  • Joined

  • Last visited

Reputation Activity

  1. Bitcoin
    Taufeeqkhan reacted to Jake7589 in ๐Ÿ’ฐ[$100,000] Football Raffle โšฝ๏ธ   
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Barlow+Condensed:wght@700;800;900&display=swap'); :root { /* Brand Primary */ --navy: #071824; --white: #ffffff; /* Bolt (primary accent) */ --bolt: #1475E1; --bolt-dark: #0749CE; --bolt-darker: #082F5A; /* Crash */ --crash: #E9113C; --crash-dark: #C9000A; --crash-darker: #5D0718; /* Strike */ --strike: #FF7B00; --strike-dark: #FF4E00; --strike-darker: #663100; /* Charge */ --charge: #FFB800; --charge-dark: #FF8C00; --charge-darker: #4D3700; /* Dash */ --dash: #00CA51; --dash-dark: #00AD2A; --dash-darker: #005120; /* Surfaces */ --surface: #0d2438; --surface2: #112d44; --muted: #7fa8c4; /* Display font */ --display: 'Barlow Condensed', 'Inter', sans-serif; } * { margin:0; padding:0; box-sizing:border-box; } body { background: var(--navy); color: var(--white); 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 โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .header { text-align:center; padding:48px 28px 40px; background: linear-gradient(160deg, var(--surface2) 0%, var(--navy) 100%); border-radius:20px; border:1px solid #ffffff14; margin-bottom:20px; position:relative; overflow:hidden; animation-delay:.05s; } .header::before { content:''; position:absolute; top:-80px; left:50%; transform:translateX(-50%); width:380px; height:380px; background: radial-gradient(circle, rgba(20,117,225,0.20) 0%, transparent 70%); animation: pulse-glow 4s ease-in-out infinite; pointer-events:none; } @keyframes pulse-glow { 0%,100% { opacity:.55; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.15); } } .eyebrow { font-family: var(--display); font-weight:700; font-size:13px; letter-spacing:.32em; color:var(--bolt); text-transform:uppercase; margin-bottom:14px; } .header h1 { font-family: var(--display); font-size:64px; font-weight:900; text-transform:uppercase; line-height:.92; letter-spacing:.01em; color:var(--white); margin-bottom:4px; } .h1-accent { color:var(--charge); } .ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.15em; margin:18px 0 10px; } .ends-label strong { color:var(--white); } .countdown-wrapper { margin:10px 0 22px; } .countdown-wrapper iframe { border-radius:8px; } .header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:24px; } .play-btn { display:inline-block; font-family: var(--display); padding:18px 50px; background: linear-gradient(135deg, var(--bolt) 0%, var(--bolt-dark) 100%); color:var(--white); font-size:22px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; 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 10px 36px rgba(20,117,225,0.45); } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ INLINE MATCH LINK โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .match-link { color:var(--bolt); text-decoration:none; border-bottom:1px dashed rgba(20,117,225,0.55); padding-bottom:1px; transition:color .2s, border-color .2s, border-style .2s; } .match-link:hover { color:#5fb0ff; border-bottom-color:#5fb0ff; border-bottom-style:solid; } .match-link strong { color:inherit; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PODIUM (TOP 3) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .podium { display:grid; grid-template-columns:1fr 1.2fr 1fr; gap:14px; margin-bottom:16px; align-items:end; } .podium-card { border-radius:16px; padding:26px 16px 22px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .podium-card:hover { transform:translateY(-6px); } .podium-1 { grid-column:2; grid-row:1; background: linear-gradient(160deg, var(--charge) 0%, var(--charge-dark) 65%, var(--charge-darker) 130%); border-color: var(--charge); padding:36px 16px 30px; } .podium-1 .rank, .podium-1 .amount, .podium-1 .winner-of { color:var(--navy); } .podium-1:hover { box-shadow:0 16px 44px rgba(255,184,0,0.35); } .podium-2 { grid-column:1; grid-row:1; background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 65%, var(--bolt-darker) 130%); border-color: var(--bolt); } .podium-2:hover { box-shadow:0 16px 44px rgba(20,117,225,0.4); } .podium-3 { grid-column:3; grid-row:1; background: linear-gradient(160deg, var(--crash) 0%, var(--crash-dark) 65%, var(--crash-darker) 130%); border-color: var(--crash); } .podium-3:hover { box-shadow:0 16px 44px rgba(233,17,60,0.35); } .podium-card .rank { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.22em; color:var(--white); margin-bottom:6px; opacity:.9; } .podium-card .amount { font-family:var(--display); font-weight:900; font-size:44px; line-height:1; color:var(--white); letter-spacing:.01em; } .podium-1 .amount { font-size:52px; } .podium-card .winner-of { font-family:var(--display); font-weight:700; font-size:11px; letter-spacing:.25em; text-transform:uppercase; margin-top:10px; color:var(--white); opacity:.7; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PILL โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pill { background:rgba(20,117,225,0.10); border:1px solid rgba(20,117,225,0.35); border-radius:40px; padding:12px 22px; text-align:center; font-size:13px; font-weight:600; color:#7fb8ff; margin-bottom:18px; transition:background .3s, border-color .3s; } .pill:hover { background:rgba(20,117,225,0.18); border-color:rgba(20,117,225,0.6); } .pill strong { color:var(--white); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ SECTION โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .section { background: var(--surface); border-radius:16px; padding:26px; margin-bottom:16px; border:1px solid #ffffff0d; transition:border-color .3s, box-shadow .3s; } .section:hover { border-color:rgba(20,117,225,0.35); box-shadow:0 4px 24px rgba(20,117,225,0.08); } .section-title { font-family:var(--display); font-size:24px; font-weight:900; color:var(--white); text-transform:uppercase; letter-spacing:.05em; margin-bottom:20px; display:flex; align-items:center; gap:12px; } .section-title .num { color:var(--bolt); font-size:18px; font-weight:700; letter-spacing:.1em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ STEPS โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .steps { display:flex; flex-direction:column; gap:14px; } .step { display:flex; gap:14px; align-items:flex-start; } .step-num { font-family:var(--display); min-width:38px; height:38px; background: linear-gradient(135deg, var(--bolt), var(--bolt-dark)); border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:19px; color:var(--white); flex-shrink:0; transition:transform .25s, box-shadow .25s; } .step:hover .step-num { transform:scale(1.12); box-shadow:0 0 0 6px rgba(20,117,225,0.15); } .step-text { font-size:15px; color:#b0cee4; padding-top:7px; } .step-text strong { color:var(--white); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REQUIREMENTS โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .req-list { display:flex; flex-direction:column; gap:10px; } .req-item { display:flex; align-items:center; gap:14px; background:var(--navy); border-radius:12px; padding:14px 16px; border:1px solid #ffffff0a; transition:background .25s, border-color .25s, transform .25s; } .req-item:hover { background:#0a2236; border-color:rgba(20,117,225,0.45); transform:translateX(6px); } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#b0cee4; } .req-text strong { color:var(--bolt); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL HERO โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-total { text-align:center; padding:32px 22px; background:linear-gradient(135deg, rgba(20,117,225,0.10), rgba(20,117,225,0.02)); border:1px solid rgba(20,117,225,0.35); border-radius:16px; margin-bottom:20px; transition:box-shadow .3s; position:relative; overflow:hidden; } .pool-total::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 50% 0%, rgba(20,117,225,0.18) 0%, transparent 60%); pointer-events:none; } .pool-total:hover { box-shadow:0 0 40px rgba(20,117,225,0.18); } .pool-total .pool-label { font-family:var(--display); font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.3em; margin-bottom:10px; position:relative; } .pool-total .pool-amount { font-family:var(--display); font-size:78px; font-weight:900; color:var(--bolt); line-height:1; letter-spacing:.01em; position:relative; animation: count-pulse 3s ease-in-out infinite; } @keyframes count-pulse { 0%,100% { filter:drop-shadow(0 0 0 transparent); } 50% { filter:drop-shadow(0 0 24px rgba(20,117,225,0.5)); } } .pool-total .winners-line { font-family:var(--display); font-size:14px; color:var(--white); text-transform:uppercase; letter-spacing:.22em; margin-top:12px; font-weight:700; position:relative; } .pool-total .winners-line strong { color:var(--charge); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ TIER TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:110px 1fr auto; gap:14px; padding:0 18px 10px; font-family:var(--display); font-size:11px; letter-spacing:.25em; text-transform:uppercase; color:var(--muted); font-weight:700; } .tier-head span:last-child { text-align:right; } .tier-table { display:flex; flex-direction:column; gap:6px; } .tier-row { display:grid; grid-template-columns:110px 1fr auto; gap:14px; align-items:center; padding:14px 18px; background:var(--navy); border-radius:10px; border:1px solid #ffffff0a; transition:background .2s, border-color .2s, transform .2s; } .tier-row:hover { background:#0a2236; border-color:rgba(20,117,225,0.3); transform:translateX(4px); } .tier-rank { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:18px; color:var(--white); letter-spacing:.04em; } .tier-winners { font-size:13px; color:var(--muted); } .tier-amount { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; } .tier-row.t-charge { border-color:rgba(255,184,0,0.4); background:linear-gradient(90deg, rgba(255,184,0,0.07), var(--navy) 60%); } .tier-row.t-bolt { border-color:rgba(20,117,225,0.4); background:linear-gradient(90deg, rgba(20,117,225,0.07), var(--navy) 60%); } .tier-row.t-crash { border-color:rgba(233,17,60,0.4); background:linear-gradient(90deg, rgba(233,17,60,0.07), var(--navy) 60%); } .tier-row.t-strike { border-color:rgba(255,123,0,0.4); background:linear-gradient(90deg, rgba(255,123,0,0.07), var(--navy) 60%); } .tier-row.t-dash { border-color:rgba(0,202,81,0.4); background:linear-gradient(90deg, rgba(0,202,81,0.07), var(--navy) 60%); } .tier-row.t-charge .tier-amount { color:var(--charge); } .tier-row.t-bolt .tier-amount { color:var(--bolt); } .tier-row.t-crash .tier-amount { color:var(--crash); } .tier-row.t-strike .tier-amount { color:var(--strike); } .tier-row.t-dash .tier-amount { color:var(--dash); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ NOTICE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .notice { background:rgba(255,123,0,0.08); border:1px solid rgba(255,123,0,0.32); 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(255,123,0,0.6); } .n-icon { font-size:22px; flex-shrink:0; } .n-text { font-size:13px; color:#f0c8a0; line-height:1.7; } .n-text strong { color:var(--white); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ STAKE BADGE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .stake-badge { font-family:var(--display); text-align:center; padding:16px; background:linear-gradient(135deg, rgba(20,117,225,0.18), rgba(20,117,225,0.04)); border:1px solid rgba(20,117,225,0.4); border-radius:12px; color:var(--white); font-weight:900; font-size:18px; letter-spacing:.2em; text-transform:uppercase; margin-bottom:16px; position:relative; overflow:hidden; transition:box-shadow .3s; } .stake-badge:hover { box-shadow:0 0 32px rgba(20,117,225,0.3); } .stake-badge::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(20,117,225,0.18),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ TERMS โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ details { background:var(--navy); border:1px solid #ffffff0d; border-radius:14px; overflow:hidden; transition:border-color .3s; } details:hover { border-color:rgba(20,117,225,0.3); } summary { padding:18px 20px; cursor:pointer; font-family:var(--display); font-weight:900; font-size:15px; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); list-style:none; display:flex; justify-content:space-between; align-items:center; user-select:none; transition:color .2s; } summary:hover { color:var(--white); } summary::after { content:'โ–ผ'; font-size:10px; color:var(--bolt); } details[open] summary::after { content:'โ–ฒ'; } .terms-body { padding:0 20px 20px; font-size:13px; color:#6a90a8; line-height:1.9; } .terms-body h2 { font-family:var(--display); font-size:14px; color:var(--bolt); text-transform:uppercase; letter-spacing:.18em; margin:18px 0 8px; font-weight:900; } .terms-body ul, .terms-body ol { padding-left:20px; } .terms-body li { margin-bottom:5px; } .terms-body a { color:var(--bolt); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ANIMATION DELAYS โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} .d4{animation-delay:.29s} .d5{animation-delay:.37s} .d6{animation-delay:.45s} .d7{animation-delay:.53s} .d8{animation-delay:.61s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:46px; } .pool-total .pool-amount { font-size:56px; } .podium { grid-template-columns:1fr; } .podium-1, .podium-2, .podium-3 { grid-column:1; grid-row:auto; } .podium-1 { order:1; } .podium-2 { order:2; } .podium-3 { order:3; } .tier-head, .tier-row { grid-template-columns:84px 1fr auto; gap:10px; padding:12px 14px; } .tier-rank { font-size:15px; } .tier-amount { font-size:17px; } .tier-winners { font-size:12px; } .section { padding:22px 18px; } } It's All At Stake $100K Football
    Raffle
    Competition ends: 18/7/2026 @ 1:00 AM GMT
    The biggest summer in football just got bigger. Here's your shot at $100K.
    We're not watching from the sidelines. We're putting $100,000 on the table for the fans who live for every moment in every match.
    Every $10+ bet you place is another Bet ID, another entry, another shot at the draw. Bet once, you're in. Bet ten times, you've got ten shots. Bet every match? The draw's stacked in your favour.
    It's All At Stake for you. Trust your team. Trust yourself. The more you back, the better your odds.
    โšฝ๏ธ Bet Now 1st Place $50,000 1 Winner 2nd $12,000 1 Winner 3rd $6,000 1 Winner ๐Ÿ’กย Bets must be on any International Soccer Matchย - The more Bets you share, the higher your chances [01] How To Enter 1 Place a qualifying bet on any International Soccer Match on Stake.com 2 Copy your Bet ID after placing your bet 3 Reply to this thread with your Bet ID to enter [02] Requirements โšฝ๏ธ Bets must be on any International Soccer Match ๐Ÿ’ต Minimum bet: $10.00 USD or currency equivalent ๐Ÿ’ฌ Reply to this thread with your Bet ID ๐Ÿ”’ Must be a Stake.com account โ€” Bronze VIP or above [03] Prize Pool Total Prize Pool $100,000 100 Winners ยท Drawn at Random Position Winners Prize 1st 1 winner $50,000 2nd 1 winner $12,000 3rd 1 winner $6,000 4th 1 winner $4,000 5th 1 winner $3,000 6th 1 winner $2,000 7th 1 winner $1,500 8th 1 winner $1,200 9th 1 winner $1,000 10th 1 winner $800 11th โ€“ 15th 5 winners $700 ea 16th โ€“ 20th 5 winners $500 ea 21st โ€“ 30th 10 winners $400 ea 31st โ€“ 40th 10 winners $250 ea 41st โ€“ 55th 15 winners $175 ea 56th โ€“ 70th 15 winners $100 ea 71st โ€“ 85th 15 winners $75 ea 86th โ€“ 100th 15 winners $50 ea โš ๏ธ 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 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. 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
  2. Bitcoin
    Taufeeqkhan 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!
  3. Fire
    Taufeeqkhan got a reaction from Robbabillion79 in Bet ID Prediction: Mayโ“   
    Bet ID: 479,856,674,858
    Stake I'd: Taufeeqkhanย 
  4. Fire
    Taufeeqkhan got a reaction from 228Gribok in Weekend Stream + Giveaway   
    Hello stake community ๐Ÿค  ๐Ÿ˜ย 
    Stake I'd:ย  Taufeeqkhanย 
  5. Bitcoin
    Taufeeqkhan reacted to Herrycainengs in ๐Ÿ’ฐ[$1,000] โ€‹Eddie's missing! ๐Ÿ˜ฑ   
    user id : Herrycainengs

    ย 
  6. Litecoin
    Taufeeqkhan reacted to Jake7589 in ๐Ÿ’ฐ[$3,000 USD] Rumble in the Jungle ๐Ÿฆ   
    @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;} } ๐Ÿƒ ๐ŸŒฟ ๐Ÿƒ ๐ŸŒด ๐Ÿƒ ๐ŸŒฟ ๐Ÿƒ ๐ŸŒด ๐ŸŒฟ ๐Ÿƒ ๐Ÿฆ Originals Competition Rumble in the Jungle
    Competition ends: 20/5/2026 @ 1:00 AM GMT
    Eddie recently took a lovely vacation to the wild plains and brought some friends home ๐Ÿง๐Ÿ˜. Let's pray they don't get deported.
    Win a game of our newest OG Zoo, with either Cheetah or Lion, and share your bet ID below.
    ๐ŸŽฐ Play Now ๐Ÿฆ $3,000 Prize Pool ๐Ÿฏ $100 ร— 30 Winners ๐ŸŒฟ You must hit with either Cheetah or Lion ๐Ÿ“‹ How To Enter 1 Play Zoo on Stake.com 2 Hit with either Cheetah or Lion with a $0.50 USD bet 3 Copy your Bet ID after winning your bet 4 Reply to this thread with your Bet IDs to enter โœ… Requirements ๐Ÿฆ Bets must be from Zoo ๐Ÿ’ต Minimum bet amount: $0.50 USD ๐Ÿ“ˆ Minimum multiplier: 3x or above ๐Ÿ’ฌ 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 ๐Ÿ“… 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
  7. Litecoin
    Taufeeqkhan reacted to DragoslavP in โšฝโ€‹Stake Matchday Madnessโ€‹ Week 37โšฝ   
    .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); } .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:stretch; } .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; } .dropdown-card{ margin-top:20px; } .sf-main > .sf-card:last-child{ margin-top:28px; } .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); } .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); } .rules-list li:hover{ transform: translateX(6px); background: rgba(247,201,72,0.06); border: 1px solid rgba(247,201,72,0.35); color: #ffffff; box-shadow: 0 10px 24px rgba(0,0,0,0.25); } ย  ย 

    โšฝStake Matchday Madnessโšฝ Round 36 | Newcastle - West Ham
    ย 
    (England, Premier League. The match is scheduled for 17.05.2026.)
    ย 
    ย 

    Ends: 17/05/26 (16:30 pm) GMT
    Requirements
    Guess correctly 7 questions that are posted on the poll below.
    Each category will be scored individually, and the total score will be calculated by adding them all together.
    ย 
    To have a valid entry, fill out the form below.
    ย 
    HERE
    Prize Pool
    ย 
    1st place$150
    2nd place$100
    3rd place$50
    4th place$50
    5th place$50 ย  In case of a tie, the user who submitted their form first will have an advantage. Additional Information
    Points are awarded based on the number of points next to the questions. All correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7 guesses. 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. 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 the match will be counted. A Pastebin leaderboard will be featured as part of the promotion. 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. ย 
    ย 
  8. Fire
    Taufeeqkhan reacted to tahab in Weekend Stream + Giveaway   
    tahabo

  9. Litecoin
    Taufeeqkhan reacted to DragoslavP in Community Parlay - Sports Challenge   
    (April 20thย  - April 25th)
    ๐Ÿ…Weekly Community Parlayย ๐Ÿ…
    Ends: 29/05/2026ย @ย (10:00 pm) UTC
    >
    Requirements:
    Place an exact bet that our Community Team decided on as a "weekly parlay". The minimum bet amount is set at 2USD$ย (inย any currency).
    ย  โฌ‡๏ธWeekly Parlayโฌ‡๏ธ

    ย 
    Tips & Terms & Conditions:
    You can bet only on pre-match selections; live bets are not allowed. All of your matches/selections have to be the same as our "weekly parlay." If any bet is voided or canceled, the prize will be the same as the outcome of the parlay. Cashed-out bets are not eligible for the challenge. Stake shield bets are not eligible for the challenge. You have to be one of the VIP members on our site (at least the Bronze VIP level). Betย must have been placedย afterย 04/05/2026ย 12:00 PMย UTC,ย and it has to be settled before the timer expires! 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. 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 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. 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. The image of "weekly parlay" is just a visual representation. If crypto changes throughout the duration of this challenge, the prize will be the same amount as on the example picture. Prize Pool Structure(s):ย 
    If "weekly parlay" doesn't come out as a win, all participants will split $500.00. If "weekly parlay" doesย come out as a win, all participants will split $1,850.00. Prize pool distribution:
    All players who complete the challenge in the next 5ย days will get a share in the prize pool! There is no limit to the number of winners. How to Enter:ย 
    Respond to this topic by posting your sports bet ID. One valid entry per user Examples of valid bet IDs: sport:123456789
  10. Bitcoin
    Taufeeqkhan reacted to DragoslavP in ๐Ÿ‘Šโ€Punch your Guesses - Week 4๐Ÿ‘Šโ€   
    ๐Ÿ‘Šโ€Punch your Guesses๐Ÿ‘Šโ€



    - UFC Fight Night: Khamzat Chimaev vs. Sean Strickland-ย 
    (UFC Prudential Center, Newark, US. The event is scheduled for 10.05.2026.)
    Ends: 10/05/26 (11:00 pm) GMTย 
    ย 
    Requirements:
    Guess correctly 7ย fights that are posted on the poll below. To have a valid entry, fill out the form below. HERE
    ย 
    Each category will be scored individually, and the total score will be calculated by adding them all together.
    ย 
    Tips &ย Terms & Conditions:
    Points are awarded based on the number of points next to the questions; all correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7ย guesses. 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 form first will have an advantage If the organization changes the fighters of a certain match that's on the form, it will be voided. 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 the match 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. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. 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!
  11. Ethereum
    Taufeeqkhan got a reaction from KaiZidan in Bet ID Prediction: Mayโ“   
    Bet ID: 479,856,674,858
    Stake I'd: Taufeeqkhanย 
  12. Fire
    Taufeeqkhan got a reaction from zlatan61 in Weekend Stream + Giveaway   
    Hello stake community ๐Ÿค  ๐Ÿ˜ย 
    Stake I'd:ย  Taufeeqkhanย 
  13. Doge
    Taufeeqkhan 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.
  14. Fire
    Taufeeqkhan got a reaction from MdSHBiR247 in โ€‹ ๐Ÿ†ย Stake x Team Vitality PC Giveawayย ๐ŸŽฎ โ€‹   
    Stake I'd:ย  Taufeeqkhanย 
    ย 
    ย 
  15. Eddie
    Taufeeqkhan reacted to DragoslavP in โšฝโ€‹Stake Matchday Madnessโ€‹ Week 35โ€‹โšฝโ€‹   
    โšฝStake Matchday Madnessโšฝ



    - Round 35 -ย Man. United - Liverpool
    (England, Premier League. The match is scheduled for 05.03.2026.)
    Ends: 05/03/26 (14:30 pm) GMTย 
    ย 
    Requirements:
    Guess correctly 7ย questions that are posted on the poll below. To have a valid entry, fill out the form below. HERE
    Each category will be scored individually, and the total score will be calculated by adding them all together.
    ย 
    Tips &ย Terms & Conditions:
    Points are awarded based on the number of points next to the questions; all correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7ย guesses. 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 form first will have an 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 the match 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. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. 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!
  16. Fire
    Taufeeqkhan got a reaction from KaiZidan in Something coming to Stake Community Forums... โ€‹๐Ÿคซโ€‹   
    Gift ๐ŸŽย ย 
    Stake I'd.ย  Taufeeqkhanย 
  17. Fire
    Taufeeqkhan got a reaction from KaiZidan in โ€‹ ๐Ÿ†ย Stake x Team Vitality PC Giveawayย ๐ŸŽฎ โ€‹   
    Stake I'd:ย  Taufeeqkhanย 
    ย 
    ย 
  18. Fire
    Taufeeqkhan got a reaction from zlatan61 in Weekend Stream + Giveaway   
    Please pick meย 
    Stake I'd:ย  Taufeeqkhanย 
  19. Fire
    Taufeeqkhan got a reaction from KaiZidan in ๐Ÿ† $400 Endgame Quiz ๐Ÿง    
    1. ๐Ÿฅ‡ $7,000 Crown Chase | VIP Originals ๐Ÿ‘‘
    2. 240
    3. 40x
    Stake username: Taufeeqkhanย 
  20. Fire
    Taufeeqkhan got a reaction from Sams4 in ๐Ÿ† $400 Endgame Quiz ๐Ÿง    
    1. ๐Ÿฅ‡ $7,000 Crown Chase | VIP Originals ๐Ÿ‘‘
    2. 240
    3. 40x
    Stake username: Taufeeqkhanย 
  21. Fire
    Taufeeqkhan got a reaction from DickFont in ๐Ÿ† $400 Endgame Quiz ๐Ÿง    
    1. ๐Ÿฅ‡ $7,000 Crown Chase | VIP Originals ๐Ÿ‘‘
    2. 240
    3. 40x
    Stake username: Taufeeqkhanย 
  22. Eddie
    Taufeeqkhan reacted to Jake7589 in โ€‹ ๐Ÿ†ย Stake x Team Vitality PC Giveawayย ๐ŸŽฎ โ€‹   
    @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; --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; } .fade-up { opacity:0; transform:translateY(28px); animation:fadeUp .6s ease forwards; } @keyframes fadeUp { to { opacity:1; transform:none; } } .header { text-align:center; padding:0 0 36px; background: linear-gradient(160deg, #0d2a40 0%, #071824 100%); border-radius:20px; border:1px solid #ffffff12; margin-bottom:20px; position:relative; overflow:hidden; } .header::before { content:''; position:absolute; top:-60px; left:50%; transform:translateX(-50%); width:340px; height:340px; background: radial-gradient(circle, #FFB80018 0%, transparent 70%); animation: pulse-glow 4s ease-in-out infinite; pointer-events:none; } @keyframes pulse-glow { 0%,100% { opacity:.6; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.15); } } .hero-img-wrap { border-radius:20px 20px 0 0; overflow:hidden; border-bottom:1px solid #FFB80033; } .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(255,184,0,.22); background:rgba(255,184,0,.08); color:var(--gold); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; } .header h1 { font-size:34px; font-weight:900; line-height:1.1; letter-spacing:-.03em; 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:10px; } @keyframes shimmer { to { background-position:200% center; } } .ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:14px; } .ends-label strong { color:#fff; } .countdown-wrapper { margin:10px 0 22px; } .countdown-wrapper iframe { border-radius:8px; } .header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 14px; line-height:1.7; } .cta-main { display:inline-block; padding:16px 36px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:16px; font-weight:800; text-decoration:none !important; border-radius:12px; transition:transform .2s, box-shadow .2s; position:relative; overflow:hidden; box-shadow:0 4px 20px #FFB80044; margin-top:8px; } .cta-main::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.25) 50%,transparent 70%); transform:translateX(-100%); transition:transform .5s; } .cta-main:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; text-decoration:none !important; } .cta-main:hover::after { transform:translateX(100%); } .prize-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:16px; } .prize-card { background:var(--surface); border-radius:16px; padding:22px 14px; 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; --glow:#FFB80018; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.blue { border-color:#0079ff33; --glow:#0079ff14; } .prize-card.blue: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,transparent) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:10px; right:12px; font-size:20px; animation:float 3s ease-in-out infinite; } @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} } .prize-amount { font-size:32px; font-weight:900; line-height:1; margin-bottom:5px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.blue .prize-amount { color:#0079ff; } .prize-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:12px; 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; } .grid { display:grid; grid-template-columns:1.1fr .9fr; gap:16px; margin-bottom:16px; } .section { background:var(--surface); border-radius:16px; padding:24px; border:1px solid #ffffff0d; transition:border-color .3s, box-shadow .3s; } .section:hover { border-color:#0079ff33; box-shadow:0 4px 24px #0079ff0d; } .section-tag { display:inline-block; margin-bottom:10px; color:var(--gold); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; } .section h2 { font-size:22px; font-weight:900; margin-bottom:8px; } .panel-intro { color:var(--muted); font-size:14px; margin-bottom:18px; } .spec-list { display:flex; flex-direction:column; gap:10px; list-style:none; padding:0; } .spec-list li { display:flex; align-items:center; gap:12px; background:var(--primary); border-radius:12px; padding:12px 16px; border:1px solid #ffffff0a; color:#b0cee4; font-size:14px; transition:background .2s, border-color .2s, transform .2s; cursor:default; } .spec-list li:hover { background:#0a2236; border-color:#FFB80044; transform:translateX(6px); } .spec-list li::before { content:'โœ“'; min-width:22px; height:22px; border-radius:50%; background:var(--gold); color:#071824; font-weight:900; font-size:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .steps { display:flex; flex-direction:column; gap:12px; } .step { display:grid; grid-template-columns:48px 1fr; gap:14px; padding:14px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid #ffffff0a; transition:border-color .25s, transform .25s; } .step:hover { border-color:#0079ff44; transform:translateX(4px); } .step-no { width:48px; height:48px; border-radius:12px; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:900; transition:transform .25s, box-shadow .25s; } .step:hover .step-no { transform:scale(1.1); box-shadow:0 0 0 5px rgba(255,184,0,.1); } .step-title { margin:0 0 4px; color:var(--text); font-size:15px; font-weight:700; } .step-text { margin:0; color:var(--muted); font-size:13px; } .step-text a { color:var(--blue); text-decoration:none; } .step-text a:hover { text-decoration:underline; } .step-text strong { color:#fff; } .clean-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; } .clean-list li { display:flex; align-items:center; gap:12px; background:var(--primary); border-radius:12px; padding:12px 16px; border:1px solid #ffffff0a; color:#b0cee4; font-size:14px; line-height:1.5; transition:background .2s, border-color .2s, transform .2s; cursor:default; } .clean-list li:hover { background:#0a2236; border-color:#0079ff44; transform:translateX(6px); } .clean-list li::before { content:''; min-width:7px; width:7px; height:7px; border-radius:999px; background:var(--gold); flex-shrink:0; } .clean-list li span { display:inline; } .clean-list li strong { color:#FFB800; } .clean-list li a { color:var(--blue); } .alert { 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; } .alert: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%; } } .terms-header { text-align:center; margin:8px 0 14px; } .terms-header h2 { font-size:22px; font-weight:900; } .terms-header p { color:var(--muted); font-size:13px; margin-top:6px; } 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 ol, .terms-body ul { padding-left:20px; } .terms-body li { margin-bottom:8px; } .terms-body a { color:var(--blue); } .terms-body ul li { list-style:disc; } .footer-note { margin-top:16px; text-align:center; color:var(--muted); font-size:13px; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} .d4{animation-delay:.29s} .d5{animation-delay:.37s} .d6{animation-delay:.45s} .d7{animation-delay:.53s} .d8{animation-delay:.61s} @media(max-width:600px){ .prize-row { grid-template-columns:1fr; } .grid { grid-template-columns:1fr; } .header h1 { font-size:26px; } } Exclusive Giveaway Stake x Team Vitality
    PC Giveaway
    Ends: 25/4/2026 @ 1:00 AM GMT
    We're teaming up with Team Vitality to give 5 lucky forum members the chance to win exclusive, one-of-a-kind custom PCs ๐ŸŽฎ
    Each PC has been personally customized by a Team Vitality player, making every build unique ๐ŸŽจ
    Just sign up to the Stake Community forums, leave your Stake username below, and you're in the running to win one of these insane custom rigs ๐Ÿ’ป
    ๐Ÿ–ฅ๏ธ Join the Community ๐Ÿ† 5x Custom PCs Up for grabs ๐ŸŽฎ 1 Per Winner Unique build each โšก RTX 5070 Ti Inside each rig ๐Ÿ’ก Leave your Stake username below to verify your entry How To Enter Two simple steps
    Complete both steps to be eligible for a custom PC.
    1 Create or log in to your account
    Have an existing account or sign up at stakecommunity.com.
    2 Reply with your Stake username
    Post your Stake username in this thread to confirm your entry.
    PC Specs What's inside
    Every custom PC is built with these components.
    AMD Ryzen 7 7800X3D Asus RTX 5070 Ti 32GB Silicon Power XPOWER Storm 6000MHz RGB C36 (2ร—16GB) Asus B850M AYW Gaming Wi-Fi โ€” DDR5 750W Inwin 80+ Gold Requirements Before you enter
    Create or have an existing account on Stake Community Reply to this thread with your Stake username Must use the same email address for your Stake Community account and Stake account Stake.com users only โ€” Bronze VIP or above KYC Level 2 verification required Prize Distribution How the prize works
    5 custom PCs will be awarded โ€” one per winner Each PC has been personally customized by a Team Vitality player Winners are selected at random from all eligible entries Prize is a physical good โ€” not paid in cryptocurrency or Stake Vault credit PC will be shipped directly to the winner's nominated address at Stake's cost Winners must respond within 7 days of notification or the prize may be forfeited โš ๏ธ Don't miss out! Stay tuned for the official winner announcement. You must respond within 7 days of being contacted โ€” failure to respond may result in forfeiture of the prize. โ€ผ๏ธ Stake.com users only โ€ผ๏ธ Terms of Service โ€” Competition
    For full Terms of Service, expand below.
    ๐Ÿ“„ Full Terms & Conditions โ€” click to expand This competition ("Stake x Team Vitality PC Giveaway") is published by Stake, which operates stake.com, and is subject to the Stake Terms and Conditions and the Stake 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 The Prize
    Winners receive one (1) custom-built PC supplied by Aftershock PC. The prize is a physical good โ€” not paid in cryptocurrency or credited to your Stake Vault. A total of five (5) custom-built PCs are available. Each winner receives one (1) PC only. The prize is non-transferable and may only be awarded to the verified winner. The PC will be shipped to the winner's nominated delivery address at Stake's cost. If delivery is not reasonably practicable due to shipping restrictions or legal limitations, Stake reserves the right to substitute the prize with one of equal or greater value. Winners are solely responsible for all taxes, duties, or fees arising from receipt of the prize. Winner Notification
    Winners will be contacted via the email address linked to both their Stake Community and Stake accounts. If a winner does not respond within seven (7) days of notification, the prize may be forfeited and reallocated at Stake's discretion. Winners may be required to provide their full legal name and shipping address to receive the prize. Unless confirmed otherwise, prizes will be delivered within fourteen (14) days of the competition ending. 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 (forum moderators are not excluded) Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Must use the same email address for both your Stake Community and Stake accounts Entry
    Eligible users registered on the Stake Community Forum prior to the competition start date will be automatically entered. No further action is required. Only one (1) entry per person. Multiple accounts or attempts to circumvent the entry mechanism will result in disqualification. Winners are selected at random from all eligible entrants. Stake's Reserved Rights
    To amend the Rules at any time To cancel the Competition at any time To disqualify any entrant suspected of misusing the entry process To verify the nominated account for prize delivery Stake may use the winner's first name and general prize details for promotional purposes unless the winner objects in writing in advance General
    The prize is supplied by Aftershock PC. Stake makes no warranties regarding the quality or performance of the prize. Stake is not liable for lost, incomplete, or delayed entries or notifications due to technical issues outside its control. This competition is void where prohibited by law and governed by the laws applicable to the Stake Terms and Conditions. Please read all conditions carefully before entering.
  23. Ethereum
    Taufeeqkhan reacted to Fhziggy in Looking for free rolls   
    Would love to get in some free roll poker games hmu
  24. Ethereum
    Taufeeqkhan reacted to Aerena09 in ๐Ÿงฉ The Missing Piece ๐Ÿงฉ   
    Imagine having everything in life, success, money, and recognition, but still carrying one regretโ€ฆโœจ
    Whatโ€™s that one thing you werenโ€™t able to achieve? ๐Ÿค”
    Share your story and enlighten us with your life experience. ๐Ÿ’ซ
  25. Ethereum
    Taufeeqkhan reacted to DragoslavP in โ›น๏ธโ€‹Stake Matchday Madnessโ€‹ Week 34โ€‹โ›น๏ธ   
    โ›น๏ธStake Matchday Madnessโ›น๏ธ



    - Round 34 -ย Minnesota Timberwolves - Denver Nuggets
    (USA, NBA. The match is scheduled for 26.04.2026.)
    Ends: 26/04/26 (12:30 am) GMTย 
    ย 
    Requirements:
    Guess correctly 7ย questions that are posted on the poll below. To have a valid entry, fill out the form below. HERE
    Each category will be scored individually, and the total score will be calculated by adding them all together.
    ย 
    Tips &ย Terms & Conditions:
    Points are awarded based on the number of points next to the questions; all correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7ย guesses. 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 form first will have an 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 the match 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. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. 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!
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use