Jump to content

hasanbayari

Noob
  • Posts

    8
  • Joined

  • Last visited

Reputation Activity

  1. Fire
    hasanbayari reacted to BratislavK in 🏆 $400 Endgame Quiz 🧠   
    @keyframes shimmer-text { 0% { background-position: -200% center; } 100% { background-position: 200% center; } } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } @keyframes border-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); } 50% { box-shadow: 0 0 32px 6px rgba(251,191,36,0.15); } } @keyframes star-twinkle { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } } @keyframes row-slide { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } } * { box-sizing: border-box; margin: 0; padding: 0; } body { background: #0a1520; display: flex; justify-content: center; padding: 32px 16px; min-height: 100vh; } .wrap { font-family: Arial, sans-serif; max-width: 720px; width: 100%; padding: 0 0 2rem; } .promo-image { display: block; width: 100%; border-radius: 14px; margin-bottom: 18px; animation: fadeInUp 0.5s ease both; } .top-card { background: #0b1c2a; border-radius: 18px; border: 1px solid rgba(251,191,36,0.4); padding: 32px 28px 28px; text-align: center; position: relative; overflow: hidden; margin-bottom: 18px; animation: border-glow 4s ease-in-out infinite, fadeInUp 0.5s ease both; animation-delay: 0.1s; } .star { position: absolute; width: 4px; height: 4px; background: #fbbf24; border-radius: 50%; animation: star-twinkle var(--dur, 2s) ease-in-out infinite; animation-delay: var(--delay, 0s); pointer-events: none; } .trophy { font-size: 52px; display: inline-block; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 0 16px rgba(251,191,36,0.4)); margin-bottom: 12px; position: relative; z-index: 1; } .endgame-label { display: inline-block; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.4); border-radius: 20px; padding: 4px 16px; font-size: 11px; color: #fbbf24; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; } .banner-title { font-size: 36px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 6px; position: relative; z-index: 1; } .gold-text { background: linear-gradient(90deg, #f59e0b, #fde68a, #fbbf24, #f59e0b); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer-text 3s linear infinite; } .banner-date { font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; margin-bottom: 14px; position: relative; z-index: 1; } .banner-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 520px; margin: 0 auto 18px; position: relative; z-index: 1; } .banner-desc strong { color: #fbbf24; } .badge-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; } .badge { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.28); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: rgba(251,191,36,0.9); font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s, border-color 0.2s; } .badge:hover { background: rgba(251,191,36,0.16); border-color: rgba(251,191,36,0.55); } .section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(251,191,36,0.6); text-align: center; margin-bottom: 10px; font-weight: 700; } .qa-card { background: #0f2233; border: 1px solid rgba(251,191,36,0.22); border-radius: 14px; overflow: hidden; margin-bottom: 18px; animation: fadeInUp 0.5s ease both; animation-delay: 0.2s; } .qa-head { background: rgba(5, 14, 22, 0.8); padding: 12px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(251,191,36,0.15); } .qa-head-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fbbf24; font-weight: 700; } .qa-head-dot { width: 6px; height: 6px; border-radius: 50%; background: #fbbf24; opacity: 0.7; flex-shrink: 0; } .qa-row { display: flex; align-items: center; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); gap: 18px; cursor: default; transition: background 0.22s ease; animation: row-slide 0.4s ease both; } .qa-row:last-child { border-bottom: none; } .qa-row:nth-child(1) { animation-delay: 0.1s; } .qa-row:nth-child(2) { animation-delay: 0.18s; } .qa-row:nth-child(3) { animation-delay: 0.26s; } .qa-row:hover { background: rgba(251,191,36,0.05); } .qa-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.35); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fbbf24; flex-shrink: 0; transition: background 0.22s, box-shadow 0.22s; } .qa-row:hover .qa-num { background: rgba(251,191,36,0.18); box-shadow: 0 0 12px rgba(251,191,36,0.3); } .qa-text { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; transition: color 0.22s; } .qa-row:hover .qa-text { color: rgba(255,255,255,0.95); } .prizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; } .prize-card { background: #0f2233; border: 1px solid rgba(251,191,36,0.22); border-radius: 14px; padding: 22px 18px; text-align: center; position: relative; overflow: hidden; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; animation: fadeInUp 0.5s ease both; } .prize-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(251,191,36,0.6), transparent); } .prize-card.gold { border-color: rgba(251,191,36,0.5); animation: fadeInUp 0.5s ease both, border-glow 3s ease-in-out infinite; } .prize-card:hover { transform: translateY(-5px); border-color: rgba(251,191,36,0.65); box-shadow: 0 12px 36px rgba(251,191,36,0.1); } .prize-card:nth-child(1) { animation-delay: 0.3s; } .prize-card:nth-child(2) { animation-delay: 0.4s; } .prize-emoji { font-size: 32px; display: block; margin-bottom: 10px; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 0 10px rgba(251,191,36,0.35)); } .prize-card:nth-child(2) .prize-emoji { animation-delay: 1s; } .prize-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(251,191,36,0.65); font-weight: 700; margin-bottom: 6px; } .prize-amount { font-size: 32px; font-weight: 900; color: #fbbf24; line-height: 1; margin-bottom: 5px; } .prize-sub { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.4; } .rules-bar { background: rgba(5, 14, 22, 0.7); border: 1px solid rgba(251,191,36,0.14); border-radius: 10px; padding: 13px 18px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.42); letter-spacing: 0.3px; margin-bottom: 18px; } .rules-bar strong { color: rgba(251,191,36,0.85); } .luck-bar { text-align: center; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 1px; } .luck-clover { display: inline-block; animation: float 2.2s ease-in-out infinite; margin-left: 6px; }                        
      $400 Endgame Quiz May 22nd  –  May 24th   Another month comes to an end… and this is the Endgame.
    Only those who stayed sharp throughout will make it to the finish.
    Answer our short quiz based on this month's promotions & events.
    🧠 3 Questions 🥇 $100 First Place 🎁 6 × $50 Draw 🏆 $400 Prize Pool Quiz Questions
      Answer all correctly & include your Stake username 1 What slot is featured in this week's $3,000 Slots Forum Challenge? 2 In which Stake Original game do you need to cross the road and avoid traffic? 3 What is the name of the Sports promotion where you need to win a bet with at least 10x odds by betting on at least 10 matches/selections? Prize Structure
    🥇 First Correct Answer $100 Be first. Be right. Win instantly. 🎁 Random Draw 6 × $50 All remaining correct entries enter the draw. One entry per user  ·  All answers must be correct  ·  Always include your Stake username Good luck! 🍀
  2. Fire
    hasanbayari reacted to DragoslavP in Community Parlay - Sports Challenge   
    (April 20th  - April 25th)
    🏅Weekly Community Parlay 🏅
    Ends: 25/04/2026 @ (12:00 pm) UTC
    >
    Requirements:
    Place an exact bet that our Community Team decided on as a "weekly parlay". The minimum bet amount is set at 2USD$ (in any currency).
      ⬇️Weekly Parlay⬇️

     
    Tips & Terms & Conditions:
    You can bet only on pre-match selections; live bets are not allowed. All of your matches/selections have to be the same as our "weekly parlay." If any bet is voided or canceled, the prize will be the same as the outcome of the parlay. Cashed-out bets are not eligible for the challenge. Stake shield bets are not eligible for the challenge. You have to be one of the VIP members on our site (at least the Bronze VIP level). Bet must have been placed after 20/04/2026 12:00 PM UTC, and it has to be settled before the timer expires! Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Only level 2 KYC or higher verified users will be eligible for the prize.
    You can verify your Stake account here: https://stake.com/settings/verification Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. Only stake.com and official stake.com mirrors users will be eligible for the prize. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. The image of "weekly parlay" is just a visual representation. If crypto changes throughout the duration of this challenge, the prize will be the same amount as on the example picture. Prize Pool Structure(s): 
    If "weekly parlay" doesn't come out as a win, all participants will split $500.00. If "weekly parlay" does come out as a win, all participants will split $2,588.50. Prize pool distribution:
    All players who complete the challenge in the next 5 days will get a share in the prize pool! There is no limit to the number of winners. How to Enter: 
    Respond to this topic by posting your sports bet ID. One valid entry per user Examples of valid bet IDs: sport:123456789
  3. Money
    hasanbayari reacted to AleksandarG in 🏀 [EuroLeague] Points Battle |Round 23|🏀   
    🏀Points Battle🏀


    - Round 23 -
    Ends: 20/01/25 @ (1 pm) GMT
    Requirements:
    Guess the total number of points for each of the 7 selected players. This week's players:

                       🏀Kevarrius Hayes
                       🏀Joel Bolomboy
                       🏀Jasiel Rivero
                       🏀Jerian Grant
                       🏀Mike James
                       🏀Paris Lee
                       🏀Nikola Mirotic
      This refers to the Round 23 matches of the Turkish Airlines EuroLeague. The matches are scheduled for January 22nd, 23rd and 24th. Tips & Terms & Conditions:
    Points are awarded based on how close your predictions are to the actual points for each player.
    Exact match: 150 points
    Within 1 point: 100 points 
    Within 2 points: 75 points
    Within 3 points: 50 points
    Within 4 points: 30 points
    From 5 to 10 points: 15 points
    From 11 to 20 points: 10 points
    From 21 to 30 points: 5 points Total Score: Your total score will be the sum of points from all 7 players. The user with the highest Total Score will be declared the winner. In case of a tie, the user who posted/edited their entry first will have the advantage. If a player is not on the roster for that game due to injury or any other reason. In that case, only the predictions for selected players who participated in Round 23 will be counted. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Any player using multiple accounts will not be eligible for prizes. Do not post more than one comment/entry. You have to be one of the VIP members on our site ( at least the Bronze VIP level ). Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verify Only stake.com and official stake.com mirrors users will be eligible for the prize. Prizes will be paid out via coupon, which will be posted as the last comment on this topic. Prize Pool distribution
    1st place - $80 2nd place - $45 3rd place - $35 4th place - $25 5th place - $15 6th to 10th place - $10  11th to 20th place - $5 How to Enter
    Respond to this topic, with your prediction and Stake username. To qualify, you must make predictions for all selected players. One valid entry per user.
  4. Money
    hasanbayari got a reaction from Nooveikzin in 🏆New Challenges/Promotions Suggestions🏆   
    Hello @SanjaT
    i have a new original game idea : " cross the street " its an amazing game which should the user bet and then start to press on every multip. On the street but if the cars kill him he lose , when we bet it start with 1.03 x if the car didnt kill the cheken then I  press on the other multip. Which is 1.06x then 1.12x then 1.24x etc....  the max multipl. Lets say 24x .
    all casino player like it , you can find it in any casino site it will be amazing here in stake 
    Thank you ...
     
    Hasanbayari
  5. Bitcoin
    hasanbayari reacted to SanjaT in 🏆New Challenges/Promotions Suggestions🏆   
    Hello Stakers  
    As we always appreciate Stake Community's opinion, 
    we would like to hear your suggestion about new Challenges/Promotions you would like to see on the Forum.
    If we decide to accept your suggestion, you might find some small tips on your balance. 🤑
    Your suggestions can include any casino game we have on Stake.com You can also suggest contests or competitions which are not related to games, but, for example, upcoming events Duration of the challenges can vary Prize pools and bet amounts (if applicable) will be decided by Stake Staff If your suggestion is accepted, you will be contacted via live Support Chat  Do not forget to submit your Stake username We are looking forward to hearing your proposals! 🍀 
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use