Jump to content

Jake7589

Community Manager
  • Posts

    394
  • Joined

  • Last visited

  • Days Won

    125

Reputation Activity

  1. Pepe - Pray
    Jake7589 got a reaction from TheBoss10 in ๐Ÿ’ฐ[$1,000 USD] Bonus Clash: Hel's Domain vs Gates of Destiny ๐ŸฅŠ   
    @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 โ”€โ”€ */ .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 #ffffff12; } .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:32px; font-weight:900; line-height:1.1; letter-spacing:-.02em; 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:500px; margin:0 auto 14px; line-height:1.7; } /* โ”€โ”€ VS BANNER โ”€โ”€ */ .vs-banner { margin-bottom:20px; padding:24px 22px; text-align:center; border-radius:16px; background: linear-gradient(135deg, #0079ff22, #0079ff0a); border:1px solid #0079ff44; position:relative; overflow:hidden; transition:box-shadow .3s; } .vs-banner:hover { box-shadow:0 0 40px #0079ff18; } .vs-banner::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(0,121,255,.1),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } .vs-title { font-size:22px; font-weight:900; color:#fff; margin-bottom:10px; } .vs-title span { color:var(--gold); } .vs-row { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; } .vs-btn { display:inline-block; padding:12px 24px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:15px; font-weight:800; text-decoration:none !important; border-radius:10px; transition:transform .2s, box-shadow .2s; position:relative; overflow:hidden; } .vs-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; } .vs-btn:hover { transform:translateY(-2px); box-shadow:0 6px 24px #FFB80044; text-decoration:none; } .vs-btn:hover::after { transform:translateX(100%); } .vs-divider { font-size:20px; font-weight:900; color:#fff; opacity:.7; } /* โ”€โ”€ 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:26px 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.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:40px; 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 โ”€โ”€ */ .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; } /* โ”€โ”€ STEPS โ”€โ”€ */ .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; } /* โ”€โ”€ REPLY BOX โ”€โ”€ */ .reply-box { margin-top:18px; 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:16px; 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; } /* โ”€โ”€ MINI CARDS โ”€โ”€ */ .stack { display:flex; flex-direction:column; gap:12px; } .mini-card { padding:16px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid #ffffff0a; transition:border-color .25s; } .mini-card:hover { border-color:#FFB80033; } .mini-card h3 { margin:0 0 6px; color:var(--text); font-size:16px; font-weight:700; } .mini-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; } .mini-card strong { color:#fff; } .notice { margin-top:12px; padding:14px 16px; border-radius:14px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); color:var(--muted); font-size:13px; line-height:1.7; } .notice strong { color:#fff; } /* โ”€โ”€ CLEAN LIST โ”€โ”€ */ .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); } /* โ”€โ”€ PRIZE POOL TABLE โ”€โ”€ */ .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; } /* โ”€โ”€ ALERT โ”€โ”€ */ .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 โ”€โ”€ */ .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; } /* โ”€โ”€ TERMS โ”€โ”€ */ .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); } .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:24px; } .vs-row { flex-direction:column; } } Weekly Forum Competition Bonus Clash: Hel's Domain vs Gates of Destiny
    Ends: ย 11/6/2026 @ 1:00 AM GMT
    This week's Bonus Clash is live. Pick the slot you think will pay out bigger, submit your qualifying Bet ID, and you could win a share of the prize pool.
    Win a share of $1,000 ๐Ÿ’ธ ๐Ÿ˜ˆ Hel's Domain VS ๐Ÿ˜‡ Gates of Destiny ๐Ÿ’ธ $1,000 Total Prize Pool Up for grabs ๐Ÿ† $50 Per Winner ร— 20 Winners ๐Ÿ’ก Make a $20 USD bonus buy on either slot โ€” then reply with your Bet ID to enter! How To Enter Three simple steps
    Pick your slot, place your bonus buy, and post your Bet ID.
    1 Choose your slot
    Pick Hel's Domain or Gates of Destiny โ€” whichever you think will pay bigger.
    2 Make a $20 bonus buy
    Complete a $20 USD bonus buy on your chosen slot.
    3 Reply with your Bet ID
    Post your Bet ID in this thread to submit your entry.
    Prize Distribution How the prize pool works
    $1,000 Total Prize Pool ๐Ÿ’ธ Total Prize Pool$1,000 ๐Ÿ†ย 20 ร— Winners$50 each ๐Ÿ‘ฅ Total Winners20 People ๐Ÿ“… Duration7 Days Requirements Before you enter
    Reply to this thread with your Bet ID Only eligible entries that meet the above conditions can win Stake.com users only โ€” Bronze VIP or above KYC Level 2 verification required โš ๏ธ Don't miss out! Stay tuned for the official winner announcement. You must claim your prize before the coupon link expires โ€” users will not be credited after the 3-month claim period ends. โ€ผ๏ธ Stake.com users only โ€ผ๏ธ Terms of Service โ€” Competition
    For full Terms of Service, expand below.
    ๐Ÿ“„ 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 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 Prizes & Delivery
    Winners will have their username displayed on the thread with a prize claim link. The Community Team may contact you via the platform used to submit your entry. Prizes delivered within 14 days of the 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 (forum moderators are not excluded) Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Entry Requirements
    Entries must be submitted after the Competition is published Entries must meet all submission requirements set by Stake 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 Please read all conditions carefully before entering.
  2. Fire
    Jake7589 got a reaction from Zimor94 in ๐Ÿ’ฐ[$1,000 USD] Bonus Clash: Gummy Drop 1000 vs Rack City Riches ๐ŸฅŠ   
    @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 โ”€โ”€ */ .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 #ffffff12; } .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:32px; font-weight:900; line-height:1.1; letter-spacing:-.02em; 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:500px; margin:0 auto 14px; line-height:1.7; } /* โ”€โ”€ VS BANNER โ”€โ”€ */ .vs-banner { margin-bottom:20px; padding:24px 22px; text-align:center; border-radius:16px; background: linear-gradient(135deg, #0079ff22, #0079ff0a); border:1px solid #0079ff44; position:relative; overflow:hidden; transition:box-shadow .3s; } .vs-banner:hover { box-shadow:0 0 40px #0079ff18; } .vs-banner::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(0,121,255,.1),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } .vs-title { font-size:22px; font-weight:900; color:#fff; margin-bottom:10px; } .vs-title span { color:var(--gold); } .vs-row { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; } .vs-btn { display:inline-block; padding:12px 24px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:15px; font-weight:800; text-decoration:none !important; border-radius:10px; transition:transform .2s, box-shadow .2s; position:relative; overflow:hidden; } .vs-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; } .vs-btn:hover { transform:translateY(-2px); box-shadow:0 6px 24px #FFB80044; text-decoration:none; } .vs-btn:hover::after { transform:translateX(100%); } .vs-divider { font-size:20px; font-weight:900; color:#fff; opacity:.7; } /* โ”€โ”€ 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:26px 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.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:40px; 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 โ”€โ”€ */ .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; } /* โ”€โ”€ STEPS โ”€โ”€ */ .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; } /* โ”€โ”€ REPLY BOX โ”€โ”€ */ .reply-box { margin-top:18px; 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:16px; 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; } /* โ”€โ”€ MINI CARDS โ”€โ”€ */ .stack { display:flex; flex-direction:column; gap:12px; } .mini-card { padding:16px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid #ffffff0a; transition:border-color .25s; } .mini-card:hover { border-color:#FFB80033; } .mini-card h3 { margin:0 0 6px; color:var(--text); font-size:16px; font-weight:700; } .mini-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; } .mini-card strong { color:#fff; } .notice { margin-top:12px; padding:14px 16px; border-radius:14px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); color:var(--muted); font-size:13px; line-height:1.7; } .notice strong { color:#fff; } /* โ”€โ”€ CLEAN LIST โ”€โ”€ */ .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); } /* โ”€โ”€ PRIZE POOL TABLE โ”€โ”€ */ .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; } /* โ”€โ”€ ALERT โ”€โ”€ */ .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 โ”€โ”€ */ .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; } /* โ”€โ”€ TERMS โ”€โ”€ */ .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); } .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:24px; } .vs-row { flex-direction:column; } } Weekly Forum Competition Bonus Clash: Gummy Drop 1000 vs Rack City Riches
    Ends: ย 4/6/2026 @ 1:00 AM GMT
    This week's Bonus Clash is live. Pick the slot you think will pay out bigger, submit your qualifying Bet ID, and you could win a share of the prize pool.
    Win a share of $1,000 ๐Ÿ’ธ ๐Ÿงธ Gummy Drop 1000 VS ๐Ÿ’ธ Rack City Riches ๐Ÿ’ธ $1,000 Total Prize Pool Up for grabs ๐Ÿ† $50 Per Winner ร— 20 Winners ๐Ÿ’ก Make a $20 USD bonus buy on either slot โ€” then reply with your Bet ID to enter! How To Enter Three simple steps
    Pick your slot, place your bonus buy, and post your Bet ID.
    1 Choose your slot
    Pick Gummy Drop 1000 or Rack City Riches โ€” whichever you think will pay bigger.
    2 Make a $20 bonus buy
    Complete a $20 USD bonus buy on your chosen slot.
    3 Reply with your Bet ID
    Post your Bet ID in this thread to submit your entry.
    Prize Distribution How the prize pool works
    $1,000 Total Prize Pool ๐Ÿ’ธ Total Prize Pool$1,000 ๐Ÿ†ย 20 ร— Winners$50 each ๐Ÿ‘ฅ Total Winners20 People ๐Ÿ“… Duration7 Days Requirements Before you enter
    Reply to this thread with your Bet ID Only eligible entries that meet the above conditions can win Stake.com users only โ€” Bronze VIP or above KYC Level 2 verification required โš ๏ธ Don't miss out! Stay tuned for the official winner announcement. You must claim your prize before the coupon link expires โ€” users will not be credited after the 3-month claim period ends. โ€ผ๏ธ Stake.com users only โ€ผ๏ธ Terms of Service โ€” Competition
    For full Terms of Service, expand below.
    ๐Ÿ“„ 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 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 Prizes & Delivery
    Winners will have their username displayed on the thread with a prize claim link. The Community Team may contact you via the platform used to submit your entry. Prizes delivered within 14 days of the 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 (forum moderators are not excluded) Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Entry Requirements
    Entries must be submitted after the Competition is published Entries must meet all submission requirements set by Stake 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 Please read all conditions carefully before entering.
  3. Imposter
    Jake7589 got a reaction from danieltocha in ๐Ÿ’ฐ[$2,500] โ€‹NBA Playoff Hustle ๐Ÿ€ โ€‹   
    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-grid { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; 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:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 29/6/2026 โ€” claim before it's gone!
    Winners 10 Lucky Winners
    1 CharlesK95 $250 2 Rana2704 $250 3 Flo90 $250 4 Xlynxx $250 5 Bignick39 $250 6 zemzezaurs $250 7 humantzy2023 $250 8 davewang77 $250 9 cryptofei $250 10 tinsagit $250
  4. Fire
    Jake7589 got a reaction from connr2k in ๐Ÿ’ฐ [$3,000 USD] NBA Final Fortune ๐Ÿ€   
    @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:36px 28px 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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } /* โ”€โ”€ PORTRAIT IMAGE FRAME โ”€โ”€ */ .portrait-frame { display:block; margin:0 auto 26px; max-width:260px; width:100%; border-radius:16px; overflow:hidden; border:1px solid #FFB80033; box-shadow:0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05); position:relative; transition:box-shadow .3s, border-color .3s; } .portrait-frame:hover { border-color:#FFB80077; box-shadow:0 12px 40px rgba(0,0,0,.6), 0 0 24px #FFB80018; } .portrait-frame img { width:100%; height:auto; display:block; } .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 14px; 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 !important; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 4px 20px #FFB80044; position:relative; overflow:hidden; margin-top:10px; } .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; text-decoration:none !important; } .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; --glow:#FFB80018; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; --glow:#0079ff14; } .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: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; } .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;} .portrait-frame { max-width:200px; } } NBA Final Fortune
    Competition ends: 20/6/2026 @ 1:00 AM GMT
    BING BONG ๐Ÿšจ LET'S GO KNICKS ๐Ÿ“ข
    I WANT TO SEE NEW YORK CITY BURN ๐Ÿ”ฅ
    Place a SGM any each NBA Finals match, share your Bet IDs below, and you could win a share of $3,000.
    ๐Ÿ€ Bet Now ๐Ÿ† $3,000 Prize Pool ๐Ÿฅˆ $200 Each ร— 15 Winners ๐Ÿ’กย Bets must be a SGM and placed on each individual game ๐Ÿ“‹ How To Enter 1 Place a SGMย Bet on eachย NBA Final Matchย on Stake.com 2 Copy your Bet IDs after placing your bet 3 Reply to this thread with your Bet ID โ€” Bets much be a SGM and on each individual match โœ… Requirements ๐Ÿ€ Bets must be placed on eachย NBA Final Match ๐Ÿ’ต Minimum bet amount: $5.00 USD or currency equivalent ๐Ÿ’ฌ Reply to this thread with your Bet IDs ๐Ÿ”’ Must be a Stake.com account โ€” Bronze VIP or above ๐Ÿ’ฐ Prize Pool $3,000 Total Prize Pool ๐Ÿฅˆ 15 ร— Winners$200 each ๐Ÿ‘ฅ Total Winners15 People ๐Ÿ“… Duration17 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. 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. Pepe - Crying
    Jake7589 got a reaction from Hai184 in ๐Ÿ’ฐ[$20,000 USD] Cricket Raffle Bash ๐Ÿ   
    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; } /* Clean 2-column grid layout for large lists */ .winners-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; border:1px solid #ffffff0a; transition:background .2s, border-color .2s; cursor:default; } .winner-row:hover { background:#0a2236; border-color:#FFB80044; } .winner-left { display:flex; align-items:center; gap:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 29/6/2026 โ€” claim before it's gone!
    Winners 100 Lucky Winners
    1 Nishantt0414 $200 2 Shivam0731 $200 3 Bjbhaifans $200 4 Fabienf $200 5 Luckyhunterrr $200 6 Nipunsinha1 $200 7 Mampi690 $200 8 Ashankush $200 9 Kalamsachin24 $200 10 Dhuzhshs $200 11 Israr7521 $200 12 Jayanth099 $200 13 Vivekdass123 $200 14 Nikhil91 $200 15 Geekvape $200 16 pizdecvsemy $200 17 Ripudaman69 $200 18 Jigarbaapu555 $200 19 Ploof899 $200 20 YASHTENET $200 21 PreciousCram $200 22 yagutepe $200 23 MasterLew $200 24 Infinity0123 $200 25 TrustedMirror $200 26 King48 $200 27 ShanawarK $200 28 Yudi855 $200 29 Dominei $200 30 RaajOnMoon $200 31 Shrey30 $200 32 Omp27 $200 33 Fencerreshu $200 34 Abhi92654 $200 35 akashholagundi $200 36 ShowmLet99 $200 37 Comeon13 $200 38 Capitaine69 $200 39 Ziezz $200 40 meta4956 $200 41 Varun7373 $200 42 Yuvix22 $200 43 Smartduck $200 44 AceJaAC $200 45 unmitigatedass $200 46 Govind7489 $200 47 Godgamerzzzz $200 48 iscircleoflife $200 49 harisairy2249 $200 50 deepakn12 $200 51 Akkuraw $200 52 Chotadrake69 $200 53 stnKuecil $200 54 Prashanth20 $200 55 Kaushalpincha1 $200 56 Rana2704 $200 57 StunnerXD $200 58 ritesh717 $200 59 Kohliipaglu18 $200 60 Madhukumarm $200 61 Liemdauca86 $200 62 ronmercado0789 $200 63 Sanjayanth6 $200 64 rn11100 $200 65 Kartikpgw123 $200 66 CHINNU2244 $200 67 Luffy5thgear $200 68 soulhmm $200 69 LUCKY1FOUR $200 70 Baljinder1122 $200 71 Xxguru $200 72 JyotiRanjan001 $200 73 Captainnsv $200 74 Taran00007 $200 75 autofiller69 $200 76 VaderETH $200 77 Nirbillionaire $200 78 Sahilisla $200 79 Sidhu2121 $200 80 toddradd1 $200 81 aimpoi $200 82 rohith4523 $200 83 skymonik $200 84 Bluesky97 $200 85 Penguin52 $200 86 beingrahul $200 87 Karthikkid $200 88 AD55 $200 89 NEWJARSI $200 90 Raaji7 $200 91 BettorGuy $200 92 markusma $200 93 BrandonB902 $200 94 Jagdishdivya $200 95 Amanlo1 $200 96 blindmelon1977 $200 97 beuvais1 $200 98 Kingslayer1456 $200 99 Heoquay $200 100 TheBoss10 $200
  6. Fire
    Jake7589 got a reaction from TheBoss10 in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery Account must have no restrictions or exclusions Must not be a Stake employee Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Stake's Reserved Rights
    To amend the Rules at any time To cancel the Competition at any time To verify the nominated account for prize delivery
  7. Scared
    Jake7589 got a reaction from koulman59 in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery 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
  8. Fire
    Jake7589 got a reaction from Ninja988 in ๐Ÿ’ฐ [$10,000 USD] Leg for Leg with BETFUSE โšฝ๏ธ   
    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-grid { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; 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:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 30/6/2026 โ€” claim before it's gone!
    Winners 50 Lucky Winners
    1 AdamHexstar $200 2 Bekureno $200 3 Bharath621 $200 4 bilbor $200 5 blusrat $200 6 BrownMunde2026 $200 7 Capano51 $200 8 captainblack1 $200 9 CaptAwesome1 $200 10 Chaosdapa $200 11 Clarissapeggy $200 12 DeaVolso $200 13 Dr3yx $200 14 DrususGeta1 $200 15 EmreAkt $200 16 Fabindopneu $200 17 gaimsi90 $200 18 gibsongk $200 19 goldys978 $200 20 Grotiss $200 21 haipslo $200 22 ido777 $200 23 IlnazM $200 24 ivded $200 25 Jerry0779 $200 26 JimmmyJimmy $200 27 JulianJm $200 28 kishidan127 $200 29 kosu0209 $200 30 LilRosko $200 31 Marcos18912 $200 32 Maulshala $200 33 Mickafou $200 34 molasqw $200 35 Neverhatepoor $200 36 Ninja988 $200 37 odg8 $200 38 Ojai $200 39 OMalley96 $200 40 Phantomb34 $200 41 refuser321 $200 42 rirure $200 43 rojkzin $200 44 shangguan $200 45 sigurdsun $200 46 xiTaLo97x $200 47 xPrisiliaSTx $200 48 Younjon $200 49 zubat2109 $200 50 zuochun44 $200
  9. Bitcoin
    Jake7589 got a reaction from Taufeeqkhan 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
  10. Doge - Cool
    Jake7589 got a reaction from lucasBl in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery 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
  11. Fire
    Jake7589 got a reaction from mrmoneyjaco in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery 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
  12. Pepe - Sad
    Jake7589 got a reaction from Sirk23 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
  13. Pepe - Stressed
    Jake7589 got a reaction from Rindxorg 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
  14. Pepe - Crying
    Jake7589 got a reaction from Rindxorg in ๐Ÿ’ฐ [$10,000 USD] Leg for Leg with BETFUSE โšฝ๏ธ   
    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-grid { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; 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:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 30/6/2026 โ€” claim before it's gone!
    Winners 50 Lucky Winners
    1 AdamHexstar $200 2 Bekureno $200 3 Bharath621 $200 4 bilbor $200 5 blusrat $200 6 BrownMunde2026 $200 7 Capano51 $200 8 captainblack1 $200 9 CaptAwesome1 $200 10 Chaosdapa $200 11 Clarissapeggy $200 12 DeaVolso $200 13 Dr3yx $200 14 DrususGeta1 $200 15 EmreAkt $200 16 Fabindopneu $200 17 gaimsi90 $200 18 gibsongk $200 19 goldys978 $200 20 Grotiss $200 21 haipslo $200 22 ido777 $200 23 IlnazM $200 24 ivded $200 25 Jerry0779 $200 26 JimmmyJimmy $200 27 JulianJm $200 28 kishidan127 $200 29 kosu0209 $200 30 LilRosko $200 31 Marcos18912 $200 32 Maulshala $200 33 Mickafou $200 34 molasqw $200 35 Neverhatepoor $200 36 Ninja988 $200 37 odg8 $200 38 Ojai $200 39 OMalley96 $200 40 Phantomb34 $200 41 refuser321 $200 42 rirure $200 43 rojkzin $200 44 shangguan $200 45 sigurdsun $200 46 xiTaLo97x $200 47 xPrisiliaSTx $200 48 Younjon $200 49 zubat2109 $200 50 zuochun44 $200
  15. Fire
    Jake7589 got a reaction from Amit Kmr in ๐Ÿ’ฐ [$10,000 USD] Leg for Leg with BETFUSE โšฝ๏ธ   
    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-grid { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; 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:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 30/6/2026 โ€” claim before it's gone!
    Winners 50 Lucky Winners
    1 AdamHexstar $200 2 Bekureno $200 3 Bharath621 $200 4 bilbor $200 5 blusrat $200 6 BrownMunde2026 $200 7 Capano51 $200 8 captainblack1 $200 9 CaptAwesome1 $200 10 Chaosdapa $200 11 Clarissapeggy $200 12 DeaVolso $200 13 Dr3yx $200 14 DrususGeta1 $200 15 EmreAkt $200 16 Fabindopneu $200 17 gaimsi90 $200 18 gibsongk $200 19 goldys978 $200 20 Grotiss $200 21 haipslo $200 22 ido777 $200 23 IlnazM $200 24 ivded $200 25 Jerry0779 $200 26 JimmmyJimmy $200 27 JulianJm $200 28 kishidan127 $200 29 kosu0209 $200 30 LilRosko $200 31 Marcos18912 $200 32 Maulshala $200 33 Mickafou $200 34 molasqw $200 35 Neverhatepoor $200 36 Ninja988 $200 37 odg8 $200 38 Ojai $200 39 OMalley96 $200 40 Phantomb34 $200 41 refuser321 $200 42 rirure $200 43 rojkzin $200 44 shangguan $200 45 sigurdsun $200 46 xiTaLo97x $200 47 xPrisiliaSTx $200 48 Younjon $200 49 zubat2109 $200 50 zuochun44 $200
  16. Pepe - Crying
    Jake7589 got a reaction from Snodey in ๐Ÿ’ฐ [$10,000 USD] Leg for Leg with BETFUSE โšฝ๏ธ   
    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-grid { display:flex; flex-direction:column; gap:8px; } .winner-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--primary); border-radius:10px; 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:10px; } .winner-rank { width:24px; height:24px; border-radius:50%; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.2); color:var(--gold); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; } .winner-name { font-size:13px; font-weight:600; color:var(--text); } .winner-prize { font-size:13px; font-weight:800; color:#FFB800; white-space:nowrap; } .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} @media(max-width:520px){ .winners-grid { grid-template-columns:1fr; } .winner-banner h1 { font-size:24px; } }
    ๐ŸŽ Claim Your Reward Link expires 30/6/2026 โ€” claim before it's gone!
    Winners 50 Lucky Winners
    1 AdamHexstar $200 2 Bekureno $200 3 Bharath621 $200 4 bilbor $200 5 blusrat $200 6 BrownMunde2026 $200 7 Capano51 $200 8 captainblack1 $200 9 CaptAwesome1 $200 10 Chaosdapa $200 11 Clarissapeggy $200 12 DeaVolso $200 13 Dr3yx $200 14 DrususGeta1 $200 15 EmreAkt $200 16 Fabindopneu $200 17 gaimsi90 $200 18 gibsongk $200 19 goldys978 $200 20 Grotiss $200 21 haipslo $200 22 ido777 $200 23 IlnazM $200 24 ivded $200 25 Jerry0779 $200 26 JimmmyJimmy $200 27 JulianJm $200 28 kishidan127 $200 29 kosu0209 $200 30 LilRosko $200 31 Marcos18912 $200 32 Maulshala $200 33 Mickafou $200 34 molasqw $200 35 Neverhatepoor $200 36 Ninja988 $200 37 odg8 $200 38 Ojai $200 39 OMalley96 $200 40 Phantomb34 $200 41 refuser321 $200 42 rirure $200 43 rojkzin $200 44 shangguan $200 45 sigurdsun $200 46 xiTaLo97x $200 47 xPrisiliaSTx $200 48 Younjon $200 49 zubat2109 $200 50 zuochun44 $200
  17. Claps
    Jake7589 got a reaction from Stream1907 in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery 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
  18. Fire
    Jake7589 got a reaction from louis.panetie in ๐Ÿ’ฐ [$3,000 USD] NBA Final Fortune ๐Ÿ€   
    @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:36px 28px 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); } } @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } } /* โ”€โ”€ PORTRAIT IMAGE FRAME โ”€โ”€ */ .portrait-frame { display:block; margin:0 auto 26px; max-width:260px; width:100%; border-radius:16px; overflow:hidden; border:1px solid #FFB80033; box-shadow:0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05); position:relative; transition:box-shadow .3s, border-color .3s; } .portrait-frame:hover { border-color:#FFB80077; box-shadow:0 12px 40px rgba(0,0,0,.6), 0 0 24px #FFB80018; } .portrait-frame img { width:100%; height:auto; display:block; } .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 14px; 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 !important; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 4px 20px #FFB80044; position:relative; overflow:hidden; margin-top:10px; } .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; text-decoration:none !important; } .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; --glow:#FFB80018; } .prize-card.gold:hover { border-color:#FFB800aa; box-shadow:0 12px 40px #FFB80030; } .prize-card.silver { border-color:#0079ff33; --glow:#0079ff14; } .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: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; } .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;} .portrait-frame { max-width:200px; } } NBA Final Fortune
    Competition ends: 20/6/2026 @ 1:00 AM GMT
    BING BONG ๐Ÿšจ LET'S GO KNICKS ๐Ÿ“ข
    I WANT TO SEE NEW YORK CITY BURN ๐Ÿ”ฅ
    Place a SGM any each NBA Finals match, share your Bet IDs below, and you could win a share of $3,000.
    ๐Ÿ€ Bet Now ๐Ÿ† $3,000 Prize Pool ๐Ÿฅˆ $200 Each ร— 15 Winners ๐Ÿ’กย Bets must be a SGM and placed on each individual game ๐Ÿ“‹ How To Enter 1 Place a SGMย Bet on eachย NBA Final Matchย on Stake.com 2 Copy your Bet IDs after placing your bet 3 Reply to this thread with your Bet ID โ€” Bets much be a SGM and on each individual match โœ… Requirements ๐Ÿ€ Bets must be placed on eachย NBA Final Match ๐Ÿ’ต Minimum bet amount: $5.00 USD or currency equivalent ๐Ÿ’ฌ Reply to this thread with your Bet IDs ๐Ÿ”’ Must be a Stake.com account โ€” Bronze VIP or above ๐Ÿ’ฐ Prize Pool $3,000 Total Prize Pool ๐Ÿฅˆ 15 ร— Winners$200 each ๐Ÿ‘ฅ Total Winners15 People ๐Ÿ“… Duration17 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. 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
  19. Pepe - Pray
    Jake7589 got a reaction from Eitri in ๐Ÿ’ฐ[$1,000 USD] Bonus Clash: Gummy Drop 1000 vs Rack City Riches ๐ŸฅŠ   
    @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 โ”€โ”€ */ .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 #ffffff12; } .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:32px; font-weight:900; line-height:1.1; letter-spacing:-.02em; 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:500px; margin:0 auto 14px; line-height:1.7; } /* โ”€โ”€ VS BANNER โ”€โ”€ */ .vs-banner { margin-bottom:20px; padding:24px 22px; text-align:center; border-radius:16px; background: linear-gradient(135deg, #0079ff22, #0079ff0a); border:1px solid #0079ff44; position:relative; overflow:hidden; transition:box-shadow .3s; } .vs-banner:hover { box-shadow:0 0 40px #0079ff18; } .vs-banner::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(0,121,255,.1),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } .vs-title { font-size:22px; font-weight:900; color:#fff; margin-bottom:10px; } .vs-title span { color:var(--gold); } .vs-row { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; } .vs-btn { display:inline-block; padding:12px 24px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:15px; font-weight:800; text-decoration:none !important; border-radius:10px; transition:transform .2s, box-shadow .2s; position:relative; overflow:hidden; } .vs-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; } .vs-btn:hover { transform:translateY(-2px); box-shadow:0 6px 24px #FFB80044; text-decoration:none; } .vs-btn:hover::after { transform:translateX(100%); } .vs-divider { font-size:20px; font-weight:900; color:#fff; opacity:.7; } /* โ”€โ”€ 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:26px 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.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:40px; 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 โ”€โ”€ */ .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; } /* โ”€โ”€ STEPS โ”€โ”€ */ .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; } /* โ”€โ”€ REPLY BOX โ”€โ”€ */ .reply-box { margin-top:18px; 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:16px; 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; } /* โ”€โ”€ MINI CARDS โ”€โ”€ */ .stack { display:flex; flex-direction:column; gap:12px; } .mini-card { padding:16px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid #ffffff0a; transition:border-color .25s; } .mini-card:hover { border-color:#FFB80033; } .mini-card h3 { margin:0 0 6px; color:var(--text); font-size:16px; font-weight:700; } .mini-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; } .mini-card strong { color:#fff; } .notice { margin-top:12px; padding:14px 16px; border-radius:14px; background:rgba(255,184,0,.07); border:1px solid rgba(255,184,0,.18); color:var(--muted); font-size:13px; line-height:1.7; } .notice strong { color:#fff; } /* โ”€โ”€ CLEAN LIST โ”€โ”€ */ .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); } /* โ”€โ”€ PRIZE POOL TABLE โ”€โ”€ */ .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; } /* โ”€โ”€ ALERT โ”€โ”€ */ .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 โ”€โ”€ */ .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; } /* โ”€โ”€ TERMS โ”€โ”€ */ .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); } .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:24px; } .vs-row { flex-direction:column; } } Weekly Forum Competition Bonus Clash: Gummy Drop 1000 vs Rack City Riches
    Ends: ย 4/6/2026 @ 1:00 AM GMT
    This week's Bonus Clash is live. Pick the slot you think will pay out bigger, submit your qualifying Bet ID, and you could win a share of the prize pool.
    Win a share of $1,000 ๐Ÿ’ธ ๐Ÿงธ Gummy Drop 1000 VS ๐Ÿ’ธ Rack City Riches ๐Ÿ’ธ $1,000 Total Prize Pool Up for grabs ๐Ÿ† $50 Per Winner ร— 20 Winners ๐Ÿ’ก Make a $20 USD bonus buy on either slot โ€” then reply with your Bet ID to enter! How To Enter Three simple steps
    Pick your slot, place your bonus buy, and post your Bet ID.
    1 Choose your slot
    Pick Gummy Drop 1000 or Rack City Riches โ€” whichever you think will pay bigger.
    2 Make a $20 bonus buy
    Complete a $20 USD bonus buy on your chosen slot.
    3 Reply with your Bet ID
    Post your Bet ID in this thread to submit your entry.
    Prize Distribution How the prize pool works
    $1,000 Total Prize Pool ๐Ÿ’ธ Total Prize Pool$1,000 ๐Ÿ†ย 20 ร— Winners$50 each ๐Ÿ‘ฅ Total Winners20 People ๐Ÿ“… Duration7 Days Requirements Before you enter
    Reply to this thread with your Bet ID Only eligible entries that meet the above conditions can win Stake.com users only โ€” Bronze VIP or above KYC Level 2 verification required โš ๏ธ Don't miss out! Stay tuned for the official winner announcement. You must claim your prize before the coupon link expires โ€” users will not be credited after the 3-month claim period ends. โ€ผ๏ธ Stake.com users only โ€ผ๏ธ Terms of Service โ€” Competition
    For full Terms of Service, expand below.
    ๐Ÿ“„ 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 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 Prizes & Delivery
    Winners will have their username displayed on the thread with a prize claim link. The Community Team may contact you via the platform used to submit your entry. Prizes delivered within 14 days of the 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 (forum moderators are not excluded) Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Entry Requirements
    Entries must be submitted after the Competition is published Entries must meet all submission requirements set by Stake 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 Please read all conditions carefully before entering.
  20. Fire
    Jake7589 got a reaction from Rumadjiii 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
  21. Fire
    Jake7589 got a reaction from ivded in ๐Ÿ’ฐ[$100,000] Football Raffle โšฝ๏ธ   
    Yes it does!
  22. Fire
    Jake7589 got a reaction from Faris 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
  23. Fire
    Jake7589 got a reaction from Nabilmat in ๐Ÿ’ฐ[$100,000] Football Raffle โšฝ๏ธ   
    Yes it does!
  24. Fire
    Jake7589 got a reaction from Jackhackmax in ๐Ÿ’ฐ[$10,000+Rain] Stakeโ€™s World Chat Tournament ๐ŸŸ๏ธ   
    @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:62px; 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:520px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:26px; } .header-desc strong { color:var(--white); } .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 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; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ REWARDS SHOWCASE (TWO CARDS) โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rewards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .reward-card { border-radius:18px; padding:30px 22px 26px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .reward-card:hover { transform:translateY(-6px); } .reward-card.cash { background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 60%, var(--bolt-darker) 130%); border-color: var(--bolt); } .reward-card.cash:hover { box-shadow:0 18px 50px rgba(20,117,225,0.4); } .reward-card.rain { background: linear-gradient(160deg, var(--dash) 0%, var(--dash-dark) 60%, var(--dash-darker) 130%); border-color: var(--dash); } .reward-card.rain:hover { box-shadow:0 18px 50px rgba(0,202,81,0.35); } .reward-card .ribbon { font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:rgba(255,255,255,.85); margin-bottom:10px; } .reward-card .headline { font-family:var(--display); font-weight:900; font-size:54px; line-height:.95; color:var(--white); letter-spacing:.005em; } .reward-card .subline { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.14em; color:var(--white); margin-top:10px; } .reward-card .footnote { font-size:12px; color:rgba(255,255,255,.75); margin-top:12px; letter-spacing:.04em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ POOL STRIP โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .pool-strip { display:flex; justify-content:center; align-items:center; gap:14px; padding:14px 22px; background:linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,184,0,0.03)); border:1px solid rgba(255,184,0,0.4); border-radius:14px; margin-bottom:16px; font-family:var(--display); text-transform:uppercase; letter-spacing:.18em; font-weight:700; color:var(--muted); font-size:13px; transition:box-shadow .3s; } .pool-strip:hover { box-shadow:0 0 30px rgba(255,184,0,0.18); } .pool-strip strong { color:var(--charge); font-size:22px; letter-spacing:.02em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; } .section-intro { font-size:14px; color:#b0cee4; line-height:1.7; margin-top:-6px; margin-bottom:18px; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ CHAT ROOMS GRID โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .rooms-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; } .room { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:18px 10px; background:var(--navy); border:1px solid #ffffff10; border-radius:12px; transition:transform .25s, border-color .25s, background .25s, box-shadow .25s; text-align:center; text-decoration:none; color:inherit; cursor:pointer; } .room:hover { transform:translateY(-3px); } .room .flag { font-size:26px; line-height:1; } .room .lang { font-family:var(--display); font-weight:900; font-size:15px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); } .room.r-bolt { border-color:rgba(20,117,225,0.4); } .room.r-bolt:hover { background:rgba(20,117,225,0.10); border-color:var(--bolt); } .room.r-crash { border-color:rgba(233,17,60,0.4); } .room.r-crash:hover { background:rgba(233,17,60,0.10); border-color:var(--crash); } .room.r-strike { border-color:rgba(255,123,0,0.4); } .room.r-strike:hover { background:rgba(255,123,0,0.10); border-color:var(--strike); } .room.r-charge { border-color:rgba(255,184,0,0.4); } .room.r-charge:hover { background:rgba(255,184,0,0.10); border-color:var(--charge); } .room.r-dash { border-color:rgba(0,202,81,0.4); } .room.r-dash:hover { background:rgba(0,202,81,0.10); border-color:var(--dash); } .room.r-more { border-style:dashed; border-color:rgba(255,255,255,0.18); color:var(--muted); } .room.r-more .lang { color:var(--muted); font-size:13px; letter-spacing:.18em; } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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; line-height:1.55; } .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); } /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PRIZE TABLE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ .tier-head { display:grid; grid-template-columns:1.2fr 2fr 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:8px; } .tier-row { display:grid; grid-template-columns:1.2fr 2fr auto; gap:14px; align-items:center; padding:16px 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-label { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:16px; color:var(--white); letter-spacing:.06em; } .tier-desc { font-size:13px; color:var(--muted); line-height:1.45; } .tier-value { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; white-space:nowrap; } .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-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-bolt .tier-value { color:var(--bolt); } .tier-row.t-dash .tier-value { 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} .d9{animation-delay:.69s} /* โ”€โ”€โ”€โ”€โ”€โ”€โ”€ MOBILE โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ @media(max-width:480px){ .header h1 { font-size:44px; } .pool-total .pool-amount { font-size:54px; } .rewards { grid-template-columns:1fr; } .reward-card .headline { font-size:46px; } .rooms-grid { grid-template-columns:repeat(2, 1fr); } .tier-head, .tier-row { grid-template-columns:1fr; gap:6px; padding:14px; } .tier-head span:last-child { text-align:left; } .tier-value { text-align:left; font-size:20px; } .tier-head span:nth-child(2), .tier-head span:nth-child(3) { display:none; } .section { padding:22px 18px; } .pool-strip { flex-direction:column; gap:4px; text-align:center; padding:18px; } } It's All At Stake Stake's
    World Chat
    Tournament
    Competition ends: 14/7/2026
    Every region has its loyalists. Every chat room has its die-hards. This summer, we're putting it all on the line. Which Stake Chat knows their world football best?
    Stack your SGMs. Stack the wins. Drag your chat room to the top.
    It's All At Stake for your region. Bragging rights and three full days of rain pouring down on the winning room.
    Top 20 Users $500 Each ยท Cash Awarded to the top 20 users in the winning chat room Whole Room 3 Days Extended Rain For every active chatter in the winning room Total Cash Pool $10,000 ยท 20 Winners ๐Ÿ’กย Bets must be Same-Game-Multis (SGMs) on any International Soccer Match [01] Chat Rooms In The Fight Each chat room battles for the crown. Pick yours โ€” every winning SGM stacks for your region.
    ๐Ÿ‡ฌ๐Ÿ‡งEnglish ๐Ÿ‡ซ๐Ÿ‡ทFranรงais ๐ŸŒDeutsch ๐Ÿ‡น๐Ÿ‡ทTรผrkรงe ๐Ÿ‡ต๐Ÿ‡นPortuguรชs ๐Ÿ‡ฎ๐Ÿ‡ณIndia ๐ŸŒFilipino ๐Ÿ‡ฏ๐Ÿ‡ตๆ—ฅๆœฌ่ชž ๐ŸŒPolski ๐ŸŒSuomi ๐ŸŒNigeria ๐Ÿ‡ท๐Ÿ‡บะ ัƒััะบะธะน ๐ŸŒTiแบฟng Viแป‡t ๐ŸŒPakistan ๐Ÿ‡ช๐Ÿ‡ธEspaรฑol ๐Ÿ‡ฐ๐Ÿ‡ทํ•œ๊ตญ์–ด ๐Ÿ‡น๐Ÿ‡ญเธ›เธฃเธฐเน€เธ—เธจเน„เธ—เธข ๐ŸŒูฑู„ู’ุนูŽุฑูŽุจููŠูŽู‘ุฉ ๐ŸŒIndonesian ๐ŸŒNorway ๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡ [02] How To Enter 1 Build a Same-Game-Multi (SGM)ย with a minimum amountย of $5 USD any International Soccer Match this summer 2 Click your chatroom above to join 3 Or find the thread that matches your chat room (English, Hindi, French, Portuguรชs, etc.) and click in 4 Post your Bet ID as a reply on that thread to lock in your entry for your region 5 Every winning SGM posted in your room's thread stacks against every other chat room sitewide [03] Requirements ๐ŸŽฏ Bets must be Same-Game-Multis (SGMs) only โšฝ๏ธ SGMs must be on any International Soccer Match ๐Ÿ’ฌ Post your Bet ID in your region's chat-room thread ๐Ÿ”’ Must be a Stake.com account in good standing [04] Prize Breakdown Total Cash Pool $10,000 20 Winners ยท Top Room Takes All Prize Recipients Value Cash Prize Top 20 users from the winning chat room $500 each Extended Rain All active chatters of the winning chat room 3 Days โš ๏ธ Heads up! Only one chat room wins. Make sure your Bet ID is posted in your region's thread โ€” entries in the wrong room won't count toward your team. โ€ผ๏ธ 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
    The winning chat room is the one with the highest total of winning SGMs posted in its thread by the deadline. Top 20 users from the winning room (by qualifying SGM volume) each receive $500. All active chatters of the winning room receive 3 days of extended rain. Cash prizes delivered within 14 days of competition ending. One entry per Bet ID โ€” duplicate or cross-posted Bet IDs may be disqualified. Eligibility
    Active Stake.com account in good standing KYC Level 2 verification required for cash prize delivery 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
  25. Fire
    Jake7589 got a reaction from Jackhackmax 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
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use