Jump to content

Faris

Moderator
  • Posts

    1545
  • Joined

  • Days Won

    20

Reputation Activity

  1. Fire
    Faris reacted to Jake7589 in πŸ’°[$100,000] Football Raffle ⚽️   
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Barlow+Condensed:wght@700;800;900&display=swap'); :root { /* Brand Primary */ --navy: #071824; --white: #ffffff; /* Bolt (primary accent) */ --bolt: #1475E1; --bolt-dark: #0749CE; --bolt-darker: #082F5A; /* Crash */ --crash: #E9113C; --crash-dark: #C9000A; --crash-darker: #5D0718; /* Strike */ --strike: #FF7B00; --strike-dark: #FF4E00; --strike-darker: #663100; /* Charge */ --charge: #FFB800; --charge-dark: #FF8C00; --charge-darker: #4D3700; /* Dash */ --dash: #00CA51; --dash-dark: #00AD2A; --dash-darker: #005120; /* Surfaces */ --surface: #0d2438; --surface2: #112d44; --muted: #7fa8c4; /* Display font */ --display: 'Barlow Condensed', 'Inter', sans-serif; } * { margin:0; padding:0; box-sizing:border-box; } body { background: var(--navy); color: var(--white); font-family: 'Inter', sans-serif; min-height: 100vh; overflow-x: hidden; } .container { max-width:740px; margin:0 auto; padding:24px 20px 60px; position:relative; z-index:1; } .fade-up { opacity:0; transform:translateY(28px); animation:fadeUp .6s ease forwards; } @keyframes fadeUp { to { opacity:1; transform:none; } } /* ─────── HEADER ─────── */ .header { text-align:center; padding:48px 28px 40px; background: linear-gradient(160deg, var(--surface2) 0%, var(--navy) 100%); border-radius:20px; border:1px solid #ffffff14; margin-bottom:20px; position:relative; overflow:hidden; animation-delay:.05s; } .header::before { content:''; position:absolute; top:-80px; left:50%; transform:translateX(-50%); width:380px; height:380px; background: radial-gradient(circle, rgba(20,117,225,0.20) 0%, transparent 70%); animation: pulse-glow 4s ease-in-out infinite; pointer-events:none; } @keyframes pulse-glow { 0%,100% { opacity:.55; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.15); } } .eyebrow { font-family: var(--display); font-weight:700; font-size:13px; letter-spacing:.32em; color:var(--bolt); text-transform:uppercase; margin-bottom:14px; } .header h1 { font-family: var(--display); font-size:64px; font-weight:900; text-transform:uppercase; line-height:.92; letter-spacing:.01em; color:var(--white); margin-bottom:4px; } .h1-accent { color:var(--charge); } .ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.15em; margin:18px 0 10px; } .ends-label strong { color:var(--white); } .countdown-wrapper { margin:10px 0 22px; } .countdown-wrapper iframe { border-radius:8px; } .header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 14px; line-height:1.7; } .header-desc:last-of-type { margin-bottom:24px; } .play-btn { display:inline-block; font-family: var(--display); padding:18px 50px; background: linear-gradient(135deg, var(--bolt) 0%, var(--bolt-dark) 100%); color:var(--white); font-size:22px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; border-radius:12px; transition:transform .2s, box-shadow .2s; position:relative; overflow:hidden; } .play-btn::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); transform:translateX(-100%); transition:transform .5s ease; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(20,117,225,0.45); } .play-btn:hover::after { transform:translateX(100%); } .play-btn:active { transform:scale(.97); } /* ─────── INLINE MATCH LINK ─────── */ .match-link { color:var(--bolt); text-decoration:none; border-bottom:1px dashed rgba(20,117,225,0.55); padding-bottom:1px; transition:color .2s, border-color .2s, border-style .2s; } .match-link:hover { color:#5fb0ff; border-bottom-color:#5fb0ff; border-bottom-style:solid; } .match-link strong { color:inherit; } /* ─────── PODIUM (TOP 3) ─────── */ .podium { display:grid; grid-template-columns:1fr 1.2fr 1fr; gap:14px; margin-bottom:16px; align-items:end; } .podium-card { border-radius:16px; padding:26px 16px 22px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, box-shadow .3s; } .podium-card:hover { transform:translateY(-6px); } .podium-1 { grid-column:2; grid-row:1; background: linear-gradient(160deg, var(--charge) 0%, var(--charge-dark) 65%, var(--charge-darker) 130%); border-color: var(--charge); padding:36px 16px 30px; } .podium-1 .rank, .podium-1 .amount, .podium-1 .winner-of { color:var(--navy); } .podium-1:hover { box-shadow:0 16px 44px rgba(255,184,0,0.35); } .podium-2 { grid-column:1; grid-row:1; background: linear-gradient(160deg, var(--bolt) 0%, var(--bolt-dark) 65%, var(--bolt-darker) 130%); border-color: var(--bolt); } .podium-2:hover { box-shadow:0 16px 44px rgba(20,117,225,0.4); } .podium-3 { grid-column:3; grid-row:1; background: linear-gradient(160deg, var(--crash) 0%, var(--crash-dark) 65%, var(--crash-darker) 130%); border-color: var(--crash); } .podium-3:hover { box-shadow:0 16px 44px rgba(233,17,60,0.35); } .podium-card .rank { font-family:var(--display); font-weight:900; font-size:18px; text-transform:uppercase; letter-spacing:.22em; color:var(--white); margin-bottom:6px; opacity:.9; } .podium-card .amount { font-family:var(--display); font-weight:900; font-size:44px; line-height:1; color:var(--white); letter-spacing:.01em; } .podium-1 .amount { font-size:52px; } .podium-card .winner-of { font-family:var(--display); font-weight:700; font-size:11px; letter-spacing:.25em; text-transform:uppercase; margin-top:10px; color:var(--white); opacity:.7; } /* ─────── PILL ─────── */ .pill { background:rgba(20,117,225,0.10); border:1px solid rgba(20,117,225,0.35); border-radius:40px; padding:12px 22px; text-align:center; font-size:13px; font-weight:600; color:#7fb8ff; margin-bottom:18px; transition:background .3s, border-color .3s; } .pill:hover { background:rgba(20,117,225,0.18); border-color:rgba(20,117,225,0.6); } .pill strong { color:var(--white); } /* ─────── SECTION ─────── */ .section { background: var(--surface); border-radius:16px; padding:26px; margin-bottom:16px; border:1px solid #ffffff0d; transition:border-color .3s, box-shadow .3s; } .section:hover { border-color:rgba(20,117,225,0.35); box-shadow:0 4px 24px rgba(20,117,225,0.08); } .section-title { font-family:var(--display); font-size:24px; font-weight:900; color:var(--white); text-transform:uppercase; letter-spacing:.05em; margin-bottom:20px; display:flex; align-items:center; gap:12px; } .section-title .num { color:var(--bolt); font-size:18px; font-weight:700; letter-spacing:.1em; } /* ─────── STEPS ─────── */ .steps { display:flex; flex-direction:column; gap:14px; } .step { display:flex; gap:14px; align-items:flex-start; } .step-num { font-family:var(--display); min-width:38px; height:38px; background: linear-gradient(135deg, var(--bolt), var(--bolt-dark)); border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:19px; color:var(--white); flex-shrink:0; transition:transform .25s, box-shadow .25s; } .step:hover .step-num { transform:scale(1.12); box-shadow:0 0 0 6px rgba(20,117,225,0.15); } .step-text { font-size:15px; color:#b0cee4; padding-top:7px; } .step-text strong { color:var(--white); } /* ─────── REQUIREMENTS ─────── */ .req-list { display:flex; flex-direction:column; gap:10px; } .req-item { display:flex; align-items:center; gap:14px; background:var(--navy); border-radius:12px; padding:14px 16px; border:1px solid #ffffff0a; transition:background .25s, border-color .25s, transform .25s; } .req-item:hover { background:#0a2236; border-color:rgba(20,117,225,0.45); transform:translateX(6px); } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#b0cee4; } .req-text strong { color:var(--bolt); } /* ─────── POOL HERO ─────── */ .pool-total { text-align:center; padding:32px 22px; background:linear-gradient(135deg, rgba(20,117,225,0.10), rgba(20,117,225,0.02)); border:1px solid rgba(20,117,225,0.35); border-radius:16px; margin-bottom:20px; transition:box-shadow .3s; position:relative; overflow:hidden; } .pool-total::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 50% 0%, rgba(20,117,225,0.18) 0%, transparent 60%); pointer-events:none; } .pool-total:hover { box-shadow:0 0 40px rgba(20,117,225,0.18); } .pool-total .pool-label { font-family:var(--display); font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.3em; margin-bottom:10px; position:relative; } .pool-total .pool-amount { font-family:var(--display); font-size:78px; font-weight:900; color:var(--bolt); line-height:1; letter-spacing:.01em; position:relative; animation: count-pulse 3s ease-in-out infinite; } @keyframes count-pulse { 0%,100% { filter:drop-shadow(0 0 0 transparent); } 50% { filter:drop-shadow(0 0 24px rgba(20,117,225,0.5)); } } .pool-total .winners-line { font-family:var(--display); font-size:14px; color:var(--white); text-transform:uppercase; letter-spacing:.22em; margin-top:12px; font-weight:700; position:relative; } .pool-total .winners-line strong { color:var(--charge); } /* ─────── TIER TABLE ─────── */ .tier-head { display:grid; grid-template-columns:110px 1fr auto; gap:14px; padding:0 18px 10px; font-family:var(--display); font-size:11px; letter-spacing:.25em; text-transform:uppercase; color:var(--muted); font-weight:700; } .tier-head span:last-child { text-align:right; } .tier-table { display:flex; flex-direction:column; gap:6px; } .tier-row { display:grid; grid-template-columns:110px 1fr auto; gap:14px; align-items:center; padding:14px 18px; background:var(--navy); border-radius:10px; border:1px solid #ffffff0a; transition:background .2s, border-color .2s, transform .2s; } .tier-row:hover { background:#0a2236; border-color:rgba(20,117,225,0.3); transform:translateX(4px); } .tier-rank { font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:18px; color:var(--white); letter-spacing:.04em; } .tier-winners { font-size:13px; color:var(--muted); } .tier-amount { font-family:var(--display); font-weight:900; font-size:22px; color:var(--bolt); text-align:right; letter-spacing:.01em; } .tier-row.t-charge { border-color:rgba(255,184,0,0.4); background:linear-gradient(90deg, rgba(255,184,0,0.07), var(--navy) 60%); } .tier-row.t-bolt { border-color:rgba(20,117,225,0.4); background:linear-gradient(90deg, rgba(20,117,225,0.07), var(--navy) 60%); } .tier-row.t-crash { border-color:rgba(233,17,60,0.4); background:linear-gradient(90deg, rgba(233,17,60,0.07), var(--navy) 60%); } .tier-row.t-strike { border-color:rgba(255,123,0,0.4); background:linear-gradient(90deg, rgba(255,123,0,0.07), var(--navy) 60%); } .tier-row.t-dash { border-color:rgba(0,202,81,0.4); background:linear-gradient(90deg, rgba(0,202,81,0.07), var(--navy) 60%); } .tier-row.t-charge .tier-amount { color:var(--charge); } .tier-row.t-bolt .tier-amount { color:var(--bolt); } .tier-row.t-crash .tier-amount { color:var(--crash); } .tier-row.t-strike .tier-amount { color:var(--strike); } .tier-row.t-dash .tier-amount { color:var(--dash); } /* ─────── NOTICE ─────── */ .notice { background:rgba(255,123,0,0.08); border:1px solid rgba(255,123,0,0.32); border-radius:14px; padding:16px; margin-bottom:16px; display:flex; gap:14px; align-items:flex-start; transition:border-color .3s; } .notice:hover { border-color:rgba(255,123,0,0.6); } .n-icon { font-size:22px; flex-shrink:0; } .n-text { font-size:13px; color:#f0c8a0; line-height:1.7; } .n-text strong { color:var(--white); } /* ─────── STAKE BADGE ─────── */ .stake-badge { font-family:var(--display); text-align:center; padding:16px; background:linear-gradient(135deg, rgba(20,117,225,0.18), rgba(20,117,225,0.04)); border:1px solid rgba(20,117,225,0.4); border-radius:12px; color:var(--white); font-weight:900; font-size:18px; letter-spacing:.2em; text-transform:uppercase; margin-bottom:16px; position:relative; overflow:hidden; transition:box-shadow .3s; } .stake-badge:hover { box-shadow:0 0 32px rgba(20,117,225,0.3); } .stake-badge::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(20,117,225,0.18),transparent); animation:sweep 3s linear infinite; } @keyframes sweep { to { left:160%; } } /* ─────── TERMS ─────── */ details { background:var(--navy); border:1px solid #ffffff0d; border-radius:14px; overflow:hidden; transition:border-color .3s; } details:hover { border-color:rgba(20,117,225,0.3); } summary { padding:18px 20px; cursor:pointer; font-family:var(--display); font-weight:900; font-size:15px; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); list-style:none; display:flex; justify-content:space-between; align-items:center; user-select:none; transition:color .2s; } summary:hover { color:var(--white); } summary::after { content:'β–Ό'; font-size:10px; color:var(--bolt); } details[open] summary::after { content:'β–²'; } .terms-body { padding:0 20px 20px; font-size:13px; color:#6a90a8; line-height:1.9; } .terms-body h2 { font-family:var(--display); font-size:14px; color:var(--bolt); text-transform:uppercase; letter-spacing:.18em; margin:18px 0 8px; font-weight:900; } .terms-body ul, .terms-body ol { padding-left:20px; } .terms-body li { margin-bottom:5px; } .terms-body a { color:var(--bolt); } /* ─────── ANIMATION DELAYS ─────── */ .d1{animation-delay:.05s} .d2{animation-delay:.13s} .d3{animation-delay:.21s} .d4{animation-delay:.29s} .d5{animation-delay:.37s} .d6{animation-delay:.45s} .d7{animation-delay:.53s} .d8{animation-delay:.61s} /* ─────── MOBILE ─────── */ @media(max-width:480px){ .header h1 { font-size:46px; } .pool-total .pool-amount { font-size:56px; } .podium { grid-template-columns:1fr; } .podium-1, .podium-2, .podium-3 { grid-column:1; grid-row:auto; } .podium-1 { order:1; } .podium-2 { order:2; } .podium-3 { order:3; } .tier-head, .tier-row { grid-template-columns:84px 1fr auto; gap:10px; padding:12px 14px; } .tier-rank { font-size:15px; } .tier-amount { font-size:17px; } .tier-winners { font-size:12px; } .section { padding:22px 18px; } } It's All At Stake $100K Football
    Raffle
    Competition ends: 18/7/2026 @ 1:00 AM GMT
    The biggest summer in football just got bigger. Here's your shot at $100K.
    We're not watching from the sidelines. We're putting $100,000 on the table for the fans who live for every moment in every match.
    Every $10+ bet you place is another Bet ID, another entry, another shot at the draw. Bet once, you're in. Bet ten times, you've got ten shots. Bet every match? The draw's stacked in your favour.
    It's All At Stake for you. Trust your team. Trust yourself. The more you back, the better your odds.
    ⚽️ Bet Now 1st Place $50,000 1 Winner 2nd $12,000 1 Winner 3rd $6,000 1 Winner πŸ’‘Β Bets must be on any International Soccer MatchΒ - The more Bets you share, the higher your chances [01] How To Enter 1 Place a qualifying bet on any International Soccer Match on Stake.com 2 Copy your Bet ID after placing your bet 3 Reply to this thread with your Bet ID to enter [02] Requirements ⚽️ Bets must be on any International Soccer Match πŸ’΅ Minimum bet: $10.00 USD or currency equivalent πŸ’¬ Reply to this thread with your Bet ID πŸ”’ Must be a Stake.com account β€” Bronze VIP or above [03] Prize Pool Total Prize Pool $100,000 100 Winners Β· Drawn at Random Position Winners Prize 1st 1 winner $50,000 2nd 1 winner $12,000 3rd 1 winner $6,000 4th 1 winner $4,000 5th 1 winner $3,000 6th 1 winner $2,000 7th 1 winner $1,500 8th 1 winner $1,200 9th 1 winner $1,000 10th 1 winner $800 11th – 15th 5 winners $700 ea 16th – 20th 5 winners $500 ea 21st – 30th 10 winners $400 ea 31st – 40th 10 winners $250 ea 41st – 55th 15 winners $175 ea 56th – 70th 15 winners $100 ea 71st – 85th 15 winners $75 ea 86th – 100th 15 winners $50 ea ⚠️ Don't miss out! Stay tuned for winner announcements. You must claim your prize within 3 months β€” users will not be credited after this period expires. ‼️ Stake.com Users Only ‼️ πŸ“„ Full Terms & Conditions This competition is published by Stake, which operates stake.com, and is subject to the Stake Terms and Conditions and Community Terms of Use.
    In the event of conflict, the following order of precedence applies:
    Terms and Conditions These Rules Stake Community Terms of Use Prizes & Delivery
    Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 14 days of competition ending. Winners selected at random from all eligible entries. Eligibility
    Bronze VIP account or above on Stake KYC Level 2 verification required Account must have no restrictions or exclusions Must not be a Stake employee Must maintain only one Stake account Must not be in a Prohibited Jurisdiction Stake's Reserved Rights
    To amend the Rules at any time To cancel the Competition at any time To verify the nominated account for prize delivery
  2. Pepe - Pain
    Faris reacted to Aerena09 in I muted a mod because....   
    I think I will mute Faris Tale for chat jumping 🦘.
    I’ll be kind to him and won’t give him a permanent mute. A 10-year mute is fine,Β @FarisΒ mewted for 10 years 🫢
  3. Imposter
    Faris reacted to KatarinaDo in I muted a mod because....   
    This is a really interesting topic. I'm looking forward to hearing everyone's answers. They might even help us improve our work and provide a better experience for everyone. Β 
  4. Fire
    Faris reacted to DamjanTo in Does anyone know about rain in Stake?   
    Hello @Lalitasilver

    Rain can be generated by a stake-sponsored rain-bot or by other users. Local chats have a rain-bot, while global chats, English, Sports, and Challenges only have user-generated rains.Β 

    Rain is randomly distributed to users who are rain-eligible. β˜”οΈRain eligible users have over $3500 wagered in the past 7 days and completed LVL 2 verification, and you have to be an active player and chatter.

    Users can rain by typing /rain in the chatbox.

    Kind regards,
    DamjanTo
    Β 
  5. Fire
    Faris reacted to BratislavK in πŸ† $400 Endgame Quiz 🧠   
    πŸŽ‰ Congratulations πŸŽ‰
    You can claim prizes on the link below until the 21st of June!
    Username Prize buni $100.00 Astar19 $50.00 Gzone83 $50.00 hientn6868 $50.00 Oleg2771550 $50.00 michamnk $50.00 scooper999 $50.00 CLAIM HERE
  6. Fire
    Faris reacted to BratislavK in πŸ† $400 Endgame Quiz 🧠   
    ( May 22nd - May 24th )
    πŸ† $400 Endgame Quiz 🧠
    Another month comes to an end… and this is the Endgame.
    Only those who stayed sharp throughout will make it to the finish. Think you’ve been paying attention?
    We’ve prepared a short quiz based on this month’s promotions and events.
    Answer all questions correctly and include your Stake username to qualify.
    # Question 1 What slot is featured in this week's $3,000 Slots Forum Challenge? 2 In which Stake Original game do you need to cross the road and avoid traffic? 3 What is the name of the Sports promotion where you need to win a bet with at least 10x odds by betting on at least 10 matches/selections? πŸ₯‡ First correct answer: $100
    🎁 Other winners: All remaining correct entries enter a random draw, where 6 winners will receive $50 each
    .qtext { transition: all 0.25s ease; } .qtext:hover { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,0.6); } Only one entry per user is allowed.

    Good luck!πŸ€
    Β 
  7. Fire
    Faris got a reaction from wer in Weekend Stream + Giveaway   
    Faris
  8. Bitcoin
    Faris got a reaction from wer in Chat Rules   
    I showed you the exact rule you broke above. We also do not give warnings for such violations. Your mute log is not clean and you should know the rules.Β The moderator has already responded to your appeal.Β 

    Regards
  9. Fire
    Faris got a reaction from KaiZidan in Weekend Stream + Giveaway   
    Faris
  10. Fire
    Faris got a reaction from Jackhackmax in Ladder bonus   
    Ladder bonus isn't a mandatory or official bonus. It's a random bonus that users receive from time to time via email. Support can't do anything about it.
  11. Pepe - Pray
    Faris got a reaction from flip in Weekend Stream + Giveaway   
    Faris
  12. Pepe - Pray
    Faris got a reaction from KaiZidan in Weekend Stream + Giveaway   
    Faris
  13. Fire
    Faris got a reaction from Kobar in Weekend Stream + Giveaway   
    Faris
  14. Fire
    Faris got a reaction from Abhayspam in Weekend Stream + Giveaway   
    Faris
  15. Fire
    Faris got a reaction from gajin in Weekend Stream + Giveaway   
    Faris
  16. Eddie
    Faris got a reaction from Aschwaa in Weekend Stream + Giveaway   
    Faris
  17. Fire
    Faris got a reaction from Andreys in Weekend Stream + Giveaway   
    Faris
  18. Fire
    Faris got a reaction from RollPro in Weekend Stream + Giveaway   
    Faris
  19. Pepe - Love
    Faris got a reaction from KOBAYANYAN in Weekend Stream + Giveaway   
    Faris
  20. Bitcoin
    Faris got a reaction from TBei22 in Weekend Stream + Giveaway   
    Faris
  21. Fire
    Faris got a reaction from MilicaRa in Stake forum weekend stream giveaway result   
    Hello,

    When you win, your prize is sent to your Vault by Vip Host.. If there's nothing, you haven't won.
  22. Fire
    Faris reacted to NemanjaPi in New Promotions? Hot or Not? πŸ‘‚   
    You may have noticed that recently we’ve been running a lot more promotions on the forum. We’d really like to hear your thoughts on them.
    If you could, please let us know which promotions you enjoyed the most and which ones you’d like to see repeated on a weekly basis. Also, feel free to share any feedback or ideas on how we could improve them further.
    Your opinion means a lot to us and helps shape future events, so don’t hold back!
  23. Pepe - Hands Up
    Faris got a reaction from Zeus in Stake forum weekend stream giveaway result   
    Hello,

    When you win, your prize is sent to your Vault by Vip Host.. If there's nothing, you haven't won.
  24. Fire
    Faris got a reaction from matias Nicolas in A never ending thread (last post wins)   
  25. Fire
    Faris got a reaction from Morax69 in how to join eddies giveway bonus buy?/   
    Hi,

    During the stream, you'll need to join the Discord channel pinned in the stream chat, and then join one of the 47 rooms. Mikey will then select the winners from rooms generated by a random number generator.

    Regards
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use