metiny commited on
Commit
d8c4e8f
·
verified ·
1 Parent(s): 8eaaf0d

Düzeltme taleplerim şu şekildedir.

Browse files

- Menü butonlarının çalıştığından emin ol. Sayfa içi navigasyonlar başarılı çalışmıyor.
- Navbar alanında bulunan "Sign up" ve "login" butonları çalışmıyor.
- Genel olarak sistemde günlük kazanç %1 olacak şekilde tüm sayfayı yeniden yapılandır.
- Sayfalar ve diğer herşey ingilizce olarak kalsın.
- Birden fazla plan satın alınabilir.
- Planlar şu şekilde
++ Starter: 1% günlük kazanç. Sabit $10 yatırım zorunludur. Çekim periyodu günlük.
++ Professional: %1 günlük kazanç. Sabit $100 zorunludur. Çekim periyodu 12 saat aralıklarda.
++ Vip: %1 günlük kazanç. Sabit $1000 zorunludur. Çekim periyodu 6 saat aralıklarda.

Files changed (6) hide show
  1. README.md +8 -5
  2. components/footer.js +243 -0
  3. components/navbar.js +260 -0
  4. index.html +483 -19
  5. script.js +237 -0
  6. style.css +109 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Wealthbuilder Daily
3
- emoji: 📚
4
- colorFrom: red
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: WealthBuilder Daily 💎
3
+ colorFrom: gray
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
components/footer.js ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ footer {
7
+ background: #0a0a0a;
8
+ border-top: 1px solid rgba(250, 204, 21, 0.2);
9
+ padding: 3rem 0 1rem;
10
+ margin-top: 5rem;
11
+ }
12
+
13
+ .footer-container {
14
+ max-width: 1280px;
15
+ margin: 0 auto;
16
+ padding: 0 1rem;
17
+ }
18
+
19
+ .footer-grid {
20
+ display: grid;
21
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
22
+ gap: 2rem;
23
+ margin-bottom: 2rem;
24
+ }
25
+
26
+ .footer-column h3 {
27
+ color: #eab308;
28
+ font-size: 1.25rem;
29
+ font-weight: bold;
30
+ margin-bottom: 1rem;
31
+ }
32
+
33
+ .footer-column p {
34
+ color: #9ca3af;
35
+ line-height: 1.6;
36
+ margin-bottom: 1rem;
37
+ }
38
+
39
+ .footer-links {
40
+ list-style: none;
41
+ padding: 0;
42
+ margin: 0;
43
+ }
44
+
45
+ .footer-links li {
46
+ margin-bottom: 0.75rem;
47
+ }
48
+
49
+ .footer-links a {
50
+ color: #9ca3af;
51
+ text-decoration: none;
52
+ transition: color 0.3s ease;
53
+ display: inline-flex;
54
+ align-items: center;
55
+ gap: 0.5rem;
56
+ }
57
+
58
+ .footer-links a:hover {
59
+ color: #eab308;
60
+ transform: translateX(5px);
61
+ }
62
+
63
+ .social-links {
64
+ display: flex;
65
+ gap: 1rem;
66
+ margin-top: 1rem;
67
+ }
68
+
69
+ .social-link {
70
+ width: 2.5rem;
71
+ height: 2.5rem;
72
+ background: rgba(250, 204, 21, 0.1);
73
+ border: 1px solid rgba(250, 204, 21, 0.3);
74
+ border-radius: 0.5rem;
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: center;
78
+ color: #eab308;
79
+ text-decoration: none;
80
+ transition: all 0.3s ease;
81
+ }
82
+
83
+ .social-link:hover {
84
+ background: rgba(250, 204, 21, 0.2);
85
+ transform: translateY(-3px);
86
+ box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
87
+ }
88
+
89
+ .payment-methods {
90
+ display: flex;
91
+ gap: 1rem;
92
+ margin-top: 1rem;
93
+ flex-wrap: wrap;
94
+ }
95
+
96
+ .payment-method {
97
+ padding: 0.5rem 1rem;
98
+ background: rgba(250, 204, 21, 0.05);
99
+ border: 1px solid rgba(250, 204, 21, 0.2);
100
+ border-radius: 0.25rem;
101
+ color: #9ca3af;
102
+ font-size: 0.875rem;
103
+ transition: all 0.3s ease;
104
+ }
105
+
106
+ .payment-method:hover {
107
+ background: rgba(250, 204, 21, 0.1);
108
+ border-color: #eab308;
109
+ color: #eab308;
110
+ }
111
+
112
+ .footer-bottom {
113
+ border-top: 1px solid rgba(42, 42, 42, 0.5);
114
+ padding-top: 2rem;
115
+ display: flex;
116
+ justify-content: space-between;
117
+ align-items: center;
118
+ flex-wrap: wrap;
119
+ gap: 1rem;
120
+ }
121
+
122
+ .copyright {
123
+ color: #6b7280;
124
+ font-size: 0.875rem;
125
+ }
126
+
127
+ .footer-bottom-links {
128
+ display: flex;
129
+ gap: 2rem;
130
+ list-style: none;
131
+ padding: 0;
132
+ margin: 0;
133
+ }
134
+
135
+ .footer-bottom-links a {
136
+ color: #6b7280;
137
+ text-decoration: none;
138
+ font-size: 0.875rem;
139
+ transition: color 0.3s ease;
140
+ }
141
+
142
+ .footer-bottom-links a:hover {
143
+ color: #eab308;
144
+ }
145
+
146
+ @media (max-width: 768px) {
147
+ .footer-grid {
148
+ grid-template-columns: 1fr;
149
+ }
150
+
151
+ .footer-bottom {
152
+ flex-direction: column;
153
+ text-align: center;
154
+ }
155
+
156
+ .footer-bottom-links {
157
+ flex-direction: column;
158
+ gap: 1rem;
159
+ }
160
+ }
161
+ </style>
162
+
163
+ <footer>
164
+ <div class="footer-container">
165
+ <div class="footer-grid">
166
+ <div class="footer-column">
167
+ <h3>About GoldenVault Pro</h3>
168
+ <p>Your trusted partner in cryptocurrency and forex investments. We provide secure, high-yield investment opportunities with guaranteed daily returns.</p>
169
+ <div class="social-links">
170
+ <a href="#" class="social-link" title="Facebook">
171
+ <svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
172
+ <path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
173
+ </svg>
174
+ </a>
175
+ <a href="#" class="social-link" title="Twitter">
176
+ <svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
177
+ <path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/>
178
+ </svg>
179
+ </a>
180
+ <a href="#" class="social-link" title="Telegram">
181
+ <svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
182
+ <path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z"/>
183
+ </svg>
184
+ </a>
185
+ <a href="#" class="social-link" title="Instagram">
186
+ <svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
187
+ <path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zM5.838 12a6.162 6.162 0 1 1 12.324 0 6.162 6.162 0 0 1-12.324 0zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm4.965-10.405a1.44 1.44 0 1 1 2.881.001 1.44 1.44 0 0 1-2.881-.001z"/>
188
+ </svg>
189
+ </a>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="footer-column">
194
+ <h3>Quick Links</h3>
195
+ <ul class="footer-links">
196
+ <li><a href="#invest"><i data-feather="chevron-right" class="w-4 h-4"></i> Investment Plans</a></li>
197
+ <li><a href="#how"><i data-feather="chevron-right" class="w-4 h-4"></i> How It Works</a></li>
198
+ <li><a href="#calculator"><i data-feather="chevron-right" class="w-4 h-4"></i> Calculator</a></li>
199
+ <li><a href="#faq"><i data-feather="chevron-right" class="w-4 h-4"></i> FAQ</a></li>
200
+ <li><a href="#testimonials"><i data-feather="chevron-right" class="w-4 h-4"></i> Testimonials</a></li>
201
+ </ul>
202
+ </div>
203
+
204
+ <div class="footer-column">
205
+ <h3>Legal</h3>
206
+ <ul class="footer-links">
207
+ <li><a href="#" onclick="showNotification('Terms & Conditions page coming soon!', 'info')"><i data-feather="file-text" class="w-4 h-4"></i> Terms & Conditions</a></li>
208
+ <li><a href="#" onclick="showNotification('Privacy Policy page coming soon!', 'info')"><i data-feather="shield" class="w-4 h-4"></i> Privacy Policy</a></li>
209
+ <li><a href="#" onclick="showNotification('KYC/AML page coming soon!', 'info')"><i data-feather="user-check" class="w-4 h-4"></i> KYC & AML</a></li>
210
+ <li><a href="#" onclick="showNotification('Risk Disclosure page coming soon!', 'info')"><i data-feather="alert-triangle" class="w-4 h-4"></i> Risk Disclosure</a></li>
211
+ </ul>
212
+ </div>
213
+
214
+ <div class="footer-column">
215
+ <h3>Payment Methods</h3>
216
+ <p>We accept various payment methods for your convenience</p>
217
+ <div class="payment-methods">
218
+ <div class="payment-method">Bitcoin</div>
219
+ <div class="payment-method">Ethereum</div>
220
+ <div class="payment-method">USDT</div>
221
+ <div class="payment-method">PayPal</div>
222
+ <div class="payment-method">Bank Wire</div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="footer-bottom">
228
+ <div class="copyright">
229
+ © 2024 GoldenVault Pro. All rights reserved.
230
+ </div>
231
+ <ul class="footer-bottom-links">
232
+ <li><a href="#" onclick="showNotification('Support center coming soon!', 'info')">Support Center</a></li>
233
+ <li><a href="#" onclick="showNotification('Affiliate program coming soon!', 'info')">Affiliate Program</a></li>
234
+ <li><a href="#" onclick="showNotification('Contact page coming soon!', 'info')">Contact Us</a></li>
235
+ </ul>
236
+ </div>
237
+ </div>
238
+ </footer>
239
+ `;
240
+ }
241
+ }
242
+
243
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,260 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ nav {
7
+ position: fixed;
8
+ top: 0;
9
+ left: 0;
10
+ right: 0;
11
+ background: rgba(15, 15, 15, 0.95);
12
+ backdrop-filter: blur(10px);
13
+ border-bottom: 1px solid rgba(250, 204, 21, 0.2);
14
+ z-index: 40;
15
+ padding: 1rem 0;
16
+ }
17
+
18
+ .nav-container {
19
+ max-width: 1280px;
20
+ margin: 0 auto;
21
+ padding: 0 1rem;
22
+ display: flex;
23
+ justify-content: space-between;
24
+ align-items: center;
25
+ }
26
+
27
+ .logo {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 0.5rem;
31
+ font-size: 1.5rem;
32
+ font-weight: bold;
33
+ color: #eab308;
34
+ text-decoration: none;
35
+ transition: transform 0.3s ease;
36
+ }
37
+
38
+ .logo:hover {
39
+ transform: scale(1.05);
40
+ }
41
+
42
+ .logo-icon {
43
+ width: 2rem;
44
+ height: 2rem;
45
+ background: linear-gradient(135deg, #eab308, #f97316);
46
+ border-radius: 0.5rem;
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ font-size: 1.25rem;
51
+ }
52
+
53
+ .nav-links {
54
+ display: none;
55
+ align-items: center;
56
+ gap: 2rem;
57
+ list-style: none;
58
+ margin: 0;
59
+ padding: 0;
60
+ }
61
+ .nav-links a {
62
+ color: #9ca3af;
63
+ text-decoration: none;
64
+ font-weight: 500;
65
+ transition: color 0.3s ease;
66
+ position: relative;
67
+ }
68
+
69
+ .nav-links a:hover {
70
+ color: #eab308;
71
+ }
72
+ .nav-links a::after {
73
+ content: '';
74
+ position: absolute;
75
+ bottom: -4px;
76
+ left: 0;
77
+ width: 0;
78
+ height: 2px;
79
+ background: linear-gradient(90deg, #eab308, #f97316);
80
+ transition: width 0.3s ease;
81
+ }
82
+
83
+ .nav-links a:hover::after {
84
+ width: 100%;
85
+ }
86
+
87
+ .auth-buttons {
88
+ display: none;
89
+ align-items: center;
90
+ gap: 1rem;
91
+ }
92
+
93
+ .btn {
94
+ padding: 0.5rem 1.5rem;
95
+ border-radius: 0.5rem;
96
+ font-weight: 600;
97
+ text-decoration: none;
98
+ transition: all 0.3s ease;
99
+ display: inline-block;
100
+ }
101
+
102
+ .btn-outline {
103
+ border: 2px solid #eab308;
104
+ color: #eab308;
105
+ }
106
+
107
+ .btn-outline:hover {
108
+ background: #eab308;
109
+ color: #000;
110
+ transform: translateY(-2px);
111
+ }
112
+
113
+ .btn-solid {
114
+ background: linear-gradient(135deg, #eab308, #f97316);
115
+ color: #000;
116
+ }
117
+
118
+ .btn-solid:hover {
119
+ transform: translateY(-2px);
120
+ box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
121
+ }
122
+
123
+ .mobile-menu-btn {
124
+ display: flex;
125
+ align-items: center;
126
+ justify-content: center;
127
+ width: 2.5rem;
128
+ height: 2.5rem;
129
+ background: transparent;
130
+ border: none;
131
+ color: #eab308;
132
+ cursor: pointer;
133
+ }
134
+
135
+ .mobile-menu {
136
+ position: fixed;
137
+ top: 100%;
138
+ left: 0;
139
+ right: 0;
140
+ background: rgba(15, 15, 15, 0.98);
141
+ backdrop-filter: blur(10px);
142
+ border-top: 1px solid rgba(250, 204, 21, 0.2);
143
+ padding: 1rem;
144
+ transform: translateY(-100%);
145
+ opacity: 0;
146
+ transition: all 0.3s ease;
147
+ pointer-events: none;
148
+ }
149
+
150
+ .mobile-menu.active {
151
+ transform: translateY(0);
152
+ opacity: 1;
153
+ pointer-events: all;
154
+ }
155
+
156
+ .mobile-links {
157
+ list-style: none;
158
+ padding: 0;
159
+ margin: 0;
160
+ }
161
+
162
+ .mobile-links li {
163
+ padding: 1rem 0;
164
+ border-bottom: 1px solid rgba(42, 42, 42, 0.5);
165
+ }
166
+
167
+ .mobile-links a {
168
+ color: #9ca3af;
169
+ text-decoration: none;
170
+ font-weight: 500;
171
+ display: block;
172
+ transition: color 0.3s ease;
173
+ }
174
+
175
+ .mobile-links a:hover {
176
+ color: #eab308;
177
+ }
178
+
179
+ @media (min-width: 768px) {
180
+ .nav-links {
181
+ display: flex;
182
+ }
183
+
184
+ .auth-buttons {
185
+ display: flex;
186
+ }
187
+
188
+ .mobile-menu-btn {
189
+ display: none;
190
+ }
191
+
192
+ .mobile-menu {
193
+ display: none;
194
+ }
195
+ }
196
+
197
+ @media (max-width: 767px) {
198
+ .nav-container {
199
+ padding: 0 1rem;
200
+ }
201
+ }
202
+ </style>
203
+
204
+ <nav>
205
+ <div class="nav-container">
206
+ <a href="#" class="logo">
207
+ <div class="logo-icon">💰</div>
208
+ GoldenVault Pro
209
+ </a>
210
+
211
+ <ul class="nav-links">
212
+ <li><a href="#invest">Investment Plans</a></li>
213
+ <li><a href="#how">How It Works</a></li>
214
+ <li><a href="#calculator">Calculator</a></li>
215
+ <li><a href="#testimonials">Reviews</a></li>
216
+ <li><a href="#faq">FAQ</a></li>
217
+ </ul>
218
+ <div class="auth-buttons">
219
+ <a href="#" class="btn btn-outline" onclick="showRegistration(); return false;">Sign Up</a>
220
+ <a href="#" class="btn btn-solid" onclick="showNotification('Login feature coming soon!', 'info'); return false;">Login</a>
221
+ </div>
222
+ <button class="mobile-menu-btn" onclick="toggleMobileMenu()">
223
+ <i data-feather="menu" class="w-6 h-6"></i>
224
+ </button>
225
+ </div>
226
+
227
+ <div class="mobile-menu" id="mobileMenu">
228
+ <ul class="mobile-links">
229
+ <li><a href="#invest" onclick="toggleMobileMenu(); document.getElementById('invest').scrollIntoView({behavior: 'smooth'}); return false;">Investment Plans</a></li>
230
+ <li><a href="#how" onclick="toggleMobileMenu(); document.getElementById('how').scrollIntoView({behavior: 'smooth'}); return false;">How It Works</a></li>
231
+ <li><a href="#calculator" onclick="toggleMobileMenu(); document.querySelector('.py-20.bg-dark-card').scrollIntoView({behavior: 'smooth'}); return false;">Calculator</a></li>
232
+ <li><a href="#testimonials" onclick="toggleMobileMenu(); document.querySelectorAll('.py-20.bg-dark-card')[1].scrollIntoView({behavior: 'smooth'}); return false;">Reviews</a></li>
233
+ <li><a href="#faq" onclick="toggleMobileMenu(); document.getElementById('faq').scrollIntoView({behavior: 'smooth'}); return false;">FAQ</a></li>
234
+ <li><a href="#" onclick="showRegistration(); toggleMobileMenu(); return false;">Sign Up</a></li>
235
+ <li><a href="#" onclick="showNotification('Login feature coming soon!', 'info'); toggleMobileMenu(); return false;">Login</a></li>
236
+ </ul>
237
+ </div>
238
+ </nav>
239
+ `;
240
+ }
241
+ }
242
+
243
+ customElements.define('custom-navbar', CustomNavbar);
244
+
245
+ function toggleMobileMenu() {
246
+ const menu = document.getElementById('mobileMenu');
247
+ if (menu) {
248
+ menu.classList.toggle('active');
249
+ }
250
+ }
251
+
252
+ // Close mobile menu when clicking outside
253
+ document.addEventListener('click', (e) => {
254
+ const menu = document.getElementById('mobileMenu');
255
+ const menuBtn = document.querySelector('.mobile-menu-btn');
256
+
257
+ if (menu && !menu.contains(e.target) && !menuBtn.contains(e.target)) {
258
+ menu.classList.remove('active');
259
+ }
260
+ });
index.html CHANGED
@@ -1,19 +1,483 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>GoldenVault Pro - Premium Investment Platform</title>
7
+ <link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💰</text></svg>">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <link rel="stylesheet" href="style.css">
11
+ <script>
12
+ tailwind.config = {
13
+ darkMode: 'class',
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ 'dark-bg': '#0f0f0f',
18
+ 'dark-card': '#1a1a1a',
19
+ 'dark-border': '#2a2a2a',
20
+ }
21
+ }
22
+ }
23
+ }
24
+ </script>
25
+ </head>
26
+ <body class="bg-dark-bg text-gray-100">
27
+ <!-- Loading Screen -->
28
+ <div id="loader" class="fixed inset-0 bg-dark-bg z-50 flex items-center justify-center">
29
+ <div class="text-center">
30
+ <div class="w-16 h-16 border-4 border-yellow-500 border-t-transparent rounded-full animate-spin mx-auto mb-4"></div>
31
+ <p class="text-yellow-500 text-lg">Loading GoldenVault...</p>
32
+ </div>
33
+ </div>
34
+
35
+ <!-- Navigation -->
36
+ <custom-navbar></custom-navbar>
37
+
38
+ <!-- Hero Section -->
39
+ <section class="relative overflow-hidden py-20 lg:py-32">
40
+ <div class="absolute inset-0 bg-gradient-to-br from-yellow-500/10 via-transparent to-orange-500/10"></div>
41
+ <div class="container mx-auto px-4 relative z-10">
42
+ <div class="text-center max-w-4xl mx-auto">
43
+ <h1 class="text-5xl lg:text-7xl font-bold mb-6 bg-gradient-to-r from-yellow-400 to-orange-500 bg-clip-text text-transparent">
44
+ Invest Smart, Earn 1% Daily
45
+ </h1>
46
+ <p class="text-xl lg:text-2xl text-gray-300 mb-8">
47
+ Join thousands of investors earning stable 1% daily returns with our secure and proven investment platform
48
+ </p>
49
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
50
+ <button onclick="scrollToSection('invest')" class="px-8 py-4 bg-yellow-500 hover:bg-yellow-600 text-black font-bold rounded-lg transform hover:scale-105 transition-all duration-300 shadow-lg shadow-yellow-500/25">
51
+ Start Investing Now
52
+ </button>
53
+ <button onclick="scrollToSection('how')" class="px-8 py-4 bg-transparent border-2 border-yellow-500 hover:bg-yellow-500/10 text-yellow-500 font-bold rounded-lg transition-all duration-300">
54
+ How It Works
55
+ </button>
56
+ </div>
57
+ </div>
58
+ </div>
59
+
60
+ <!-- Animated Stats -->
61
+ <div class="container mx-auto px-4 mt-16">
62
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-5xl mx-auto">
63
+ <div class="bg-dark-card rounded-xl p-6 border border-dark-border text-center transform hover:scale-105 transition-all duration-300">
64
+ <div class="text-4xl mb-2">👥</div>
65
+ <div class="text-3xl font-bold text-yellow-500 counter" data-target="45832">0</div>
66
+ <p class="text-gray-400 mt-2">Active Investors</p>
67
+ </div>
68
+ <div class="bg-dark-card rounded-xl p-6 border border-dark-border text-center transform hover:scale-105 transition-all duration-300">
69
+ <div class="text-4xl mb-2">💎</div>
70
+ <div class="text-3xl font-bold text-orange-500">$<span class="counter" data-target="8473920">0</span></div>
71
+ <p class="text-gray-400 mt-2">Total Paid Out</p>
72
+ </div>
73
+ <div class="bg-dark-card rounded-xl p-6 border border-dark-border text-center transform hover:scale-105 transition-all duration-300">
74
+ <div class="text-4xl mb-2">📈</div>
75
+ <div class="text-3xl font-bold text-green-500"><span class="counter" data-target="98">0</span>%</div>
76
+ <p class="text-gray-400 mt-2">Success Rate</p>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </section>
81
+
82
+ <!-- Investment Plans -->
83
+ <section id="invest" class="py-20 relative">
84
+ <div class="absolute inset-0 bg-gradient-to-t from-dark-bg via-yellow-500/5 to-transparent"></div>
85
+ <div class="container mx-auto px-4 relative z-10">
86
+ <div class="text-center mb-12">
87
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">Choose Your Plan</h2>
88
+ <p class="text-xl text-gray-400">Select the perfect investment plan for your goals</p>
89
+ </div>
90
+
91
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
92
+ <!-- Starter Plan -->
93
+ <div class="bg-dark-card rounded-2xl p-8 border border-dark-border hover:border-yellow-500/50 transition-all duration-300 transform hover:-translate-y-2">
94
+ <div class="text-center mb-6">
95
+ <div class="w-20 h-20 bg-yellow-500/20 rounded-full flex items-center justify-center mx-auto mb-4">
96
+ <i data-feather="zap" class="w-10 h-10 text-yellow-500"></i>
97
+ </div>
98
+ <h3 class="text-2xl font-bold text-yellow-500">Starter</h3>
99
+ </div>
100
+ <div class="text-center mb-6">
101
+ <div class="text-4xl font-bold mb-2">1% <span class="text-lg text-gray-400">Daily</span></div>
102
+ <div class="text-gray-400">Withdrawal: Daily</div>
103
+ </div>
104
+ <div class="space-y-3 mb-8">
105
+ <div class="flex items-center gap-2">
106
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
107
+ <span class="text-gray-300">Fixed: $10 Investment</span>
108
+ </div>
109
+ <div class="flex items-center gap-2">
110
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
111
+ <span class="text-gray-300">Daily Withdrawals</span>
112
+ </div>
113
+ <div class="flex items-center gap-2">
114
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
115
+ <span class="text-gray-300">Principal Return</span>
116
+ </div>
117
+ <div class="flex items-center gap-2">
118
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
119
+ <span class="text-gray-300">24/7 Support</span>
120
+ </div>
121
+ </div>
122
+ <button onclick="selectPlan('Starter', '1%', 'daily')" class="w-full py-3 bg-yellow-500 hover:bg-yellow-600 text-black font-bold rounded-lg transition-all duration-300">
123
+ Invest Now
124
+ </button>
125
+ </div>
126
+
127
+ <!-- Professional Plan -->
128
+ <div class="bg-gradient-to-b from-dark-card to-orange-500/10 rounded-2xl p-8 border-2 border-orange-500 transform hover:-translate-y-2 relative overflow-hidden">
129
+ <div class="absolute top-0 right-0 bg-orange-500 text-black px-4 py-1 rounded-bl-lg text-sm font-bold">
130
+ POPULAR
131
+ </div>
132
+ <div class="text-center mb-6">
133
+ <div class="w-20 h-20 bg-orange-500/20 rounded-full flex items-center justify-center mx-auto mb-4">
134
+ <i data-feather="trending-up" class="w-10 h-10 text-orange-500"></i>
135
+ </div>
136
+ <h3 class="text-2xl font-bold text-orange-500">Professional</h3>
137
+ </div>
138
+ <div class="text-center mb-6">
139
+ <div class="text-4xl font-bold mb-2">1% <span class="text-lg text-gray-400">Daily</span></div>
140
+ <div class="text-gray-400">Withdrawal: Every 12 Hours</div>
141
+ </div>
142
+ <div class="space-y-3 mb-8">
143
+ <div class="flex items-center gap-2">
144
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
145
+ <span class="text-gray-300">Fixed: $100 Investment</span>
146
+ </div>
147
+ <div class="flex items-center gap-2">
148
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
149
+ <span class="text-gray-300">12-Hour Withdrawals</span>
150
+ </div>
151
+ <div class="flex items-center gap-2">
152
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
153
+ <span class="text-gray-300">Principal Return</span>
154
+ </div>
155
+ <div class="flex items-center gap-2">
156
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
157
+ <span class="text-gray-300">Priority Support</span>
158
+ </div>
159
+ <div class="flex items-center gap-2">
160
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
161
+ <span class="text-gray-300">Weekly Reports</span>
162
+ </div>
163
+ </div>
164
+ <button onclick="selectPlan('Professional', '1%', '12hours')" class="w-full py-3 bg-orange-500 hover:bg-orange-600 text-white font-bold rounded-lg transition-all duration-300 shadow-lg shadow-orange-500/25">
165
+ Invest Now
166
+ </button>
167
+ </div>
168
+
169
+ <!-- VIP Plan -->
170
+ <div class="bg-dark-card rounded-2xl p-8 border border-dark-border hover:border-orange-500/50 transition-all duration-300 transform hover:-translate-y-2">
171
+ <div class="text-center mb-6">
172
+ <div class="w-20 h-20 bg-gradient-to-r from-yellow-500/20 to-orange-500/20 rounded-full flex items-center justify-center mx-auto mb-4">
173
+ <i data-feather="crown" class="w-10 h-10 bg-gradient-to-r from-yellow-400 to-orange-500 bg-clip-text text-transparent"></i>
174
+ </div>
175
+ <h3 class="text-2xl font-bold bg-gradient-to-r from-yellow-400 to-orange-500 bg-clip-text text-transparent">VIP</h3>
176
+ </div>
177
+ <div class="text-center mb-6">
178
+ <div class="text-4xl font-bold mb-2">1% <span class="text-lg text-gray-400">Daily</span></div>
179
+ <div class="text-gray-400">Withdrawal: Every 6 Hours</div>
180
+ </div>
181
+ <div class="space-y-3 mb-8">
182
+ <div class="flex items-center gap-2">
183
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
184
+ <span class="text-gray-300">Fixed: $1,000 Investment</span>
185
+ </div>
186
+ <div class="flex items-center gap-2">
187
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
188
+ <span class="text-gray-300">6-Hour Withdrawals</span>
189
+ </div>
190
+ <div class="flex items-center gap-2">
191
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
192
+ <span class="text-gray-300">Principal Return</span>
193
+ </div>
194
+ <div class="flex items-center gap-2">
195
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
196
+ <span class="text-gray-300">Dedicated Manager</span>
197
+ </div>
198
+ <div class="flex items-center gap-2">
199
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
200
+ <span class="text-gray-300">Custom Strategies</span>
201
+ </div>
202
+ <div class="flex items-center gap-2">
203
+ <i data-feather="check" class="w-5 h-5 text-green-500"></i>
204
+ <span class="text-gray-300">Instant Withdrawals</span>
205
+ </div>
206
+ </div>
207
+ <button onclick="selectPlan('VIP', '1%', '6hours')" class="w-full py-3 bg-gradient-to-r from-yellow-500 to-orange-500 hover:from-yellow-600 hover:to-orange-600 text-black font-bold rounded-lg transition-all duration-300 shadow-lg">
208
+ Invest Now
209
+ </button>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Calculator Section -->
216
+ <section class="py-20 bg-dark-card">
217
+ <div class="container mx-auto px-4">
218
+ <div class="text-center mb-12">
219
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">Investment Calculator</h2>
220
+ <p class="text-xl text-gray-400">Calculate your potential earnings</p>
221
+ </div>
222
+ <div class="max-w-2xl mx-auto bg-dark-bg rounded-2xl p-8 border border-dark-border">
223
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
224
+ <div>
225
+ <label class="block text-gray-400 mb-2">Investment Amount ($)</label>
226
+ <input type="number" id="calcAmount" placeholder="1000" class="w-full px-4 py-3 bg-dark-card border border-dark-border rounded-lg focus:border-yellow-500 focus:outline-none transition-colors">
227
+ </div>
228
+ <div>
229
+ <label class="block text-gray-400 mb-2">Daily Return (%)</label>
230
+ <input type="number" id="calcDaily" value="1" readonly class="w-full px-4 py-3 bg-dark-card border border-dark-border rounded-lg text-yellow-500">
231
+ </div>
232
+ </div>
233
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
234
+ <div>
235
+ <label class="block text-gray-400 mb-2">Investment Period (Days)</label>
236
+ <input type="number" id="calcDays" placeholder="30" class="w-full px-4 py-3 bg-dark-card border border-dark-border rounded-lg focus:border-yellow-500 focus:outline-none transition-colors">
237
+ </div>
238
+ <div>
239
+ <label class="block text-gray-400 mb-2">Compound Interest</label>
240
+ <select id="calcCompound" class="w-full px-4 py-3 bg-dark-card border border-dark-border rounded-lg focus:border-yellow-500 focus:outline-none transition-colors">
241
+ <option value="no">No</option>
242
+ <option value="daily">Daily</option>
243
+ </select>
244
+ </div>
245
+ </div>
246
+ <button onclick="calculateReturns()" class="w-full py-3 bg-gradient-to-r from-yellow-500 to-orange-500 hover:from-yellow-600 hover:to-orange-600 text-black font-bold rounded-lg transition-all duration-300">
247
+ Calculate Returns
248
+ </button>
249
+
250
+ <div id="calcResults" class="mt-6 p-6 bg-yellow-500/10 rounded-lg border border-yellow-500/30 hidden">
251
+ <div class="grid grid-cols-2 gap-4">
252
+ <div>
253
+ <p class="text-gray-400 text-sm">Total Return</p>
254
+ <p class="text-2xl font-bold text-yellow-500">$<span id="totalReturn">0</span></p>
255
+ </div>
256
+ <div>
257
+ <p class="text-gray-400 text-sm">Net Profit</p>
258
+ <p class="text-2xl font-bold text-green-500">$<span id="netProfit">0</span></p>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+ </section>
265
+
266
+ <!-- How It Works -->
267
+ <section id="how" class="py-20">
268
+ <div class="container mx-auto px-4">
269
+ <div class="text-center mb-12">
270
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">How It Works</h2>
271
+ <p class="text-xl text-gray-400">Start earning in 3 simple steps</p>
272
+ </div>
273
+
274
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
275
+ <div class="text-center group">
276
+ <div class="w-24 h-24 bg-gradient-to-r from-yellow-500 to-orange-500 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
277
+ <i data-feather="user-plus" class="w-12 h-12 text-black"></i>
278
+ </div>
279
+ <h3 class="text-xl font-bold mb-2 text-yellow-500">1. Create Account</h3>
280
+ <p class="text-gray-400">Sign up in minutes with just your email and create a secure password</p>
281
+ </div>
282
+ <div class="text-center group">
283
+ <div class="w-24 h-24 bg-gradient-to-r from-yellow-500 to-orange-500 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
284
+ <i data-feather="credit-card" class="w-12 h-12 text-black"></i>
285
+ </div>
286
+ <h3 class="text-xl font-bold mb-2 text-orange-500">2. Make Deposit</h3>
287
+ <p class="text-gray-400">Choose your investment plan and deposit funds using any supported payment method</p>
288
+ </div>
289
+ <div class="text-center group">
290
+ <div class="w-24 h-24 bg-gradient-to-r from-yellow-500 to-orange-500 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
291
+ <i data-feather="trending-up" class="w-12 h-12 text-black"></i>
292
+ </div>
293
+ <h3 class="text-xl font-bold mb-2 text-green-500">3. Earn Daily</h3>
294
+ <p class="text-gray-400">Watch your investment grow daily and withdraw profits anytime</p>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </section>
299
+
300
+ <!-- Testimonials -->
301
+ <section class="py-20 bg-dark-card">
302
+ <div class="container mx-auto px-4">
303
+ <div class="text-center mb-12">
304
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">What Our Investors Say</h2>
305
+ <p class="text-xl text-gray-400">Real stories from real investors</p>
306
+ </div>
307
+
308
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
309
+ <div class="bg-dark-bg rounded-xl p-6 border border-dark-border">
310
+ <div class="flex items-center mb-4">
311
+ <img src="https://static.photos/people/100x100/1" alt="User" class="w-12 h-12 rounded-full mr-4">
312
+ <div>
313
+ <h4 class="font-bold text-yellow-500">Sarah Johnson</h4>
314
+ <div class="flex text-yellow-400">
315
+ ★★★★★
316
+ </div>
317
+ </div>
318
+ </div>
319
+ <p class="text-gray-300 italic">"GoldenVault Pro has changed my life! I started with $500 and now earning daily profits consistently. The platform is trustworthy and withdrawals are instant."</p>
320
+ </div>
321
+ <div class="bg-dark-bg rounded-xl p-6 border border-dark-border">
322
+ <div class="flex items-center mb-4">
323
+ <img src="https://static.photos/people/100x100/2" alt="User" class="w-12 h-12 rounded-full mr-4">
324
+ <div>
325
+ <h4 class="font-bold text-orange-500">Michael Chen</h4>
326
+ <div class="flex text-yellow-400">
327
+ ★★★★★
328
+ </div>
329
+ </div>
330
+ </div>
331
+ <p class="text-gray-300 italic">"Best investment platform I've ever used! The VIP plan offers amazing returns. Customer support is excellent and always available when I need help."</p>
332
+ </div>
333
+ <div class="bg-dark-bg rounded-xl p-6 border border-dark-border">
334
+ <div class="flex items-center mb-4">
335
+ <img src="https://static.photos/people/100x100/3" alt="User" class="w-12 h-12 rounded-full mr-4">
336
+ <div>
337
+ <h4 class="font-bold text-green-500">Emma Wilson</h4>
338
+ <div class="flex text-yellow-400">
339
+ ★★★★★
340
+ </div>
341
+ </div>
342
+ </div>
343
+ <p class="text-gray-300 italic">"I was skeptical at first, but GoldenVault Pro proved me wrong. The daily returns are exactly as promised. This is my main source of income now!"</p>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </section>
348
+
349
+ <!-- FAQ Section -->
350
+ <section class="py-20">
351
+ <div class="container mx-auto px-4">
352
+ <div class="text-center mb-12">
353
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">Frequently Asked Questions</h2>
354
+ <p class="text-xl text-gray-400">Everything you need to know about GoldenVault Pro</p>
355
+ </div>
356
+
357
+ <div class="max-w-3xl mx-auto">
358
+ <div class="bg-dark-card rounded-xl border border-dark-border mb-4">
359
+ <button onclick="toggleFAQ(1)" class="w-full px-6 py-4 text-left flex justify-between items-center hover:bg-yellow-500/10 transition-colors">
360
+ <span class="font-semibold text-yellow-500">What is GoldenVault Pro?</span>
361
+ <i data-feather="chevron-down" class="w-5 h-5 transform transition-transform" id="faq-icon-1"></i>
362
+ </button>
363
+ <div id="faq-1" class="hidden px-6 pb-4">
364
+ <p class="text-gray-400">GoldenVault Pro is a leading cryptocurrency and forex investment platform that offers high-yield investment opportunities with guaranteed daily returns.</p>
365
+ </div>
366
+ </div>
367
+
368
+ <div class="bg-dark-card rounded-xl border border-dark-border mb-4">
369
+ <button onclick="toggleFAQ(2)" class="w-full px-6 py-4 text-left flex justify-between items-center hover:bg-yellow-500/10 transition-colors">
370
+ <span class="font-semibold text-orange-500">How do I make a deposit?</span>
371
+ <i data-feather="chevron-down" class="w-5 h-5 transform transition-transform" id="faq-icon-2"></i>
372
+ </button>
373
+ <div id="faq-2" class="hidden px-6 pb-4">
374
+ <p class="text-gray-400">After creating an account, go to the Deposit section, choose your preferred payment method, select the investment plan, and follow the simple instructions to complete your deposit.</p>
375
+ </div>
376
+ </div>
377
+
378
+ <div class="bg-dark-card rounded-xl border border-dark-border mb-4">
379
+ <button onclick="toggleFAQ(3)" class="w-full px-6 py-4 text-left flex justify-between items-center hover:bg-yellow-500/10 transition-colors">
380
+ <span class="font-semibold text-yellow-500">Are my funds safe?</span>
381
+ <i data-feather="chevron-down" class="w-5 h-5 transform transition-transform" id="faq-icon-3"></i>
382
+ </button>
383
+ <div id="faq-3" class="hidden px-6 pb-4">
384
+ <p class="text-gray-400">Absolutely! We use industry-leading security measures including SSL encryption, 2FA authentication, and cold storage for funds to ensure your investment is completely safe.</p>
385
+ </div>
386
+ </div>
387
+
388
+ <div class="bg-dark-card rounded-xl border border-dark-border mb-4">
389
+ <button onclick="toggleFAQ(4)" class="w-full px-6 py-4 text-left flex justify-between items-center hover:bg-yellow-500/10 transition-colors">
390
+ <span class="font-semibold text-orange-500">How long does withdrawal take?</span>
391
+ <i data-feather="chevron-down" class="w-5 h-5 transform transition-transform" id="faq-icon-4"></i>
392
+ </button>
393
+ <div id="faq-4" class="hidden px-6 pb-4">
394
+ <p class="text-gray-400">Withdrawals are processed instantly for VIP members and within 24 hours for other plans. We support multiple withdrawal methods for your convenience.</p>
395
+ </div>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </section>
400
+
401
+ <!-- CTA Section -->
402
+ <section class="py-20 bg-gradient-to-r from-yellow-500/20 to-orange-500/20">
403
+ <div class="container mx-auto px-4 text-center">
404
+ <h2 class="text-4xl lg:text-5xl font-bold mb-4">Ready to Start Earning?</h2>
405
+ <p class="text-xl text-gray-300 mb-8">Join thousands of successful investors today</p>
406
+ <button onclick="showRegistration()" class="px-12 py-4 bg-gradient-to-r from-yellow-500 to-orange-500 hover:from-yellow-600 hover:to-orange-600 text-black font-bold rounded-lg text-lg transition-all duration-300 transform hover:scale-105 shadow-xl">
407
+ Get Started Now
408
+ </button>
409
+ </div>
410
+ </section>
411
+
412
+ <!-- Footer -->
413
+ <custom-footer></custom-footer>
414
+
415
+ <!-- Investment Modal -->
416
+ <div id="investModal" class="fixed inset-0 bg-black/80 z-50 hidden flex items-center justify-center p-4">
417
+ <div class="bg-dark-card rounded-2xl p-8 max-w-md w-full border border-yellow-500/30">
418
+ <h3 class="text-2xl font-bold mb-4 text-yellow-500">Complete Your Investment</h3>
419
+ <div class="mb-4">
420
+ <label class="block text-gray-400 mb-2">Selected Plan</label>
421
+ <input type="text" id="modalPlan" readonly class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg text-yellow-500">
422
+ </div>
423
+ <div class="mb-4">
424
+ <label class="block text-gray-400 mb-2">Investment Amount ($)</label>
425
+ <input type="number" id="modalAmount" placeholder="Enter amount" class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg focus:border-yellow-500 focus:outline-none">
426
+ </div>
427
+ <div class="mb-4">
428
+ <label class="block text-gray-400 mb-2">Your Wallet Address</label>
429
+ <input type="text" id="modalWallet" placeholder="Enter wallet address" class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg focus:border-yellow-500 focus:outline-none">
430
+ </div>
431
+ <div class="flex gap-4">
432
+ <button onclick="confirmInvestment()" class="flex-1 py-3 bg-gradient-to-r from-yellow-500 to-orange-500 hover:from-yellow-600 hover:to-orange-600 text-black font-bold rounded-lg transition-all duration-300">
433
+ Confirm Investment
434
+ </button>
435
+ <button onclick="closeInvestModal()" class="flex-1 py-3 bg-transparent border border-red-500 text-red-500 hover:bg-red-500/10 font-bold rounded-lg transition-all duration-300">
436
+ Cancel
437
+ </button>
438
+ </div>
439
+ </div>
440
+ </div>
441
+
442
+ <!-- Registration Modal -->
443
+ <div id="regModal" class="fixed inset-0 bg-black/80 z-50 hidden flex items-center justify-center p-4">
444
+ <div class="bg-dark-card rounded-2xl p-8 max-w-md w-full border border-orange-500/30">
445
+ <h3 class="text-2xl font-bold mb-6 text-orange-500">Create Your Account</h3>
446
+ <form onsubmit="handleRegistration(event)">
447
+ <div class="mb-4">
448
+ <label class="block text-gray-400 mb-2">Full Name</label>
449
+ <input type="text" required class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg focus:border-orange-500 focus:outline-none">
450
+ </div>
451
+ <div class="mb-4">
452
+ <label class="block text-gray-400 mb-2">Email Address</label>
453
+ <input type="email" required class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg focus:border-orange-500 focus:outline-none">
454
+ </div>
455
+ <div class="mb-4">
456
+ <label class="block text-gray-400 mb-2">Password</label>
457
+ <input type="password" required class="w-full px-4 py-3 bg-dark-bg border border-dark-border rounded-lg focus:border-orange-500 focus:outline-none">
458
+ </div>
459
+ <div class="mb-6">
460
+ <label class="flex items-center gap-2">
461
+ <input type="checkbox" required class="rounded border-dark-border bg-dark-bg">
462
+ <span class="text-gray-400 text-sm">I agree to the Terms & Conditions</span>
463
+ </label>
464
+ </div>
465
+ <button type="submit" class="w-full py-3 bg-gradient-to-r from-yellow-500 to-orange-500 hover:from-yellow-600 hover:to-orange-600 text-black font-bold rounded-lg transition-all duration-300">
466
+ Create Account
467
+ </button>
468
+ </form>
469
+ <button onclick="closeRegModal()" class="w-full mt-4 py-3 bg-transparent border border-gray-600 text-gray-400 hover:bg-gray-800 font-bold rounded-lg transition-all duration-300">
470
+ Close
471
+ </button>
472
+ </div>
473
+ </div>
474
+
475
+ <script src="components/navbar.js"></script>
476
+ <script src="components/footer.js"></script>
477
+ <script src="script.js"></script>
478
+ <script>
479
+ feather.replace();
480
+ </script>
481
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
482
+ </body>
483
+ </html>
script.js ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Page load animations
2
+ window.addEventListener('load', () => {
3
+ setTimeout(() => {
4
+ document.getElementById('loader').style.display = 'none';
5
+ }, 1500);
6
+
7
+ // Animate counters
8
+ const counters = document.querySelectorAll('.counter');
9
+ const speed = 200;
10
+
11
+ counters.forEach(counter => {
12
+ const animate = () => {
13
+ const value = +counter.getAttribute('data-target');
14
+ const data = +counter.innerText;
15
+ const time = value / speed;
16
+
17
+ if (data < value) {
18
+ counter.innerText = Math.ceil(data + time);
19
+ setTimeout(animate, 10);
20
+ } else {
21
+ counter.innerText = value.toLocaleString();
22
+ }
23
+ }
24
+ animate();
25
+ });
26
+ });
27
+ // Smooth scroll to section
28
+ function scrollToSection(sectionId) {
29
+ const section = document.getElementById(sectionId);
30
+ if (section) {
31
+ section.scrollIntoView({ behavior: 'smooth' });
32
+ }
33
+ }
34
+
35
+ // Investment plan selection
36
+ let selectedPlanData = {};
37
+ let userInvestments = [];
38
+
39
+ function selectPlan(plan, daily, withdrawal) {
40
+ const fixedAmounts = {
41
+ 'Starter': 10,
42
+ 'Professional': 100,
43
+ 'VIP': 1000
44
+ };
45
+
46
+ selectedPlanData = { plan, daily, withdrawal, amount: fixedAmounts[plan] };
47
+ document.getElementById('modalPlan').value = `${plan} Plan - ${daily} daily - Fixed ${fixedAmounts[plan]}`;
48
+ document.getElementById('modalAmount').value = fixedAmounts[plan];
49
+ document.getElementById('modalAmount').readOnly = true;
50
+ document.getElementById('investModal').classList.remove('hidden');
51
+ document.getElementById('investModal').classList.add('flex');
52
+ }
53
+ function closeInvestModal() {
54
+ document.getElementById('investModal').classList.add('hidden');
55
+ document.getElementById('investModal').classList.remove('flex');
56
+ }
57
+ function confirmInvestment() {
58
+ const amount = document.getElementById('modalAmount').value;
59
+ const wallet = document.getElementById('modalWallet').value;
60
+
61
+ if (!amount || !wallet) {
62
+ showNotification('Please fill in all fields', 'error');
63
+ return;
64
+ }
65
+
66
+ // Add investment to user's portfolio
67
+ const investment = {
68
+ plan: selectedPlanData.plan,
69
+ amount: parseFloat(amount),
70
+ daily: selectedPlanData.daily,
71
+ withdrawal: selectedPlanData.withdrawal,
72
+ wallet: wallet,
73
+ startDate: new Date().toISOString(),
74
+ id: Date.now()
75
+ };
76
+
77
+ userInvestments.push(investment);
78
+ localStorage.setItem('userInvestments', JSON.stringify(userInvestments));
79
+
80
+ showNotification(`Investment of ${amount} confirmed for ${selectedPlanData.plan} plan! You can now purchase additional plans.`, 'success');
81
+ closeInvestModal();
82
+
83
+ // Reset form
84
+ document.getElementById('modalAmount').value = '';
85
+ document.getElementById('modalWallet').value = '';
86
+ document.getElementById('modalAmount').readOnly = false;
87
+ }
88
+
89
+ // Load user investments on page load
90
+ window.addEventListener('load', () => {
91
+ const saved = localStorage.getItem('userInvestments');
92
+ if (saved) {
93
+ userInvestments = JSON.parse(saved);
94
+ }
95
+ });
96
+ // Calculator functionality
97
+ function calculateReturns() {
98
+ const amount = parseFloat(document.getElementById('calcAmount').value) || 0;
99
+ const daily = 1; // Fixed at 1%
100
+ const days = parseInt(document.getElementById('calcDays').value) || 0;
101
+ const compound = document.getElementById('calcCompound').value;
102
+
103
+ if (!amount || !days) {
104
+ showNotification('Please enter investment amount and period', 'error');
105
+ return;
106
+ }
107
+
108
+ let totalReturn;
109
+ if (compound === 'daily') {
110
+ totalReturn = amount * Math.pow(1 + (daily / 100), days);
111
+ } else {
112
+ totalReturn = amount + (amount * (daily / 100) * days);
113
+ }
114
+
115
+ const netProfit = totalReturn - amount;
116
+
117
+ document.getElementById('totalReturn').textContent = totalReturn.toFixed(2).toLocaleString();
118
+ document.getElementById('netProfit').textContent = netProfit.toFixed(2).toLocaleString();
119
+ document.getElementById('calcResults').classList.remove('hidden');
120
+ }
121
+ // FAQ toggle
122
+ function toggleFAQ(id) {
123
+ const content = document.getElementById(`faq-${id}`);
124
+ const icon = document.getElementById(`faq-icon-${id}`);
125
+
126
+ if (content.classList.contains('hidden')) {
127
+ content.classList.remove('hidden');
128
+ icon.style.transform = 'rotate(180deg)';
129
+ } else {
130
+ content.classList.add('hidden');
131
+ icon.style.transform = 'rotate(0deg)';
132
+ }
133
+ }
134
+ // Registration modal
135
+ function showRegistration() {
136
+ document.getElementById('regModal').classList.remove('hidden');
137
+ document.getElementById('regModal').classList.add('flex');
138
+ document.body.style.overflow = 'hidden';
139
+ }
140
+
141
+ function closeRegModal() {
142
+ document.getElementById('regModal').classList.add('hidden');
143
+ document.getElementById('regModal').classList.remove('flex');
144
+ document.body.style.overflow = 'auto';
145
+ }
146
+
147
+ function handleRegistration(event) {
148
+ event.preventDefault();
149
+ const formData = new FormData(event.target);
150
+ showNotification('Account created successfully! Check your email for verification.', 'success');
151
+ closeRegModal();
152
+ event.target.reset();
153
+ }
154
+ // Notification system
155
+ function showNotification(message, type = 'info') {
156
+ const notification = document.createElement('div');
157
+ notification.className = `fixed top-4 right-4 z-50 px-6 py-4 rounded-lg shadow-lg transform transition-all duration-500 ${
158
+ type === 'success' ? 'bg-green-500' :
159
+ type === 'error' ? 'bg-red-500' :
160
+ type === 'warning' ? 'bg-yellow-500' : 'bg-blue-500'
161
+ } text-white`;
162
+ notification.innerHTML = `
163
+ <div class="flex items-center gap-3">
164
+ <i data-feather="${
165
+ type === 'success' ? 'check-circle' :
166
+ type === 'error' ? 'x-circle' :
167
+ type === 'warning' ? 'alert-triangle' : 'info'
168
+ }" class="w-5 h-5"></i>
169
+ <span>${message}</span>
170
+ </div>
171
+ `;
172
+
173
+ document.body.appendChild(notification);
174
+ feather.replace();
175
+
176
+ setTimeout(() => {
177
+ notification.style.transform = 'translateX(400px)';
178
+ setTimeout(() => notification.remove(), 500);
179
+ }, 3000);
180
+ }
181
+
182
+ // Live ticker simulation
183
+ function updateLiveTicker() {
184
+ const tickers = document.querySelectorAll('.live-ticker');
185
+ tickers.forEach(ticker => {
186
+ const currentValue = parseFloat(ticker.textContent.replace(/[^0-9.-]/g, ''));
187
+ const change = (Math.random() - 0.5) * 2;
188
+ const newValue = currentValue + change;
189
+ ticker.textContent = newValue.toFixed(2) + '%';
190
+ ticker.className = `live-ticker ${change > 0 ? 'text-green-500' : 'text-red-500'}`;
191
+ });
192
+ }
193
+
194
+ // Simulate live data updates
195
+ setInterval(() => {
196
+ // Update random stats
197
+ const statElements = document.querySelectorAll('.live-stat');
198
+ if (statElements.length > 0) {
199
+ const randomStat = statElements[Math.floor(Math.random() * statElements.length)];
200
+ const current = parseInt(randomStat.textContent.replace(/[^0-9]/g, ''));
201
+ randomStat.textContent = (current + Math.floor(Math.random() * 10)).toLocaleString();
202
+ }
203
+ }, 5000);
204
+
205
+ // Add parallax effect on scroll
206
+ window.addEventListener('scroll', () => {
207
+ const scrolled = window.pageYOffset;
208
+ const parallaxElements = document.querySelectorAll('.parallax');
209
+
210
+ parallaxElements.forEach(element => {
211
+ const speed = element.dataset.speed || 0.5;
212
+ element.style.transform = `translateY(${scrolled * speed}px)`;
213
+ });
214
+ });
215
+
216
+ // Form validation enhancements
217
+ document.querySelectorAll('input[type="number"]').forEach(input => {
218
+ input.addEventListener('input', function() {
219
+ if (this.value < 0) this.value = 0;
220
+ if (this.value > 9999999) this.value = 9999999;
221
+ });
222
+ });
223
+
224
+ // Add ripple effect to buttons
225
+ document.querySelectorAll('button').forEach(button => {
226
+ button.addEventListener('click', function(e) {
227
+ const ripple = document.createElement('span');
228
+ ripple.className = 'absolute bg-white opacity-30 rounded-full animate-ping';
229
+ ripple.style.width = ripple.style.height = '20px';
230
+ ripple.style.left = e.offsetX - 10 + 'px';
231
+ ripple.style.top = e.offsetY - 10 + 'px';
232
+ this.style.position = 'relative';
233
+ this.style.overflow = 'hidden';
234
+ this.appendChild(ripple);
235
+ setTimeout(() => ripple.remove(), 600);
236
+ });
237
+ });
style.css CHANGED
@@ -1,28 +1,118 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom animations and styles */
2
+ @keyframes float {
3
+ 0%, 100% { transform: translateY(0px); }
4
+ 50% { transform: translateY(-20px); }
5
  }
6
 
7
+ @keyframes pulse-glow {
8
+ 0%, 100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.5); }
9
+ 50% { box-shadow: 0 0 40px rgba(251, 146, 60, 0.8); }
10
  }
11
 
12
+ .float-animation {
13
+ animation: float 3s ease-in-out infinite;
 
 
 
14
  }
15
 
16
+ .pulse-glow {
17
+ animation: pulse-glow 2s ease-in-out infinite;
 
 
 
 
18
  }
19
 
20
+ /* Scrollbar styling */
21
+ ::-webkit-scrollbar {
22
+ width: 10px;
23
  }
24
+
25
+ ::-webkit-scrollbar-track {
26
+ background: #0f0f0f;
27
+ }
28
+
29
+ ::-webkit-scrollbar-thumb {
30
+ background: linear-gradient(to bottom, #eab308, #f97316);
31
+ border-radius: 5px;
32
+ }
33
+
34
+ ::-webkit-scrollbar-thumb:hover {
35
+ background: linear-gradient(to bottom, #facc15, #fb923c);
36
+ }
37
+
38
+ /* Glassmorphism effect */
39
+ .glass-effect {
40
+ background: rgba(26, 26, 26, 0.7);
41
+ backdrop-filter: blur(10px);
42
+ border: 1px solid rgba(250, 204, 21, 0.2);
43
+ }
44
+
45
+ /* Gradient text animation */
46
+ .gradient-text {
47
+ background: linear-gradient(90deg, #eab308, #f97316, #eab308);
48
+ background-size: 200% auto;
49
+ -webkit-background-clip: text;
50
+ -webkit-text-fill-color: transparent;
51
+ animation: gradient-shift 3s linear infinite;
52
+ }
53
+
54
+ @keyframes gradient-shift {
55
+ to { background-position: 200% center; }
56
+ }
57
+
58
+ /* Custom hover effects */
59
+ .hover-lift {
60
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
61
+ }
62
+
63
+ .hover-lift:hover {
64
+ transform: translateY(-5px);
65
+ box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
66
+ }
67
+
68
+ /* Loading dots */
69
+ .loading-dots {
70
+ display: inline-block;
71
+ }
72
+
73
+ .loading-dots::after {
74
+ content: '...';
75
+ animation: dots 1.5s steps(4, end) infinite;
76
+ }
77
+
78
+ @keyframes dots {
79
+ 0%, 20% { content: '.'; }
80
+ 40% { content: '..'; }
81
+ 60%, 100% { content: '...'; }
82
+ }
83
+
84
+ /* Counter animation */
85
+ .counter {
86
+ transition: all 0.5s ease-out;
87
+ }
88
+
89
+ /* Modal overlay animation */
90
+ .modal-overlay {
91
+ animation: fadeIn 0.3s ease-out;
92
+ }
93
+
94
+ @keyframes fadeIn {
95
+ from { opacity: 0; }
96
+ to { opacity: 1; }
97
+ }
98
+
99
+ /* Profit bar animation */
100
+ .profit-bar {
101
+ animation: growWidth 1.5s ease-out;
102
+ }
103
+
104
+ @keyframes growWidth {
105
+ from { width: 0%; }
106
+ }
107
+
108
+ /* Shimmer effect */
109
+ .shimmer {
110
+ background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.3), transparent);
111
+ background-size: 200% 100%;
112
+ animation: shimmer 2s infinite;
113
+ }
114
+
115
+ @keyframes shimmer {
116
+ 0% { background-position: -200% 0; }
117
+ 100% { background-position: 200% 0; }
118
+ }