-
Posts
13 -
Joined
Reputation Activity
-
LuckyGuy6767 reacted to Jake7589 in 💰[$3,000 USD] Crystal Cricket Ball 🔮
@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; --surface2: #0d2a40; --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; 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 { text-align:center; padding:44px 28px 36px; background: linear-gradient(160deg, #0d2a40 0%, #071824 100%); border-radius:20px; border:1px solid #ffffff12; margin-bottom:20px; position:relative; overflow:hidden; animation-delay:.05s; } .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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } .header h1 { font-size:34px; font-weight:900; 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: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 24px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:17px; font-weight:800; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 0 0 0 #FFB80055; 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 8px 32px #FFB80055; } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } .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; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; } .prize-card.silver: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) 0%, transparent 65%); opacity:0; transition:opacity .3s; pointer-events:none; } .prize-card.gold { --glow:#FFB80018; } .prize-card.silver{ --glow:#0079ff14; } .prize-card:hover::before { opacity:1; } .badge { position:absolute; top:12px; right:14px; font-size:22px; animation:float 3s ease-in-out infinite; } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.silver .prize-amount { color:#0079ff; } .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:#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; } .section { background: var(--surface); border-radius:16px; padding:24px; margin-bottom:16px; border:1px solid #ffffff0d; transition:border-color .3s, box-shadow .3s; } .section:hover { border-color:#0079ff33; box-shadow:0 4px 24px #0079ff0d; } .section-title { font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:1.4px; margin-bottom:18px; display:flex; align-items:center; gap:8px; } .section-title span { font-size:16px; } .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:#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 #0079ff22; } .step-text { font-size:15px; color:#b0cee4; padding-top:6px; } .step-text strong { color:#fff; } /* ── REPLY BOX ── */ .reply-box { margin-top:20px; padding:18px; border-radius:16px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); text-align:center; } .reply-label { display:block; margin-bottom:10px; color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; } .reply-value-row { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; } .reply-value { display:inline-block; padding:12px 18px; border-radius:12px; background:rgba(7,24,36,.65); border:1px solid rgba(255,255,255,.08); color:var(--text); font-size:18px; font-weight:900; font-family:monospace; } .reply-value span { color:var(--gold); } .copy-btn { background:transparent; border:1px solid #0079ff44; color:#4da6ff; font-size:13px; font-weight:700; padding:10px 18px; border-radius:10px; cursor:pointer; transition:all .2s; white-space:nowrap; } .copy-btn:hover { background:#0079ff22; border-color:#0079ff88; } .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:#0a2236; border-color:#0079ff44; transform:translateX(6px); } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#b0cee4; } .req-text strong { color:#FFB800; } .pool-total { text-align:center; padding:22px; background:linear-gradient(135deg,#FFB80012,#FFB80005); border:1px solid #FFB80044; border-radius:14px; margin-bottom:16px; transition:box-shadow .3s; } .pool-total:hover { box-shadow:0 0 40px #FFB80020; } .pool-total .amount { font-size:52px; 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 24px #FFB80066; } } .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:#0a2236; border-color:#FFB80033; } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#FFB800; font-weight:700; } .notice { 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; } .notice: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%; } } 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 ul, .terms-body ol { padding-left:20px; } .terms-body li { margin-bottom:5px; } .terms-body a { color:var(--blue); } .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;} } Crystal Cricket Ball
Competition ends: 31/5/2026 @ 1:00 aM GMT
The IPL is heating up, as each team looks to take the prize home 🏆
We’re giving away $3,000 to 30 lucky winners.
Place qualifying bets on any IPL outright market, then reply in this thread with your Bet ID to enter.
🏏 Bet Now 🏆 $3,000 PRIZE POOL 🥈 $100 Each × 30 Winners 💡 Bets must be outright on any IPL match 📋 How To Enter 1 Place a qualifying outright on any IPL game market on Stake.com 2 Copy your Bet ID after placing your bet 3 Reply to this thread with your Bet ID to enter. ✅ Requirements ⚽️ Bets must be outright on any IPL match 💵 minimum bet amount: $5.00 USD or currency equivalent 💬 Reply to this thread with your Bet ID 🔒 Must be a Stake.com account — Bronze VIP or above 💰 Prize Pool $3,000 Total Prize Pool 🥈 30 × Winners$100 each 👥 Total Winners30 People 📅 Duration16 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 -
LuckyGuy6767 reacted to DragoslavP in 🏆Champions League Finals - Lucky Draw 🏆
:root { --card: rgba(10, 20, 38, 0.75); --line: rgba(255,255,255,0.12); --text: #f5f7fb; --muted: #a7b4c9; --gold: #f7c948; --shadow: 0 20px 60px rgba(0, 0, 0, 0.28); } .glass-card { border: 1px solid var(--line); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(225deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)), var(--card); box-shadow: var(--shadow); backdrop-filter: blur(14px); color: var(--text); transition: 0.25s ease; position: relative; } .glass-card:hover { transform: translateY(-4px); } .hero-title { font-size: 30px; font-weight: 800; text-align: center; margin-top: 10px; } .hero-sub { text-align: center; color: var(--muted); margin-top: 6px; font-size: 15px; } /* BADGE */ .badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(247,201,72,0.6); background: rgba(255,255,255,0.03); font-weight: 700; overflow: hidden; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(0,0,0,0.25); z-index: 10; } .badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; } @keyframes shineBadge { 0% { left:-60%; } 100% { left:120%; } } /* 🏀 BOUNCE ANIMATION */ .bounce-ball { font-size: 20px; display: inline-block; animation: bounce 1s infinite ease-in-out; will-change: transform; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } /* 🔥 BET NOW BUTTON */ .bet-wrap { text-align: center; margin: 14px 0 10px; } .bet-btn { display: inline-block; padding: 16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color: #071824; font-weight: 800; font-size: 17px; border-radius: 14px; text-decoration: none !important; transition: 0.25s ease; box-shadow: 0 10px 25px rgba(255,184,0,0.25); } .bet-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(255,184,0,0.4); } /* HOW TO ENTER */ .challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(247,201,72,0.18); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; position: relative; overflow: hidden; } .challenge-title { font-size: 18px; font-weight: 800; color: var(--gold); margin-bottom: 18px; text-transform: uppercase; } .feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; } .feature { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px 14px 14px 44px; font-size: 14px; transition: 0.25s ease; position: relative; display: flex; align-items: center; text-align: left; } .feature:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } .feature::before { content: attr(data-step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; } /* REQUIREMENTS ITEM */ .req-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; margin-bottom: 10px; font-size: 14px; text-align: left; transition: 0.25s ease; } .req-item:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } /* BASE INFO BOX */ .info-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; text-align: center; transition: none; } /* PRIZE BOX */ .prize-box:hover { background: rgba(247,201,72,0.08); transform: translateY(-3px); } /* PRIZE SHINE */ .prize-shiny { font-size: 52px; font-weight: 900; background: linear-gradient(90deg,#f7c948,#fff4b0,#f7c948); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; } @keyframes shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } } /* GRID */ .info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; } /* PRIZE LIST FIXED */ .prize-list { margin-top: 10px; font-size: 14px; } .prize-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .prize-row span:first-child { color: var(--text); } .prize-row span:last-child { color: var(--gold); font-weight: 700; } .prize-row:last-child { border:none; } /* TERMS */ .dropdown-card { background: rgba(255,255,255,0.04); border-radius: 16px; margin-top: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); } .dropdown-trigger { padding: 14px; text-align: center; cursor: pointer; font-weight: 700; color: var(--gold); } /* RULES */ .rules-list { list-style: none; padding: 0; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 10px 10px 10px 40px; margin-bottom: 8px; text-align: left; counter-increment: step; transition: 0.2s; } .rules-list li:hover { transform: translateX(3px); } .rules-list li::before { content: counter(step); position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; transition: 0.25s; } .center { text-align:center; } @media(max-width:900px){ .feature-grid, .info-grid { grid-template-columns:1fr; } } ⚡ Limited-Time Event
🏆 🔵🔴PSG vs Arsenal🔴⚪ 🏆
Champion League Finals is finally here!
Place a bet on Champion League Finals and share your Bet IDs below.
Bet Now Competition ends: 01/06/2026 - 12:00pm GMT How to Enter: Place a bet on Champion League Finals match on Stake.com. Submitted bets must be a minimum of 5x odds. Copy your Bet ID(s) after placing your bet. Reply to this thread with your Bet ID(s) to enter. 📋 Requirements: 🏀 Bets must be on Champion League Finals match. 💵 Minimum bet amount: $5.00. 📈 Minimum 5x odds. 💬 Reply to this thread with your Bet ID(s). 🔒 Bronze VIP or above & KYC Level 2. 💡 Only one bet allowed; others will be removed. 🏆 Prize Pool $2,000 TOTAL PRIZE POOL 10 users$200 Each SelectionRandom Draw Winners will be selected at random from all eligible entries that meet the requirements. Terms & Conditions Bronze VIP account or above on Stake.com is required. KYC Level 2 verification is required for all participants. Only one Stake account per user. Multi-accounting results in disqualification. Accounts must have no restrictions or exclusions to receive prizes. Stake employees are not eligible to participate. Stake reserves the right to amend or cancel the competition at any time. Prizes will be delivered within 72 hours of the competition ending. Winners will have their username displayed with a prize claim link. -
LuckyGuy6767 reacted to DragoslavP in ⚽Stake Matchday Madness Week 40⚽
.sf-wrap{ max-width:1000px; margin:20px auto; font-family:Arial,Helvetica,sans-serif; color:#f5f7fb; background: radial-gradient(circle at 20% 10%, rgba(120,200,255,0.10), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,220,120,0.08), transparent 45%), radial-gradient(circle at 50% 100%, rgba(180,140,255,0.08), transparent 55%), linear-gradient(145deg, #0f1722 0%, #121c2a 45%, #0e1520 100%); border:1px solid rgba(255,255,255,0.14); border-radius:26px; overflow:hidden; box-shadow:0 22px 60px rgba(0,0,0,0.35); position:relative; backdrop-filter: blur(10px); } .sf-wrap::before{ content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 85% 15%, rgba(120,180,255,0.10), transparent 45%), radial-gradient(circle at 20% 80%, rgba(255,210,120,0.07), transparent 50%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%); } .sf-wrap::after{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.25) 100%); } .sf-hero{ position:relative; padding:34px 28px 28px; background: transparent; } .sf-topbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; flex-wrap:wrap; } .sf-title{ font-size:40px; line-height:1.08; font-weight:900; color:#ffffff; margin:0 0 10px; text-shadow:0 4px 18px rgba(0,0,0,0.25); } .sf-sub{ max-width:760px; font-size:17px; line-height:1.65; color:#dbe4ff; margin-bottom:22px; } .sf-grid-top{ display:flex; flex-wrap:wrap; gap:12px; } .sf-chip{ flex:1 1 180px; min-width:180px; padding:15px 16px; border-radius:18px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); box-shadow:0 6px 16px rgba(0,0,0,0.14); transition:all 0.25s ease; } .sf-chip-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-chip-value{ font-size:19px; font-weight:800; color:#ffffff; } .sf-btns{ margin-top:20px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; padding-bottom:14px; } .sf-btns::after{ content:""; position:absolute; left:20%; right:20%; bottom:-10px; height:2px; background:linear-gradient(90deg,transparent,#f7c948,transparent); opacity:0.55; } .sf-btn{ display:inline-block; padding:14px 20px; border-radius:14px; font-size:14px; font-weight:800; letter-spacing:0.4px; transition:all 0.25s ease; text-decoration:none !important; } .sf-btn-primary{ color:#1a1a1a !important; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); border:1px solid rgba(255,215,0,0.75); box-shadow:0 14px 28px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.25); text-shadow:0 1px 0 rgba(255,255,255,0.35); position:relative; overflow:hidden; } .sf-btn-primary:hover{ transform:translateY(-3px) scale(1.08); box-shadow:0 18px 36px rgba(212,175,55,0.45); } .sf-btn-primary::after{ content:""; position:absolute; top:-60%; left:-70%; width:60%; height:200%; background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent); transform:rotate(25deg); transition:all 0.6s ease; } .sf-btn-primary:hover::after{ left:120%; } .sf-main{ padding:26px; } .sf-columns{ display:flex; flex-wrap:wrap; gap:20px; align-items:stretch; } .sf-left, .sf-right{ flex:1 1 48%; min-width:320px; display:flex; flex-direction:column; } .sf-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:22px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,0.18); margin-bottom:20px; backdrop-filter: blur(12px); position:relative; transition:all 0.25s ease; } .sf-left .sf-card:last-child, .sf-right .sf-card:last-child{ margin-bottom:0; margin-top:auto; } .sf-card::before{ content:""; position:absolute; inset:0; border-radius:22px; pointer-events:none; background:linear-gradient(135deg, rgba(247,201,72,0.04), transparent 45%, rgba(120,160,255,0.03)); } .sf-card h3{ margin:0 0 14px; font-size:24px; color:#ffffff; } .dropdown-card{ margin-top:20px; } .sf-main > .sf-card:last-child{ margin-top:28px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .sf-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border: 1px solid rgba(247,201,72,0.45); } .rules-list li:hover{ transform: translateX(6px); background: rgba(247,201,72,0.06); border: 1px solid rgba(247,201,72,0.35); color: #ffffff; box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
⚽Stake Matchday Madness⚽ Round 40 | PSG - Arsenal
(Europe, Champions League. The match is scheduled for 30.05.2026.)
Ends: 30/05/26 (16:00 pm) GMT
Requirements
Guess correctly 7 questions that are posted on the poll below.
Each category will be scored individually, and the total score will be calculated by adding them all together.
To have a valid entry, fill out the form below.
HERE
Prize Pool
1st place$150
2nd place$100
3rd place$50
4th place$50
5th place$50 In case of a tie, the user who submitted their form first will have an advantage. Additional Information
Points are awarded based on the number of points next to the questions. All correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7 guesses. Fill out the form that's linked to this topic to be eligible for promotion. The user with the highest Total Score will be declared the winner. If a player is not on the roster for that game due to injury or any other reason. In that case, only the predictions for selected players who participated in the match will be counted. A Pastebin leaderboard will be featured as part of the promotion. Terms & Conditions — click to expand
Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirrors users will be eligible for the prize. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. For payment, give us up to 72 hours from the end of the promotion. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post.
-
-
-
LuckyGuy6767 reacted to Edward in Weekend Stream + Giveaway
Weekend stream
Join me on Kick & ask me any questions about Stake or the gaming industry in general. Will be running a bunch of giveaways throughout, including this forum giveaway.
Link to stream: https://kick.com/Eddie
How to enter the giveaway?
Simply post your Stake username below! You'll need to ensure you have at least 10 posts. Don't try to abuse this giveaway as it'll lead to a perm forum suspension 🙈
How are winners chosen?
When you post on the forum you will be assigned both a page number & a post number. Towards the end of the stream I will draw 5 random pages for each VIP host to choose winners from.
Essentially you're hoping that I draw your page number on live stream & that the person assigned your page picks you as a winner! I will also draw 7 random post numbers. If your post number is drawn you will also win.
Want to increase your chances of winning?
1. Stay tuned into the live stream for tips on how to edit your post to include certain information for a higher chance 😎
2. Be super nice to your VIP host & don't give them a hard time 😂
3. One entry per household only. Multiple entries will have you disqualified
Giveaway prizes (Stake.com Players)
Non VIP: $10
Bronze: $20
Silver: $40
Gold: $60
Platinum: $100
Platinum 2: $120
Platinum 3: $140
Platinum 4: $160
Platinum 5: $180
Platinum 6: $200
Diamond: $500
Giveaway prizes (Stake.us Players)
Non VIP: 10k GC + free Stake Cash
Bronze: 20k GC + free Stake Cash
Silver: 40k GC + free Stake Cash
Gold: 60k GC + free Stake Cash
Platinum: 1m GC + free Stake Cash
Platinum 2: 1.2m GC + free Stake Cash
Platinum 3: 1.4m GC + free Stake Cash
Platinum 4: 1.6m GC + free Stake Cash
Platinum 5: 1.8m GC + free Stake Cash
Platinum 6: 2m GC + free Stake Cash
Diamond: 5m GC + free Stake Cash
Please note that the number of posts and pages may fluctuate while this topic remains open. Be sure to check your post number once the topic is closed
-
LuckyGuy6767 got a reaction from KaiZidan in Weekend Stream + Giveaway
stake username : LuckyGuy777879
hopefully 🤞🏻
-
LuckyGuy6767 reacted to DragoslavP in ⛹️Stake Matchday Madness Week 34⛹️
The winners of the 34th round are:
Correct Answers:
CLAIM HERE
Congratulations to all the winners!🥳 The list with all participants: https://pastebin.com/F2LkQejm
-
LuckyGuy6767 got a reaction from KaiZidan in 🏆 $400 Endgame Quiz 🧠
1. $7,000 Crown Chase
2. 240
3. 40x
stake : LuckyGuy777879
-
LuckyGuy6767 got a reaction from Robbabillion79 in 🤩 anyone have a lucky charm or lucky number 🤩
3 always been proven as the lucky number for me