ProjectGenesis commited on
Commit
6d14f89
Β·
verified Β·
1 Parent(s): f2c1d9a

Add a randomize alternating rewards Floating Pill underneath the "Sticky Payment Marquee"

Browse files
Files changed (2) hide show
  1. index.html +10 -0
  2. style.css +31 -1
index.html CHANGED
@@ -670,6 +670,16 @@
670
  <body class="relative">
671
  <!-- Sticky Payment Marquee -->
672
  <div class="sticky-payment-header bg-black/90 backdrop-blur-sm border-b border-orange-500/10 py-1 z-50">
 
 
 
 
 
 
 
 
 
 
673
  <div class="marquee-container relative overflow-hidden w-full">
674
  <div class="marquee-content flex items-center justify-around gap-8 py-1 animate-marquee whitespace-nowrap">
675
  <div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-900/30 backdrop-blur-sm">
 
670
  <body class="relative">
671
  <!-- Sticky Payment Marquee -->
672
  <div class="sticky-payment-header bg-black/90 backdrop-blur-sm border-b border-orange-500/10 py-1 z-50">
673
+ <!-- Rewards Ticker -->
674
+ <div class="reward-ticker bg-gradient-to-r from-orange-900/30 to-blue-900/30 py-1 px-4 text-center overflow-hidden">
675
+ <div class="marquee-content orbitron text-xs md:text-sm whitespace-nowrap">
676
+ <span class="ticker-item neon-orange">🎰 300% WELCOME BONUS 🎰</span>
677
+ <span class="ticker-item neon-blue">πŸ’° 10% WEEKLY CASHBACK πŸ’°</span>
678
+ <span class="ticker-item neon-orange">πŸ”₯ $100,000+ PAID OUT DAILY πŸ”₯</span>
679
+ <span class="ticker-item neon-blue">⚑ INSTANT WITHDRAWALS ⚑</span>
680
+ <span class="ticker-item neon-orange">🎁 MONTHLY GIVEAWAYS 🎁</span>
681
+ </div>
682
+ </div>
683
  <div class="marquee-container relative overflow-hidden w-full">
684
  <div class="marquee-content flex items-center justify-around gap-8 py-1 animate-marquee whitespace-nowrap">
685
  <div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-900/30 backdrop-blur-sm">
style.css CHANGED
@@ -1,7 +1,37 @@
1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  /* Sticky Payment Header */
3
  .sticky-payment-header {
4
- position: sticky;
5
  top: 0;
6
  left: 0;
7
  width: 100%;
 
1
 
2
+ /* Reward Ticker */
3
+ .reward-ticker {
4
+ position: relative;
5
+ overflow: hidden;
6
+ height: 28px;
7
+ display: flex;
8
+ align-items: center;
9
+ justify-content: center;
10
+ border-top: 1px solid rgba(255,106,0,0.1);
11
+ border-bottom: 1px solid rgba(0,228,255,0.1);
12
+ }
13
+
14
+ .reward-ticker .marquee-content {
15
+ display: inline-block;
16
+ animation: ticker-scroll 20s linear infinite;
17
+ padding-left: 100%;
18
+ }
19
+
20
+ .reward-ticker .ticker-item {
21
+ margin: 0 2rem;
22
+ display: inline-block;
23
+ white-space: nowrap;
24
+ animation: glow-pulse 3s infinite alternate;
25
+ }
26
+
27
+ @keyframes glow-pulse {
28
+ 0% { opacity: 0.7; text-shadow: 0 0 5px rgba(255,106,0,0.5); }
29
+ 100% { opacity: 1; text-shadow: 0 0 15px rgba(255,106,0,0.9); }
30
+ }
31
+
32
  /* Sticky Payment Header */
33
  .sticky-payment-header {
34
+ position: sticky;
35
  top: 0;
36
  left: 0;
37
  width: 100%;