Jump to content

ivded

Member
  • Posts

    264
  • Joined

  • Last visited

Reputation Activity

  1. Doge - Cool
    ivded got a reaction from perlnecrohac in 💰[$100,000] Football Raffle ⚽️   
    sport:595664477
  2. Fire
    ivded reacted to Jake7589 in 💰[$100,000] Football Raffle ⚽️   
    Yes it does!
  3. Hmm
    ivded reacted to TheBoss10 in 💰[$100,000] Football Raffle ⚽️   
    Bet ID Will Be Posted After Few Days
  4. Pepe - Excited
    ivded 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
  5. Ethereum
    ivded got a reaction from Rumadjiii in Bet ID Prediction: June❓   
    Bet ID: 491,992,106,234
    ivded
  6. Eddie
    ivded got a reaction from AK2128 in 💰 [$3,000] Challenge Chase June - Week 1 🏆   
    casino:481225147482
    casino:481227048030
    casino:481227597586
  7. Easy
    ivded reacted to zuxel in $2,000 Guess the slot!   
    casino:479660968898
  8. Fire
    ivded got a reaction from MdSHBiR247 in 💰$3,000 Royal Club of Originals | Hilo 🃏   
    casino:479644562002
  9. Fire
    ivded got a reaction from Jackhackmax in Bet ID Prediction: May❓   
    Bet ID: 479,336,815,879
    ivded
  10. Fire
    ivded got a reaction from Ladea in 💰$3,000 Royal Club of Originals | Hilo 🃏   
    casino:479644562002
  11. Pepe - Love
    ivded reacted to NemanjaPi in $5000 - Choose Your Weapon   
    :root{ --bg:#07111f; --card:rgba(10,20,38,0.75); --line:rgba(255,255,255,0.10); --text:#f5f7fb; --muted:#a7b4c9; --gold:#f7c948; --blue:#60a5fa; --red:#ff6b6b; --green:#3dd598; --shadow:0 20px 60px rgba(0,0,0,0.35); --radius:22px; } .dropdown-card{ margin-top:20px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .rules-list li:hover{ transform:translateX(6px); background:rgba(247,201,72,0.06); border:1px solid rgba(247,201,72,0.35); box-shadow:0 10px 24px rgba(0,0,0,0.25); color:#ffffff; } body{ margin:0; font-family:Inter,Arial; background:linear-gradient(160deg,#040913,#07111f,#09182a); color:var(--text); } .wrap{ max-width:1100px; margin:20px auto; padding:20px; } .hero{ background:linear-gradient(135deg,rgba(247,201,72,0.10),transparent), var(--card); border:1px solid var(--line); border-radius:28px; padding:28px; box-shadow:var(--shadow); } .badge{ display:inline-block; padding:6px 14px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,0.04); font-size:13px; margin-bottom:10px; } h1{ font-size:42px; margin:10px 0; } .gold{color:var(--gold);} .lead{ color:var(--muted); line-height:1.6; max-width:800px; } /* WEAPON GRID */ .weapons{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px; } .weapon{ background:rgba(255,255,255,0.03); border:1px solid var(--line); border-radius:20px; padding:18px; transition:0.25s ease; position:relative; overflow:hidden; } .weapon:hover{ transform:translateY(-6px); border-color:rgba(247,201,72,0.3); box-shadow:0 20px 40px rgba(0,0,0,0.35); } .weapon h2{ margin:0 0 8px; font-size:18px; } .weapon .tag{ display:inline-block; font-size:12px; padding:4px 10px; border-radius:999px; margin-bottom:10px; border:1px solid var(--line); } .dagger{color:#3dd598;} .sword{color:#60a5fa;} .hammer{color:#ff6b6b;} .weapon strong{ display:block; font-size:22px; color:var(--gold); margin:6px 0; } .weapon p{ color:var(--muted); font-size:14px; line-height:1.5; } /* RULES */ .rules{ margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:16px; } .card{ background:rgba(255,255,255,0.03); border:1px solid var(--line); border-radius:22px; padding:20px; } .card h3{ margin-top:0; } .rule{ margin-bottom:10px; color:var(--muted); font-size:14px; } .rule strong{ color:var(--text); } /* CTA */ .cta{ margin-top:20px; padding:18px; border-radius:20px; background:linear-gradient(135deg,rgba(247,201,72,0.10),rgba(255,255,255,0.03)); display:flex; justify-content:space-between; align-items:center; } .btn{ padding:12px 18px; background:linear-gradient(135deg,#f7c948,#ffd76a); color:#0b1424; font-weight:700; border-radius:12px; text-decoration:none; } @media(max-width:900px){ .weapons{grid-template-columns:1fr;} .rules{grid-template-columns:1fr;} } ⚔️ Stake Arena Event Choose Your Weapon — Pick Your Path to Gold
    In this arena, every warrior chooses their fate. High risk, high reward,  but only one path will lead to victory.
    May 24, 2026 -  May 31, 2026
    (12 pm UTC)
    #Dagger 🗡️ Golden Dagger
    60x Target $500 prize pool split among all Dagger warriors. Fast and efficient path.
    #Sword ⚔️ Silver Sword
    120x Target $1,500 prize pool split among Sword users. Balanced risk and reward.
    #Warhammer 🔨 Mythic Warhammer
    500x Target $3,000 prize pool split among legends. Extreme risk, massive reward.
    📜 Rules
    1. Choose only one weapon (Your initial choice does not define your final goal ,you can edit the post at any time if you decide to switch to a harder pool.) 2. Minimum bet $0.20 (in any currency). 3. Only bets after post count 4. Bets must have been made after 24/05/2026 - 12 PM (UTC). 📝 How to Enter
    Post your weapon Bet ID in one message. Example:  - Bet ID: 123456789 !!Your initial choice does not define your final goal , you can edit the post at any time if you decide to switch to a harder pool.!! 🎯 Weapon Slot Mapping
    🗡️ Golden Dagger (60x)
    Only on Stake Collection
    Fast-hit zone - low risk, high frequency multiplier potential. ⚔️ Silver Sword (120x)
    Pocket Play — Bank Blast
    Balanced volatility - mid-tier grind with stronger payout ceiling. 🔨 Mythic Warhammer (500x)
    Shady Lady — Sheeple
    Extreme volatility - legendary tier, highest risk / highest reward. Terms & Conditions — click to expand Bet must have been made after 24/05/2026 - 12 PM (UTC). 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.
  12. Fire
    ivded got a reaction from MdSHBiR247 in 🥇 $7,000 The Return of the King | VIP Slots 🎰   
    casino:478128118785
  13. Pepe - Love
    ivded reacted to Jake7589 in 💰[$2,500] ​Challenge Chase May - Week 2 🎰   
    We have our winners!
    Congratulations to the following randomly selected players. @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; } .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; } } .winner-banner { text-align:center; padding:40px 28px 36px; margin-bottom:20px; } .winner-banner h1 { margin-bottom:10px; } .winner-banner p { max-width:480px; margin:0 auto; } .winning-slot { display:flex; align-items:center; justify-content:center; gap:14px; background: linear-gradient(135deg, #FFB80018, #FFB80008); border:1px solid #FFB80055; border-radius:16px; padding:20px 24px; margin-bottom:20px; position:relative; overflow:hidden; transition:box-shadow .3s; } .winning-slot:hover { box-shadow:0 0 40px #FFB80022; } .winning-slot::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,184,0,.08),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } .slot-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; font-weight:700; } .slot-name { font-size:28px; font-weight:900; color:#FFB800; animation: count-pulse 2.5s ease-in-out infinite; } @keyframes count-pulse { 0%,100% { text-shadow:0 0 0 #FFB800; } 50% { text-shadow:0 0 20px #FFB80077; } } .slot-icon { font-size:36px; animation:float 3s ease-in-out infinite; } @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} } .claim-wrap { text-align:center; margin-bottom:20px; } .claim-btn { 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; } .claim-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; } .claim-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; text-decoration:none !important; } .claim-btn:hover::after { transform:translateX(100%); } .claim-note { font-size:12px; color:var(--muted); margin-top:10px; } .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:18px; } .winners-list { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:13px 16px; background:var(--primary); border-radius:12px; border:1px solid #ffffff0a; transition:background .2s, border-color .2s, transform .2s; cursor:default; } .winner-row:hover { background:#0a2236; border-color:#FFB80044; transform:translateX(6px); } .winner-left { display:flex; align-items:center; gap:12px; } .winner-rank { width:28px; height:28px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:14px; font-weight:600; color:var(--text); } .winner-prize { font-size:14px; font-weight:800; color:#FFB800; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} .d4{animation-delay:.29s} @media(max-width:480px){ .winner-banner h1 { font-size:24px; } .slot-name { font-size:22px; } }
    🎁 Claim Your Reward Link expires 15/6/2026 — claim before it's gone!
    Winners 10 Lucky Winners
    1 ivded $250 2 Baderboo $250 3 coyote18 $250 4 Papatrappa1 $250 5 danieltocha $250 6 EvaFonda $250 7 WannWoWie $250 8 Chaosdapa $250 9 bataviala738 $250 10 cauchuquayhu $250
  14. Pepe - Love
    ivded reacted to StefanNl in [16.05.2026.] Originals Challenge   
    Game 1
    ivded                      casino:476609276315 EricaMeyer              casino:476609537266 oussama3651          casino:476609929664 CNO7                      casino:476610173454 arrruuuuu                casino:476610151359
    Game 2
    DrillEnjoyer                       casino:476612292787 Vvioiyt228                         casino:476613841841 AxelMze17                        casino:476614249255 Soranith                            casino:476615944641 wangisekali                       casino:476616957319  
    Game 3
    Hasby23                                      casino:476622669878 Haspaky                                      casino:476623505172 gvadelupio777                            casino:476625023814 Vanesaa3837                               casino:476626217190 poky1084                                    casino:476626264504  
    You can claim your prizes here: https://playstake.fans/bonus?code=OriginalsChallenge16052026ivp4
     
  15. Fire
    ivded got a reaction from sahilkumar2405 in 💰[$1,000] Bonus Clash: Yokai vs Solar Girl 🥊   
    Solar Gril
    casino:473690775147
  16. Pepe - Love
    ivded reacted to Jake7589 in 💰[$2,000 USD] Mt. Eddie 🧊   
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #050f1a; --gold: #FFB800; --blue: #0079ff; --ice: #7dd4fc; --ice-soft: rgba(125,212,252,0.12); --surface: #081624; --text: #e0eef8; --muted: #7fa8c4; } * { margin:0; padding:0; box-sizing:border-box; } body { background: linear-gradient(180deg, #050f1a 0%, #071824 60%, #050f1a 100%); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; overflow-x: hidden; } /* ── SNOWFLAKES ── */ .snowflakes { position:fixed; inset:0; pointer-events:none; z-index:0; overflow:hidden; } .snowflake { position:absolute; top:-20px; color:#fff; font-size:1em; opacity:0; animation: snowfall linear infinite; } @keyframes snowfall { 0% { transform:translateY(0) rotate(0deg); opacity:.7; } 100% { transform:translateY(110vh) rotate(360deg); 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, #0a1f30 0%, #050f1a 100%); border-radius:20px; border:1px solid rgba(125,212,252,0.2); margin-bottom:20px; position:relative; overflow:hidden; box-shadow: 0 0 60px rgba(125,212,252,0.06); } .header::before { content:''; position:absolute; top:-60px; left:50%; transform:translateX(-50%); width:400px; height:400px; background: radial-gradient(circle, rgba(125,212,252,0.1) 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); } } .hero-img-wrap { border-radius:20px 20px 0 0; overflow:hidden; border-bottom:1px solid rgba(125,212,252,0.2); } .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(125,212,252,0.3); background:rgba(125,212,252,0.08); color:var(--ice); 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; background: linear-gradient(90deg, #7dd4fc, #bfefff, #7dd4fc); background-size:200%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; animation: shimmer 3s linear infinite; margin-bottom:6px; } @keyframes shimmer { to { background-position:200% center; } } .ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:14px; } .ends-label strong { color:#fff; } .countdown-wrapper { margin:10px 0 22px; } .countdown-wrapper iframe { border-radius:8px; } .header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 14px; line-height:1.7; } /* ── SINGLE CTA ── */ .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #7dd4fc, #38bdf8); color:#040d14; font-size:17px; 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 rgba(125,212,252,0.35); margin-top:8px; } .play-btn::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.3) 50%,transparent 70%); transform:translateX(-100%); transition:transform .5s ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px rgba(125,212,252,0.5); 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:#FFB80044; --glow:#FFB80018; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.ice { border-color:rgba(125,212,252,0.3); --glow:rgba(125,212,252,0.08); } .prize-card.ice:hover { border-color:rgba(125,212,252,0.7); box-shadow:0 12px 40px rgba(125,212,252,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:#FFB800; } .prize-card.ice .prize-amount { color:#7dd4fc; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#6a90a8; margin-top:4px; } .pill { background:rgba(125,212,252,0.08); border:1px solid rgba(125,212,252,0.25); border-radius:40px; padding:10px 20px; text-align:center; font-size:13px; font-weight:600; color:#7dd4fc; margin-bottom:18px; transition:background .3s, border-color .3s; } .pill:hover { background:rgba(125,212,252,0.14); border-color:rgba(125,212,252,0.45); } /* ── 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(125,212,252,0.2); box-shadow:0 4px 24px rgba(125,212,252,0.05); } .section-title { font-size:12px; font-weight:700; color:var(--ice); 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, #38bdf8, #0079ff); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; color:#fff; flex-shrink:0; transition:transform .25s, box-shadow .25s; } .step:hover .step-num { transform:scale(1.15); box-shadow:0 0 0 6px rgba(125,212,252,0.15); } .step-text { font-size:15px; color:#b0cee4; 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 #ffffff0a; transition:background .25s, border-color .25s, transform .25s; cursor:default; } .req-item:hover { background:#081624; border-color:rgba(125,212,252,0.25); transform:translateX(6px); } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#b0cee4; } .req-text strong { color:#7dd4fc; } /* ── PRIZE POOL ── */ .pool-total { text-align:center; padding:22px; background:linear-gradient(135deg,rgba(125,212,252,0.08),rgba(125,212,252,0.02)); border:1px solid rgba(125,212,252,0.25); border-radius:14px; margin-bottom:16px; transition:box-shadow .3s; } .pool-total:hover { box-shadow:0 0 40px rgba(125,212,252,0.12); } .pool-total .amount { font-size:52px; font-weight:900; color:#7dd4fc; animation: count-pulse 2.5s ease-in-out infinite; } @keyframes count-pulse { 0%,100% { text-shadow:0 0 0 #7dd4fc; } 50% { text-shadow:0 0 24px rgba(125,212,252,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 #ffffff0a; font-size:14px; transition:background .2s, border-color .2s; } .dist-item:hover { background:#081624; border-color:rgba(125,212,252,0.2); } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#7dd4fc; font-weight:700; } /* ── NOTICE ── */ .notice { background:rgba(255,107,0,0.06); border:1px solid rgba(255,107,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(255,107,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(125,212,252,0.06); border:1px solid rgba(125,212,252,0.25); border-radius:12px; color:#7dd4fc; 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(125,212,252,0.15); } .stake-badge::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(125,212,252,0.1),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } /* ── TERMS ── */ details { background:var(--primary); border:1px solid #ffffff0d; border-radius:14px; overflow:hidden; transition:border-color .3s; } details:hover { border-color:rgba(125,212,252,0.2); } 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:#7dd4fc; } 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:#7dd4fc; 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:#7dd4fc; } .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;} } ❄ ❅ ❆ ❄ ❅ ❄ ❆ ❅ ❄ ❆ ❄️ Community Competition Mt. Eddie
    Competition ends: 18/5/2026 @ 1:00 AM GMT
    Eddie has travelled into the coldest regions in search of the fabled ICEMAN. Unfortunately, he has run out of oxygen due to the ongoing war in the Arctic Strait.
    To save him, we MUST play Ice Kingdom by Uppercut and hit the target multiplier so more oxygen can be delivered via drones.
    Target: 15x or above
    ❄️ Play Now 🏆 $2,000 Prize Pool 🥈 $200 × 10 Winners ❄️ You must hit the target multiplier on Ice Kingdom 📋 How To Enter 1 Play Ice Kingdom on Stake.com 2 Hit 15x or above with a $0.20 USD bet on each game 3 Copy your Bet IDs after winning your bets 4 Reply to this thread with your Bet IDs to enter ✅ Requirements 🎮 Bets must be from Ice Kingdom 💵 Minimum bet amount: $0.20 USD 📈 Minimum multiplier: 15x or above 💬 Reply to this thread with your Bet IDs 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $2,000 Total Prize Pool 🥈 10 × Winners$200 each 👥 Total Winners10 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
  17. Fire
    ivded got a reaction from Robbabillion79 in Bet ID Prediction: May❓   
    Bet ID: 479,336,815,879
    ivded
  18. Eddie
    ivded got a reaction from Ladea in 💰$3,000 Royal Club of Originals | Limbo 🃏   
    casino:475106034918
  19. Pepe - Popcorn
    ivded reacted to NemanjaPi in $8,000 The Multiplier Run 💵   
    @keyframes pulse-gold {0%,100%{box-shadow:0 0 0 0 rgba(247,201,72,0)} 50%{box-shadow:0 0 18px 4px rgba(247,201,72,0.28)}} @keyframes pulse-volt {0%,100%{box-shadow:0 0 0 0 rgba(0,229,255,0)} 50%{box-shadow:0 0 22px 6px rgba(0,229,255,0.3)}} @keyframes shimmer {0%{background-position:-200% center} 100%{background-position:200% center}} @keyframes float-up {0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)}} @keyframes bar-fill {from{width:0} to{width:var(--w)}} @keyframes scanline {0%{top:-100%} 100%{top:200%}} @keyframes spark {0%,100%{opacity:0;transform:scale(0)} 50%{opacity:1;transform:scale(1)}} @keyframes glow-border {0%,100%{border-color:rgba(0,229,255,0.3)} 50%{border-color:rgba(0,229,255,0.7)}} :root { --g:#f7c948; --v:#00e5ff; --card:rgba(8,16,32,0.88); --line:rgba(255,255,255,0.10); --tx:#f2f5fb; --mu:#a7b4c9; } *{box-sizing:border-box;margin:0;padding:0} .pr{font-family:var(--font-sans,sans-serif);color:var(--tx);max-width:680px;overflow:hidden} .glass{ border:1px solid var(--line);border-radius:26px;padding:26px;margin-bottom:18px; background:linear-gradient(135deg,rgba(247,201,72,0.06) 0%,transparent 40%), linear-gradient(225deg,rgba(0,229,255,0.05) 0%,transparent 40%), var(--card); position:relative;overflow:hidden; } .glass::before{ content:'';position:absolute;inset:0;border-radius:26px;pointer-events:none; background:linear-gradient(180deg,rgba(255,255,255,0.04) 0%,transparent 60%); } .scanline{ position:absolute;left:0;width:100%;height:60px;pointer-events:none; background:linear-gradient(180deg,transparent,rgba(0,229,255,0.03),transparent); animation:scanline 4s linear infinite;z-index:1; } .hero-wrap{position:relative} .badge-pill{ position:absolute;top:0;right:0;padding:9px 16px; border-radius:999px;border:1px solid rgba(0,229,255,0.45); background:rgba(0,229,255,0.07);color:#e0fdff;font-size:13px;font-weight:700; animation:glow-border 2.5s ease-in-out infinite; } .title-main{ font-size:27px;font-weight:700;text-align:center;margin-bottom:6px;padding-top:4px; background:linear-gradient(90deg,var(--g),#fff 50%,var(--v)); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; background-size:200%;animation:shimmer 4s linear infinite; } .subtitle{color:var(--mu);font-size:14px;text-align:center;margin-bottom:18px} .desc{color:var(--mu);font-size:13.5px;text-align:center;line-height:1.65} .sec-title{ font-size:20px;font-weight:700;text-align:center;margin-bottom:16px; color:var(--g);letter-spacing:0.3px; } .level-ladder{display:flex;flex-direction:column;gap:9px;margin-top:20px;position:relative;z-index:2} .level-row{ display:flex;align-items:stretch;border-radius:16px;overflow:hidden; border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.025); transition:transform .2s ease,border-color .2s ease,background .2s ease;cursor:default; position:relative; } .level-row::after{ content:'';position:absolute;inset:0;opacity:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.03),transparent); transition:opacity .3s;pointer-events:none; } .level-row:hover{transform:translateX(6px) translateY(-1px);background:rgba(255,255,255,0.04)} .level-row:hover::after{opacity:1} .l1:hover{border-color:rgba(247,201,72,0.5);box-shadow:0 4px 20px rgba(247,201,72,0.12)} .l2:hover{border-color:rgba(247,180,72,0.5);box-shadow:0 4px 20px rgba(247,168,72,0.10)} .l3:hover{border-color:rgba(247,140,72,0.5);box-shadow:0 4px 20px rgba(247,130,72,0.10)} .l4:hover{border-color:rgba(247,90,72,0.5);box-shadow:0 4px 20px rgba(247,90,72,0.10)} .l5{animation:glow-border 2.5s ease-in-out infinite} .l5:hover{border-color:rgba(0,229,255,0.7)!important;box-shadow:0 4px 24px rgba(0,229,255,0.2)} .lvl-badge{ min-width:58px;display:flex;flex-direction:column;align-items:center;justify-content:center; padding:14px 10px;font-weight:700;font-size:13px;flex-shrink:0; } .lvl-num{font-size:24px;font-weight:700;line-height:1} .lvl-lbl{font-size:9px;opacity:.6;margin-top:2px;text-transform:uppercase;letter-spacing:.5px} .lvl-body{flex:1;padding:13px 16px} .lvl-name{font-size:15px;font-weight:700;margin-bottom:3px} .lvl-range{font-size:12px;color:var(--mu);margin-bottom:8px} .lvl-bar-wrap{background:rgba(255,255,255,0.07);border-radius:99px;height:6px;overflow:hidden} .lvl-bar{height:100%;border-radius:99px;animation:bar-fill .9s cubic-bezier(.4,0,.2,1) both} .lvl-prize{ display:flex;flex-direction:column;align-items:center;justify-content:center; padding:14px 18px;font-weight:700;border-left:1px solid rgba(255,255,255,0.06); min-width:80px;flex-shrink:0; } .prize-amt{font-size:17px;font-weight:700} .prize-lbl{font-size:10px;opacity:.55;margin-top:1px;text-transform:uppercase;letter-spacing:.4px} .l1 .lvl-badge{background:rgba(247,201,72,0.11);color:var(--g);border-right:1px solid rgba(247,201,72,0.2)} .l1 .lvl-bar{background:linear-gradient(90deg,#c49a20,var(--g));--w:20%;animation-delay:.1s} .l1 .lvl-name{color:var(--g)} .l1 .prize-amt{color:var(--g)} .l2 .lvl-badge{background:rgba(247,175,72,0.11);color:#f7a848;border-right:1px solid rgba(247,175,72,0.2)} .l2 .lvl-bar{background:linear-gradient(90deg,#c47820,#f7a848);--w:40%;animation-delay:.2s} .l2 .lvl-name{color:#f7a848} .l2 .prize-amt{color:#f7a848} .l3 .lvl-badge{background:rgba(247,130,72,0.11);color:#f78048;border-right:1px solid rgba(247,130,72,0.2)} .l3 .lvl-bar{background:linear-gradient(90deg,#c44820,#f78048);--w:60%;animation-delay:.3s} .l3 .lvl-name{color:#f78048} .l3 .prize-amt{color:#f78048} .l4 .lvl-badge{background:rgba(247,80,72,0.11);color:#f76040;border-right:1px solid rgba(247,80,72,0.2)} .l4 .lvl-bar{background:linear-gradient(90deg,#c43020,#f76040);--w:80%;animation-delay:.4s} .l4 .lvl-name{color:#f76040} .l4 .prize-amt{color:#f76040} .l5 .lvl-badge{background:rgba(0,229,255,0.10);color:var(--v);border-right:1px solid rgba(0,229,255,0.25);animation:pulse-volt 2.5s ease-in-out infinite} .l5 .lvl-bar{background:linear-gradient(90deg,#009bb0,var(--v));--w:100%;animation-delay:.5s} .l5 .lvl-name{color:var(--v)} .l5 .prize-amt{color:var(--v)} .flow-row{display:flex;align-items:center;gap:0;margin-top:18px;position:relative;z-index:2} .flow-step{ flex:1;text-align:center;padding:12px 6px;border-radius:14px; background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08); font-size:12px;line-height:1.4;transition:.2s ease;cursor:default; } .flow-step:hover{background:rgba(247,201,72,0.06);border-color:rgba(247,201,72,0.3);transform:translateY(-2px)} .flow-arrow{color:var(--mu);font-size:16px;padding:0 4px;flex-shrink:0} .flow-num{font-size:18px;font-weight:700;color:var(--g);display:block;margin-bottom:4px} .flow-txt{color:var(--mu);font-size:11px} .warn-box{ background:rgba(247,90,60,0.07);border:1px solid rgba(247,90,60,0.28); border-radius:14px;padding:14px 18px;margin-top:14px;position:relative;overflow:hidden; } .warn-box::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#f76040,#c43020);border-radius:3px 0 0 3px} .warn-title{color:#f78060;font-weight:700;font-size:14px;margin-bottom:6px;padding-left:8px} .warn-body{font-size:13px;line-height:1.6;color:var(--mu);padding-left:8px} .rule-row{ display:flex;align-items:flex-start;gap:12px;padding:11px 14px;border-radius:12px; margin-bottom:8px;background:rgba(255,255,255,0.025);border:1px solid rgba(255,255,255,0.07); transition:.18s ease; } .rule-row:hover{background:rgba(247,201,72,0.05);border-color:rgba(247,201,72,0.25);transform:translateX(3px)} .rnum{ background:var(--g);color:#000;font-weight:700;font-size:11px; width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center; flex-shrink:0;margin-top:1px; } .rtxt{font-size:13px;line-height:1.6;color:var(--tx)} .prize-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:16px} .pcol{border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:.2s ease;cursor:default} .pcol:hover{transform:translateY(-4px)} .phead{padding:13px 8px;text-align:center;font-weight:700;font-size:12px;border-bottom:1px solid rgba(255,255,255,0.07)} .pbody{ padding:13px 8px;background:rgba(255,255,255,0.025); text-align:center;flex:1;display:flex;flex-direction:column; gap:5px;align-items:center;justify-content:center; } .pbody .psub{font-size:10px;color:var(--mu)} .pbody .pamt{font-size:19px;font-weight:700} .pbody .pnote{font-size:10px;color:var(--mu);opacity:.7} .p1 .phead{background:linear-gradient(160deg,rgba(247,201,72,0.20),rgba(247,201,72,0.06));color:var(--g)} .p1 .pamt{color:var(--g)} .p1:hover{box-shadow:0 8px 24px rgba(247,201,72,0.15)} .p2 .phead{background:linear-gradient(160deg,rgba(247,175,72,0.20),rgba(247,175,72,0.06));color:#f7a848} .p2 .pamt{color:#f7a848} .p2:hover{box-shadow:0 8px 24px rgba(247,175,72,0.13)} .p3 .phead{background:linear-gradient(160deg,rgba(247,130,72,0.20),rgba(247,130,72,0.06));color:#f78048} .p3 .pamt{color:#f78048} .p3:hover{box-shadow:0 8px 24px rgba(247,130,72,0.13)} .p4 .phead{background:linear-gradient(160deg,rgba(247,80,72,0.20),rgba(247,80,72,0.06));color:#f76040} .p4 .pamt{color:#f76040} .p4:hover{box-shadow:0 8px 24px rgba(247,80,72,0.12)} .p5 .phead{background:linear-gradient(160deg,rgba(0,229,255,0.15),rgba(0,229,255,0.04));color:var(--v);animation:pulse-volt 2.5s ease-in-out infinite} .p5 .pamt{color:var(--v)} .p5:hover{box-shadow:0 8px 28px rgba(0,229,255,0.22)} .enter-bar{ background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.09); border-radius:14px;padding:13px 18px;margin-top:16px; display:flex;align-items:flex-start;gap:10px;flex-wrap:wrap; transition:.2s ease;position:relative;overflow:hidden; } .enter-bar:hover{background:rgba(247,201,72,0.05);border-color:rgba(247,201,72,0.35)} .enter-bar::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--g),rgba(247,201,72,0.3));border-radius:3px 0 0 3px} .et{color:var(--g);font-size:15px;font-weight:700;flex-shrink:0;padding-left:8px} .etxt{font-size:13.5px;color:var(--tx);line-height:1.6} .dd-card{background:rgba(255,255,255,0.025);border:1px solid rgba(255,255,255,0.08);border-radius:14px;margin-top:14px;overflow:hidden} .dd-card summary{list-style:none;padding:13px 18px;cursor:pointer;outline:none;display:flex;align-items:center;justify-content:space-between;transition:.18s ease} .dd-card summary:hover{background:rgba(255,255,255,0.03)} .dd-card summary::-webkit-details-marker{display:none} .dd-title{color:var(--g);font-weight:700;font-size:15px} .dd-sub{color:var(--mu);font-size:12px} .dd-content{border-top:1px solid rgba(255,255,255,0.07);padding:14px 16px} .divider{display:flex;align-items:center;gap:10px;margin:16px 0;color:var(--mu);font-size:12px} .divider::before,.divider::after{content:'';flex:1;height:1px;background:rgba(255,255,255,0.08)} .volt-txt{color:var(--v)} .gold-txt{color:var(--g)} .tip-box{ background:rgba(0,229,255,0.05);border:1px solid rgba(0,229,255,0.2); border-radius:14px;padding:13px 16px;margin-top:14px;font-size:13px;line-height:1.6; } .tip-box strong{color:var(--v)} .pcol{border:1px solid rgba(255,255,255,0.07)}   Weekly Event 🎯 The Multiplier Run 🎯 Climb the levels. Increase the stakes. Unlock bigger rewards. A progressive betting challenge where every level unlocked earns you a share of that level's prize pool. Complete all 5 levels in strict order, the higher you climb, the greater the reward.


    Slot for this week (11 -18 May) 🎰Dragon Duel

    Minimun required bet:0.20$ 1LVL ⚡ Spark Multiplier: 100x – 499x   $800 pool 2LVL 🔥 Surge Multiplier: 500x – 999x   $1200 pool 3LVL 💥 Ignite Multiplier: 1,000x – 1,499x   $1500 pool 4LVL 🌋 Inferno Multiplier: 1,500x – 1,999x   $2000 pool 5MAX ⚡ Overdrive Multiplier: 2,000x+   $2500 pool   ⚙️ How It Works 1 Hit Level 1
    100x–499x → 2 Hit Level 2
    500x–999x → 3 Hit Level 3
    1,000x+ → 4 Hit Level 4
    1,500x+ → 5 Max Out
    2,000x+ 1 Levels must be completed in strict chronological order — Level 1 first, then 2, then 3, and so on. No skipping allowed. 2 Each qualifying bet must be placed after the previous level is completed. Bets placed out of sequence are invalid. 3 Every level you complete earns you a share of that level's own prize pool  shared among all players who reach it. ❌ Invalid progression example Hitting 3,000x before completing Level 1 will NOT count for Level 5. You must complete every level in order, the system tracks your bets chronologically. How to Enter: Reply to this topic with your Level 1 qualifying bet ID. Use the Edit option on your post to add Level 2–5 bet IDs as you progress. No need to create a new post for each level.   🏆 Prize Pool (per level): Each level has its own prize pool, split equally among all players who complete it. The further you go, the bigger the pot. Level 1
    100x–499x Split among $800 all completers Level 2
    500x–999x Split among $1200 all completers Level 3
    1,000x–1,499x Split among $1500 all completers Level 4
    1,500x–1,999x Split among $2000 all completers Level 5
    2,000x+ Split among $2500 all completers Pro tip: Even if you don't reach Level 5, every level you complete pays out. Clearing Level 1 and 2 already puts money in your pocket - the further you go the more you earn! Terms & Conditions Terms & Conditions Click to expand ▾ 1 You must be at least Bronze VIP level on our site to participate. 2 Levels must be completed in strict chronological order: Level 1 → 2 → 3 → 4 → 5. No skipping allowed under any circumstances. 3 Each qualifying bet must be placed after the previous level was completed. Out of sequence bets are automatically invalid. 4 Only level 2 KYC or higher verified users are eligible for prizes. 5 Stake employees cannot participate in official forum challenges. This restriction does not apply to moderators. 6 Only Stake.com and official Stake.com mirror site users are eligible. 7 Players using multiple accounts will be immediately disqualified. 8 Stake reserves the right to disqualify any user for promotion or account abuse, which may result in a permanent ban. 9 Allow up to 72 hours after the event closes for prize distribution. 10  Bets must have been made after 11/05/26 - (12 pm) UTC. 10 Winners will be contacted via support. Prizes are distributed as coupons, also posted as the final comment on this thread.
  20. Fire
    ivded got a reaction from MdSHBiR247 in 🥇 $7,000 The Return of the King | VIP Slots 🎰   
    casino:473012982524
  21. slot
    ivded reacted to BratislavK in $1,000 Weekend Vibes 🍹   
    ( May 8th - May 11th )
    $1,000 Weekend Vibes🍹
    Weekends are meant for relaxing, spinning your favorite slots, and enjoying the good vibes.
    To celebrate the weekend, we’re launching a simple and chill community challenge where everyone has a chance to win.
    No complicated rules.
    Just spin, enjoy the weekend, and share your best moment.
     
    How to Participate
    Play any slot on Stake Hit a multiplier of at least 200x or higher Post your Bet ID in this thread Minimum bet: $0.10 USD That’s it. Sit back, enjoy the weekend vibes, and let the wins roll in.
    Prize pool:
    $1,000 Total Prize Pool 10 winners $100 each Winners will be selected randomly from all valid entries.
    Tips & Terms & Conditions
    Bets must have been made after 08/05/2026 - (12 PM) UTC. Stake employees cannot 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. How to Enter:
    Paste your Bet ID in this thread (screenshot optional). Post only one valid Bet ID per user. Minimum bet: $0.10 USD Example Bet IDs:
     house:123456789000  casino:123456789000
  22. Pepe - Love
    ivded reacted to strela74 in Weekend Stream + Giveaway   
    Hi )) 
     
    strela74 
     
    😘
  23. Fire
    ivded got a reaction from Astar19 in $3,000 Slots Forum Challenge   
    casino:472989887490
  24. Pepe - Love
    ivded reacted to TechnoDuke in 🎰 If you had the power to change ONE thing on Stake what would it be?   
    i am changed a crashed site 
  25. Fire
    ivded got a reaction from KaiZidan in $3,000 Slots Forum Challenge   
    casino:472989887490
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use