Jump to content

lowkey444

Noob
  • Posts

    45
  • Joined

  • Last visited

Reputation Activity

  1. Stonks
    lowkey444 reacted to BratislavK in 🏆 $400 Endgame Quiz 🧠   
    @keyframes shimmer-text { 0% { background-position: -200% center; } 100% { background-position: 200% center; } } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } @keyframes border-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); } 50% { box-shadow: 0 0 32px 6px rgba(251,191,36,0.15); } } @keyframes star-twinkle { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } } @keyframes row-slide { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } } * { box-sizing: border-box; margin: 0; padding: 0; } body { background: #0a1520; display: flex; justify-content: center; padding: 32px 16px; min-height: 100vh; } .wrap { font-family: Arial, sans-serif; max-width: 720px; width: 100%; padding: 0 0 2rem; } .promo-image { display: block; width: 100%; border-radius: 14px; margin-bottom: 18px; animation: fadeInUp 0.5s ease both; } .top-card { background: #0b1c2a; border-radius: 18px; border: 1px solid rgba(251,191,36,0.4); padding: 32px 28px 28px; text-align: center; position: relative; overflow: hidden; margin-bottom: 18px; animation: border-glow 4s ease-in-out infinite, fadeInUp 0.5s ease both; animation-delay: 0.1s; } .star { position: absolute; width: 4px; height: 4px; background: #fbbf24; border-radius: 50%; animation: star-twinkle var(--dur, 2s) ease-in-out infinite; animation-delay: var(--delay, 0s); pointer-events: none; } .trophy { font-size: 52px; display: inline-block; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 0 16px rgba(251,191,36,0.4)); margin-bottom: 12px; position: relative; z-index: 1; } .endgame-label { display: inline-block; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.4); border-radius: 20px; padding: 4px 16px; font-size: 11px; color: #fbbf24; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; } .banner-title { font-size: 36px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 6px; position: relative; z-index: 1; } .gold-text { background: linear-gradient(90deg, #f59e0b, #fde68a, #fbbf24, #f59e0b); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer-text 3s linear infinite; } .banner-date { font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; margin-bottom: 14px; position: relative; z-index: 1; } .banner-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 520px; margin: 0 auto 18px; position: relative; z-index: 1; } .banner-desc strong { color: #fbbf24; } .badge-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; } .badge { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.28); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: rgba(251,191,36,0.9); font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s, border-color 0.2s; } .badge:hover { background: rgba(251,191,36,0.16); border-color: rgba(251,191,36,0.55); } .section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(251,191,36,0.6); text-align: center; margin-bottom: 10px; font-weight: 700; } .qa-card { background: #0f2233; border: 1px solid rgba(251,191,36,0.22); border-radius: 14px; overflow: hidden; margin-bottom: 18px; animation: fadeInUp 0.5s ease both; animation-delay: 0.2s; } .qa-head { background: rgba(5, 14, 22, 0.8); padding: 12px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(251,191,36,0.15); } .qa-head-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fbbf24; font-weight: 700; } .qa-head-dot { width: 6px; height: 6px; border-radius: 50%; background: #fbbf24; opacity: 0.7; flex-shrink: 0; } .qa-row { display: flex; align-items: center; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); gap: 18px; cursor: default; transition: background 0.22s ease; animation: row-slide 0.4s ease both; } .qa-row:last-child { border-bottom: none; } .qa-row:nth-child(1) { animation-delay: 0.1s; } .qa-row:nth-child(2) { animation-delay: 0.18s; } .qa-row:nth-child(3) { animation-delay: 0.26s; } .qa-row:hover { background: rgba(251,191,36,0.05); } .qa-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.35); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fbbf24; flex-shrink: 0; transition: background 0.22s, box-shadow 0.22s; } .qa-row:hover .qa-num { background: rgba(251,191,36,0.18); box-shadow: 0 0 12px rgba(251,191,36,0.3); } .qa-text { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; transition: color 0.22s; } .qa-row:hover .qa-text { color: rgba(255,255,255,0.95); } .prizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; } .prize-card { background: #0f2233; border: 1px solid rgba(251,191,36,0.22); border-radius: 14px; padding: 22px 18px; text-align: center; position: relative; overflow: hidden; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; animation: fadeInUp 0.5s ease both; } .prize-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(251,191,36,0.6), transparent); } .prize-card.gold { border-color: rgba(251,191,36,0.5); animation: fadeInUp 0.5s ease both, border-glow 3s ease-in-out infinite; } .prize-card:hover { transform: translateY(-5px); border-color: rgba(251,191,36,0.65); box-shadow: 0 12px 36px rgba(251,191,36,0.1); } .prize-card:nth-child(1) { animation-delay: 0.3s; } .prize-card:nth-child(2) { animation-delay: 0.4s; } .prize-emoji { font-size: 32px; display: block; margin-bottom: 10px; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 0 10px rgba(251,191,36,0.35)); } .prize-card:nth-child(2) .prize-emoji { animation-delay: 1s; } .prize-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(251,191,36,0.65); font-weight: 700; margin-bottom: 6px; } .prize-amount { font-size: 32px; font-weight: 900; color: #fbbf24; line-height: 1; margin-bottom: 5px; } .prize-sub { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.4; } .rules-bar { background: rgba(5, 14, 22, 0.7); border: 1px solid rgba(251,191,36,0.14); border-radius: 10px; padding: 13px 18px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.42); letter-spacing: 0.3px; margin-bottom: 18px; } .rules-bar strong { color: rgba(251,191,36,0.85); } .luck-bar { text-align: center; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 1px; } .luck-clover { display: inline-block; animation: float 2.2s ease-in-out infinite; margin-left: 6px; }                        
      $400 Endgame Quiz May 22nd  –  May 24th   Another month comes to an end… and this is the Endgame.
    Only those who stayed sharp throughout will make it to the finish.
    Answer our short quiz based on this month's promotions & events.
    🧠 3 Questions 🥇 $100 First Place 🎁 6 × $50 Draw 🏆 $400 Prize Pool Quiz Questions
      Answer all correctly & include your Stake username 1 What slot is featured in this week's $3,000 Slots Forum Challenge? 2 In which Stake Original game do you need to cross the road and avoid traffic? 3 What is the name of the Sports promotion where you need to win a bet with at least 10x odds by betting on at least 10 matches/selections? Prize Structure
    🥇 First Correct Answer $100 Be first. Be right. Win instantly. 🎁 Random Draw 6 × $50 All remaining correct entries enter the draw. One entry per user  ·  All answers must be correct  ·  Always include your Stake username Good luck! 🍀
  2. Stonks
    lowkey444 reacted to Nabilmat in 🏆 $400 Endgame Quiz 🧠   
    1. CTRL ALT DELETE
    2. Chicken
    3. Perfect 10
     
    Stake ID : nabilmat42 
  3. Pepe - Happy
    lowkey444 reacted to Jake7589 in ​ 🏆 Stake x Team Vitality PC Giveaway 🎮 ​   
    We have our winners!
    Congratulations to the following randomly selected players. Winners have been contacted.
     
    Thank you, everyone, for entering! 
    @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; } }
    Winners 5 Lucky Winners
    1 BangloyN - apEX's PC 2 Ryderistic - ZywOo's PC 3 jinrui - flameZ's PC 4 r3fteen - mezii's PC 5 Enigmanoishi - ropz's PC
  4. Fire
    lowkey444 got a reaction from KaiZidan in Something coming to Stake Community Forums... ​🤫​   
    Being played laptop gift
  5. Fire
    lowkey444 got a reaction from KaiZidan in Something coming to Stake Community Forums... ​🤫​   
    Where is the gifts??? I want a gift!!! 
  6. Hmm
    lowkey444 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.
  7. Pepe - Pray
    lowkey444 reacted to DragoslavP in 🏀[EuroLeague] Points Battle | Round 38 | 🏀   
    🏀POINTS BATTLE🏀


    🏆 ROUND 38🏆
    Ends: 13/04/25 @ (12 pm) GMT
     
    Requirements:
    Guess the total number of points for each of the 7 selected players. This refers to the Round 38 matches of the Turkish Airlines Euroleague. The matches are scheduled for April 17th and 18th. 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 Round 38 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!
  8. Doge - Cool
    lowkey444 got a reaction from CanadaBc in Live Chat Emojis 👀   
    💯🐊
  9. Eddie
    lowkey444 reacted to DragoslavP in 🥇 $7,000 The Return of the King | VIP Slots 🎰   
    (January 19th - January 26th)

    Ends: 26/01/26 @ (1 pm) UTC
    The Challenge
    Win the highest multiplier on any 3rd party video slot game excep t (Wheel of Happiness - Pragmatic Play) that you can. To be eligible, the minimum multiplier must be 100x or above. Feature buys are not allowed. 0.2 USD minimum bet amount (in any currency). Additional Information
    Prizes will be determined by who has a higher multiplier. The highest multiplier will take 1st place and so on. In the case of a tie, the user with a higher average bet amount will be given the advantage. In case of a tie again, the user who posted/edited their entry first will have the advantage. Tips & Terms & Conditions
    You have to be one of the VIP members on our site (at least the Bronze VIP level). Feel free to edit your posts if you get a higher multiplier, during the week. Bets must have been made after 19/01/26 - (1 pm) UTC. For payment, give us up to 72 hours from the end of the promotion. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. If you prefer to play with lower bets, you may also participate in our weekly challenge located here. The VIP challenges are more focused towards players who are looking to try their luck with higher bets. VIP slots challenge only involves 3rd party games. 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. Prize Pool distribution
    1st place - $1,200 2nd place - $600 3rd place - $400 4th place - $300 5th place - $200 6th to 10th place - $140  11th to 20th place - $60 21st place onward, eligible users will get a share in the $3,000 prize pool How to Enter
    Reply to this topic by posting your valid bet ID. The screenshot is optional.  One valid entry per user. Post only one valid bet ID. Examples of valid bet IDs: 
    - house:123456789000
    - casino:123456789000
  10. Bitcoin
    lowkey444 reacted to MladenS in 🥇 $7,000 The Return of the King | VIP Slots 🎰   
    (January 12th - January 19th)

    Ends: 19/01/26 @ (1 pm) UTC
    The Challenge
    Win the highest multiplier on any 3rd party video slot game excep t (Legend of Odin - Sidequest Studios) that you can. To be eligible, the minimum multiplier must be 100x or above. Feature buys are not allowed. 0.2 USD minimum bet amount (in any currency). Additional Information
    Prizes will be determined by who has a higher multiplier. The highest multiplier will take 1st place and so on. In the case of a tie, the user with a higher average bet amount will be given the advantage. In case of a tie again, the user who posted/edited their entry first will have the advantage. Tips & Terms & Conditions
    You have to be one of the VIP members on our site (at least the Bronze VIP level). Feel free to edit your posts if you get a higher multiplier, during the week. Bets must have been made after 12/01/26 - (1 pm) UTC. For payment, give us up to 72 hours from the end of the promotion. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. If you prefer to play with lower bets, you may also participate in our weekly challenge located here. The VIP challenges are more focused towards players who are looking to try their luck with higher bets. VIP slots challenge only involves 3rd party games. 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. Prize Pool distribution
    1st place - $1,200 2nd place - $600 3rd place - $400 4th place - $300 5th place - $200 6th to 10th place - $140  11th to 20th place - $60 21st place onward, eligible users will get a share in the $3,000 prize pool How to Enter
    Reply to this topic by posting your valid bet ID. The screenshot is optional.  One valid entry per user. Post only one valid bet ID. Examples of valid bet IDs: 
    - house:123456789000
    - casino:123456789000
  11. Pepe - Smiling
  12. Pepe - Stressed
  13. RIP
    lowkey444 reacted to Jake7589 in 💰[$2,000 USD] StakeMas Never Ends 🎅🏼   
    🎄 StakeMas Never Ends 🎅🏼
    Ends: 31/12/2025 @  1.00 AM GMT

    From the 3rd to the 31st, this thread will be running non-stop. At five random moments throughout the month, one lucky participant will be selected to win a share of $2,000.
    All you need to do is keep commenting your username throughout December for a chance to be picked!
    Remember: winners will be chosen at completely random times, so make sure to check back and drop another comment.
    Post your Stake usernames below! 🎄✨
    Requirements: 
    Reply to this thread with your Stake username Prize Pool: $2,000
    Distributed to 5 randomly selected winners who meet the above conditions. How to Enter:
    Reply to this thread with your Stake ID Include your valid Stake ID Prize pool distribution:
    Complete the challenge within the next 29 days for a shot at the prize pool. Winners are limited to 5. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3-month time period ends. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  14. Pepe - Popcorn
    lowkey444 reacted to MladenS in Bet ID Prediction: December❓   
    Bet ID Prediction: December❓
    Ends: 01/01/2026 @ (1 pm) GMT 

    Requirements:
    Submit your prediction on this thread and your Stake site username with it.
    Example:  Bet ID: 660,000,000,000
                      Username: Aleksandar Tips & Terms & Conditions:
    Entry must have been made after the commencement of this promotion - 01/12/25 - (1 pm) GMT. In case of a tie, the user who posted/edited their entry first will have the advantage. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Do not post more than one comment/entry. Please, read the Spoiler for more info. 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 mirror sites 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. 10+ Posts count on the Forum. Regular Prize Pool(s):
    1st place - $600 2nd place - $400 3rd place - $200 4th place - $100 5th place - $50 6th to 10th place - $20 Prize pool distribution:
    Prizes will be determined by who has the closest prediction. Staker with the closest prediction will take 1st place and so on. The closest 10 predictions will be awarded. How to Enter:
    Respond to this topic, with your prediction and Stake username.
  15. Litecoin
    lowkey444 reacted to Jake7589 in 💰[$1,000 USD] Challenge Chase: Hen's Night 🐔   
    🎰 Challenge Chase: Hen's Night 🐔
    Ends: 25/12/2025 @  1.00 AM GMT

    Get ready for an adventurous night out on the town on Hen's Night by Twist Gaming. Join in the fun with a few cheeky hens who are celebrating an upcoming wedding - Only on Stake.
    Join now for a chance to claim your share of the $1,000 prize pool!
    Submit a qualifying Bet ID below, and you could be one of the big winners. 💰
    PLAY HERE
     
    Requirements: 
    0.20 USD bet minimum
    100x minimum multiplier
    Reply to this thread with your Bet ID
    Prize Pool: $1,000
    Distributed to 10 randomly selected winners who meet the above conditions. How to Enter:
    Bet ID: Your bet ID here Prize pool distribution:
    Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 10. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3 month time period ends. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  16. Ooo
    lowkey444 reacted to Jake7589 in 💰[$2,000 USD] Christmas Story-time 📖   
    🎄 Christmas Story-time 📖
    Ends: 20/12/2025 @  1.00 AM GMT

    Picture this, your snuggle in-front of a cozy fireplace, ready to hear a chirstmas tale, “Tis the night before Christmas ___” 🎄
    It's your job to finish the story in the replies 👇
    Reply in the comments with your Christmas stories, and we’ll select 10 random answers to win a share of $2,000! 💰
    Drop your stories below! 👇
    Requirements: 
    Reply to this thread with your Christmas stories Include your Stake ID. To have a valid entry, fill out the form below, providing your details  HERE
    Prize Pool: $2,000
    Distributed to 10 randomly selected winners who meet the above conditions. How to Enter:
    Reply to this thread with your Christmas stories Include your Stake ID Prize pool distribution:
    Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 10. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3-month time period ends. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  17. Eddie
    lowkey444 reacted to Jake7589 in 💰[$2,000 USD] Multiplier Mania: Flaming Turkey 🦃   
    🏆 Multiplier Mania: Flaming Turkey 🦃
    Ends: 9/12/2025 @  1.00 AM GMT

    Flaming Turkey ignites the reels with fiery farmyard chaos and blazing barnyard symbols. Spin through the heat as explosive wins roast their way onto the screen! - Only on Stake 🦃
    Jump in for your chance to score a share of our $2,000 prize pool!
    Submit a qualifying Bet ID below, and you could be one of the big winners. 💰
    PLAY HERE
     
    Requirements: 
    0.50 USD bet minimum
    30x minimum multiplier
    Reply to this thread with your Bet ID
    Prize Pool: $2,000
    Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
    Bet ID: Your bet ID here Prize pool distribution:
    Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3 month time period ends. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  18. Eddie
    lowkey444 reacted to Jake7589 in 💰[$2,000 USD] Share the Christmas Spirit 🎄   
    🎄 Share the Christmas Spirit 🤝
    Ends: 9/12/2025 @  1.00 AM GMT

    Christmas is a time to celebrate the connections we’ve made throughout the year, and it’s time to appreciate those special people 🤝
    Tag a forum member you’ve become friends with, or even a random user, and we’ll choose 10 random replies to win a share of $2,000!
    Drop your shout-outs below! 🎄✨
    Requirements: 
    Reply to this thread with your shout-outs (Make sure to tag the user! You cannot tag yourself). Include your Stake ID. To have a valid entry, fill out the form below, providing your details  HERE
    Prize Pool: $2,000
    Distributed to 10 randomly selected winners who meet the above conditions. How to Enter:
    Reply with your shout-outs (Make sure to tag the user! You cannot tag yourself) Include your Stake ID Prize pool distribution:
    Complete the challenge within the next 4 days for a shot at the prize pool. Winners are limited to 10. IMPORTANT: Don’t miss out! Stay tuned for the official winner announcements so you can grab your prize before the link expires. Users will not be credited after the 3-month time period ends. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  19. Doge - Cool
    lowkey444 reacted to JessD26 in 💰[$1,000] Tell us your spooky story 📚   
    Okay... I'm not scared at all 🥲

    Congratulations to the following 20 spooky storytellers! 👻



    You can claim your prize here:
    CLAIM HERE
  20. Ooo
    lowkey444 reacted to blazin911 in $75,000 giveaway winners #224   
    I got more than 450 tickets and got no luck, that's disappointing 
  21. Ooo
    lowkey444 reacted to NatasaC in 🍭Mystery Candy Path🍭   
    🍭Mystery Candy Path🍭
    - ( August 1st - August 31th ) -

    Ends: 08/31/25 @ (10 am) GMT
     
    🍬 This month, we’re inviting you to follow the Mystery Candy Path—a magical trail where sugar sparkles, secrets swirl, and sweet surprises wait around every corner. 🍩✨

    Wander through gummy forests, caramel caves, and marshmallow meadows, where each spin could lead you closer to hidden jackpots guarded by enchanted confections. Only the most daring sweet-seekers will uncover the riches that lie beneath the sugary surface. 🍫🍓
    🎯Your mission?
    Spin your way through the most tempting candy-themed slots and take on the sweetest challenge of the month.
    Your mission is to win the highest multiplier on one of the games below:                        🔸3 Crazy Donuts
                          🔸 Sweet Fiesta Enhanced RTP
                          🔸 Sweet Bonanza
                          🔸 Sweet Punks
                          🔸 Sweet Bonanza Xmas
                          🔸 Sweet Powernudge
                          🔸 Sweet Gummy
                          🔸 Sweet Bonanza CandyLand
                          🔸 Sugar Rush
                          🔸 Sugar Twist Enhanced RTP
                          🔸 Sugar Rush Xmas
                          🔸 Sugar Rush Dice
                          🔸 Sugar Supreme Powernudge
                          🔸 Sugar Splash
                          🔸 Candy Village
                          🔸 Candy Blitz BOOM Enhanced RTP
                          🔸 Candy Trouble
                          🔸 Honey Rush
                          🔸 Honey Rush 100
                          🔸 Om Nom
    $0.2 USD minimum bet amount ( in any currency ) ℹ️ Additional Information:
    Prizes will be determined by who has a higher multiplier. In case of a tie, the user who posted their entry first will have the advantage. 📜Tips & Terms & Conditions:
    Feel free to edit your post if you get a higher multiplier during the competition. Users have to have a Forum account to be eligible. You have to be one of the VIP members on our site (at least the Bronze VIP level). Bets must have been made after 08/01/25 - (10 am) UTC. For payment, give us up to 72 hours from the end of the challenge. 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. 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 mirror sites 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 ($15,000):
    1st place - $2,500 2nd place - $2,000 3rd place - $1,500 4th place - $1,000 5th place - $800 6th place - $600 7th place - $550 8th place - $450 9th place - $350 10th place - $250 11th-20th - $200 21st-30th - $150 31st-40th - $100 41st-50th - $50 ▶️How to Enter:
    Respond to this topic and just post the bet ID, please. One valid entry per user. Post only one valid bet ID per user. Examples of valid bet IDs:             - house:123456789000
                - casino:123456789000
  22. Ooo
    lowkey444 reacted to NemanjaPi in Bet ID Prediction: August❓   
    Bet ID Prediction: August❓
    Ends: 01/09/2025 @ (12 pm) GMT 

    Requirements:
    Submit your prediction on this thread and your Stake site username with it.
    Example:  Bet ID: 660,000,000,000
                      Username: Aleksandar Tips & Terms & Conditions:
    Entry must have been made after the commencement of this promotion - 01/08/25 - (12 pm) GMT. In case of a tie, the user who posted/edited their entry first will have the advantage. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Do not post more than one comment/entry. Please, read the Spoiler for more info. 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 mirror sites 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. 10+ Posts count on the Forum. Regular Prize Pool(s):
    1st place - $600 2nd place - $400 3rd place - $200 4th place - $100 5th place - $50 6th to 10th place - $20 Prize pool distribution:
    Prizes will be determined by who has the closest prediction. Staker with the closest prediction will take 1st place and so on. The closest 10 predictions will be awarded. How to Enter:
    Respond to this topic, with your prediction and Stake username.
  23. Ooo
    lowkey444 reacted to Jake7589 in 💰 [$8,000] Stake's Birthday #3: What’s your go-to slot on Stake   
    🎰 What’s your go-to slot on Stake   🏆
    Ends: 14/08/2025 @  1.00 AM GMT

    What’s your go-to slot on Stake when you’re in celebration mode? 🎰
    Show us a winning Bet ID of your favorite slot, and we will pick 20 lucky users  🤑
    Submit a qualifying Bet ID below for your chance to win big! 💰
     
    Requirements: 
    0.50 USD bet minimum
    Any slot game on Stake.com
    Reply to this thread with your Bet ID
    Include your Stake ID
    Prize Pool: $8,000
    Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
    Bet ID: Your bet ID here Stake Username: Your username here Prize pool distribution:
    Complete the challenge within the next 7 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
  24. Ooo
    lowkey444 reacted to SanjaT in The Friendliest Chatters of the Month 🗣   
    The Friendliest Chatters of the Month🗣
    We’ve got a fun surprise for all the chat enthusiasts out there!
    Stake is honoring the friendliest participants in the chat each month with some awesome rewards!
    Here’s how it works:
    ⭐Every month, our Moderators and Community Managers will come together to select two of the friendliest and most entertaining chatters to reward. But for the English chat room, we have something extra special – there will be four winners each month!
    ⭐Being the friendliest chatter is all about being actively engaged in the conversations, creating a positive atmosphere, and making the chat a fun and welcoming place for everyone. The friendliest chatters are those who are helpful, kind, and supportive of others in the community. You should be someone the community loves to interact with!
    However, please remember: we’re looking for positivity, so no rule breaking, no toxic behavior, and certainly no being muted during the month.
    ⭐Moderators and Community Managers will evaluate users based on their chat activity. Gambling activity will not be taken into account for this giveaway - only your positive, helpful, and entertaining interactions in chat will matter!
    ⭐Not only will you be recognized for your positive impact on the community, but you’ll also get a little something extra to celebrate your efforts. If you’re selected as one of the friendliest chatters, you will receive a reward of $50! 💰
    ⭐The list of the friendliest chatters for each chat room will be shared in this thread every month. 
    Good luck, and we can’t wait to see you in the chat!
  25. Ooo
    lowkey444 reacted to Jake7589 in 💰 [$2,000] Hi or Lo - August   
    🔍 Hi or Lo 🃏
    Ends: 18/08/2025 @  1.00 AM GMT

    Hilo is a true Stake Classic, but how well are your prediction skills?
    We’ve kicked off a round of Higher or Lower. Simply guess whether the next card will be higher or lower. 🤨
    Drop your guess below 💬
    Requirements: 
    Reply to this thread with your guess. Include your Stake ID. To have a valid entry, fill out this form, providing your details - HERE (A Google account is required to participate in this competition) Prize Pool: $2,000
    Distributed to 20 randomly selected winners who meet the above conditions. How to Enter:
    Reply with your Guess Include your Stake ID Prize pool distribution:
    Complete the challenge within the next 5 days for a shot at the prize pool. Winners are limited to 20. Stake.com users only ‼
    Terms of Service – Competition: 
    For Full Terms of Service - Expand below Quote
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use