Jump to content

Sirk23

Member
  • Posts

    215
  • Joined

  • Last visited

Reputation Activity

  1. Pepe - Sad
    Sirk23 reacted to Aldo7 in πŸ’°[$100,000] Football Raffle ⚽️   
    Let's go another raffle may not get rigged πŸ™‡β€β™‚οΈπŸ’šβ€πŸ§‘
  2. Pepe - Sad
    Sirk23 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
  3. Fire
    Sirk23 reacted to NemanjaPi in The Auction lock today or 6 June?   
    Hey @Sirk23Β 
    I didn't lock it because I'm testing a new feature that has been added on some of our old promotions similar to Matchday Madness or Points Battle. I want to see how people will adapt to it. However, as always, I will count the bids that have been made within the 48-hour timeframe, as stated in the promotional rules.

    Best regards,
    NemanjaPi.
  4. Hmm
    Sirk23 reacted to Retardedegen in $2,000 The Auction - Weekly Challenge 🎯   
    i bid 1500x
  5. Pepe - Excited
    Sirk23 reacted to daniel_xxo in $2,000 The Auction - Weekly Challenge 🎯   
    I bid 1111x
  6. Stonks
    Sirk23 reacted to NemanjaPi in πŸ₯‡ $7,000 The Return of the King | VIP Slots 🎰   
    πŸŽ‰ Congratulations πŸŽ‰
    You can claim prizes on the link below until the 23rdΒ of June!
    Top 20 winners:
    Place Username Multiplier 1 droz 75000
    2 Sirk23 75000 3 PiniaGofman 50000 4 coolbogey 33333 5 LoskiY 25000 6 Kartenstapel
    25000 7 Ryderistic 20721.6 Β  bosnian033 12500 9 chuachunkang 12500 10 GOLD7711
    12088.45 11 Florri89 12000 12 Redcap81 11401 13 daffyducky 10947.4 14 batguy 10532.7 15 Drbags 10000 16 Kelzipelzi 9992.5 17 CHiN0 9784.7 18 Jokkola1 9215.6 19 zhep 8596.6 20 wheelyboy321 7351.4 CLAIM HERE View the full list HERE
  7. Eddie
    Sirk23 reacted to BratislavK in Mid Week Chase May (13-14) Gates of Athena   
    nDo94 Dontskemthem Annichka Bossboyg Vernisaz Nerooo3 MonTenku Mushatwt Corys9 Tat40hk Edeheleh 12guek FAHRI645 Samsul6 Bosse83 Haftunatehy Mugunth234 Carlobolo Timicute droz Svetlovolosik Joaelv kosmos2 huispaaja ADanielson NackNack7 nisuryan647 Kilikka skozh Draymoment yuzuyu917 Kirara10 SvennieBanaan Musahwtty ZeroArmorTV erensvr7 ZottiderSotti LuckiestMF MehondaL Shlyapinson UBEB654 umutkara86 vlonegoat doertsch21 newuser59 nowloading semiletov77 Arsdie4427ars WannWoWie z1dd Sealedmatt sadlysnorkel GTR7589 amerikqn Polatfuat 1Capitano1 tantan25 BlondeLover quesoking domopk Lucas1A Sirk23 Lenguille organicpunk semrayc paulakseno TeslaStrate poyupuri drovert Tnew Kunto5 Didit717 Olena68S anntun Striker3573 larababic Mines5kk Ameobi kevzzz runtun798 blakjac666 Ishatwht Kartenstapel thenameisme263 NurEinenZehner mamo01LEI Nitish0202 skimzy243 littlematch nkislive BROKENBANDIT Alimhan3399 Mombasa Statti99 wheelyboy321 ricksrx19 MasMuslih jw888888 sizzlinghotx realperen LordLuhut Justin895 edxrest Guventunc yoshiko1121 Malva11 Knucks14 sigurdsun Juuuker Maik2k agyalagyula brsx CookedStake 9108807170 GUILLAUMERS ponpirasan SeeKa irlberries 02MMA pesuka33 WestiisGay markusma Baderboo InfiDaK1ng chicho089 mrbelphy chuachunkang Lewandosiki Tequitos30 topdawgjayz Paoran Mano328 quntti Gotsas fayzd
  8. Fire
    Sirk23 got a reaction from sahilkumar2405 in πŸ’°[$1,000] Bonus Clash: Yokai vs Solar Girl πŸ₯Š   
    house:474976840313Β 
    Β 
    Solar Girl
  9. Hmm
    Sirk23 reacted to GoGoGamblers in 🎯Double Down - $2000 Weekly Challenge🎯   
    casino:473444253285Β 854.05Γ—
    casino:473446396113Β 310.25Γ—
    total - 1164.3x
  10. Fire
    Sirk23 got a reaction from gajin in Weekend Stream + Giveaway   
    Sirk23
  11. Hmm
    Sirk23 reacted to GoGoGamblers in πŸ’°[$2,500] ​Challenge Chase May - Week 2 🎰   
    casino:474258247563
    casino:474248312626
    casino:474246778459
  12. Hmm
    Sirk23 reacted to NurEinentenner in 🎯Double Down - $2000 Weekly Challenge🎯   
    casino:472916266031 -Β 2.726,00Γ—
    casino:472932759719 -Β 1.213,40Γ—
    Β 
    TotalΒ 3.939,4x
  13. Bitcoin
    Sirk23 got a reaction from KaiZidan in Weekend Stream + Giveaway   
    Sirk23
  14. Fire
    Sirk23 got a reaction from KaiZidan in ⬆️⬇️ $2,000 Over or Under Challenge   
    house:470912329439
  15. Ethereum
    Sirk23 got a reaction from MdSHBiR247 in πŸ₯‡ $7,000 The Return of the King | VIP Slots 🎰   
    house:469401716853
  16. Fire
    Sirk23 got a reaction from DickFont in πŸ₯‡ $7,000 The Return of the King | VIP Slots 🎰   
    house:469401716853
  17. Claps
    Sirk23 reacted to NurEinentenner in $2,000 Double Down - Weekly Challenge 🎯   
    casino:467793572015Β  (15000x)
    casino:467196029042 ( 340,50x)
    Β 
    Total: 15340,50x
  18. Fire
    Sirk23 reacted to NemanjaPi in The Auction:Part Two! April 06-13 Payout?   
    Hey @Sirk23Β the auction,p10 and double down will be paid out tommorow,and get ready for the next week,cause all limited promos will be back on track, Β 
  19. Fire
    Sirk23 got a reaction from DeadSuccess in πŸ’°[$2,000] ​Champions Clash: Leg Two ⚽️   
    sport:559949432
  20. Fire
    Sirk23 got a reaction from gajin in Weekend Stream + Giveaway   
    Sirk23
  21. Claps
    Sirk23 got a reaction from raitx in The Auction:Part Two! April 06-13 Payout?   
    Today maybe ?Β @NemanjaPi
  22. Pepe - Stressed
    Sirk23 got a reaction from daffyducky in $2,000 Double Down - Weekly Challenge 🎯   
    house:466528002072Β  -Β 4074.70x
    casino:466784903199Β  -Β  2776.40x
  23. Pepe - Stressed
    Sirk23 reacted to daffyducky in $2,000 Double Down - Weekly Challenge 🎯   
    casino:466841106451Β 3β€―245,80Γ—
    casino:466651083270Β 4β€―664,30Γ—

    total:Β 7910.1Γ—
  24. Fire
    Sirk23 got a reaction from markusma in $2,000 Double Down - Weekly Challenge 🎯   
    house:466528002072Β  -Β 4074.70x
    casino:466784903199Β  -Β  2776.40x
  25. Fire
    Sirk23 got a reaction from Abhayspam in Weekend Stream + Giveaway   
    Sirk23
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use