-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
779 lines (679 loc) · 40.8 KB
/
index.html
File metadata and controls
779 lines (679 loc) · 40.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitZone</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="font.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="images/bitzone.png" title="BitZone Icon">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
#hero-entrance { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#main-site-content { visibility: hidden; opacity: 0; transition: opacity 1s ease; }
canvas { position: absolute; top: 0; left: 0; }
#main-title { position: relative; z-index: 10000; color: #fff; font-family: sans-serif; text-align: center; pointer-events: none; }
</style>
<script>
if (sessionStorage.getItem('hasSeenIntro')) {
document.documentElement.classList.add('intro-seen');
}
</script>
<style>
.intro-seen #hero-entrance { display: none !important; }
.intro-seen #main-site-content { visibility: visible !important; opacity: 1 !important; }
</style>
</head>
<body>
<section id="hero-entrance" style="position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #000; z-index: 9999; overflow: hidden; display: flex; align-items: center; justify-content: center;">
<div id="canvas-container" style="position: absolute; width: 100%; height: 100%; z-index: 1;"></div>
<div id="flash-effect" style="position: absolute; width: 100%; height: 100%; background: white; opacity: 0; z-index: 20000; pointer-events: none; transition: opacity 0.3s;"></div>
<div class="hero-content" style="position: relative; z-index: 10; text-align: center;">
<h1 id="main-title" style="font-size: clamp(3rem, 10vw, 7rem); color: #fff; text-shadow: 0 0 20px #bc13fe; letter-spacing: 20px; transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);">BITZONE</h1>
<p id="status-text" style="color: #8affff; font-family: monospace; letter-spacing: 10px; opacity: 0.5; margin-top: 20px;">READY FOR UPLOAD</p>
<div style="margin-top: 60px;">
<button onclick="theUltimateWarp()" id="enter-btn" class="glass-button">
INITIALIZE
</button>
<style>
.glass-button {
padding: 18px 50px;
border: 1px solid rgba(188, 19, 254, 0.5);
color: #fff;
background: rgba(255, 255, 255, 0.05);
cursor: pointer;
border-radius: 8px;
font-weight: bold;
letter-spacing: 4px;
backdrop-filter: blur(15px);
box-shadow: 0 8px 32px 0 rgba(188, 19, 254, 0.3);
transition: all 0.4s ease;
text-transform: uppercase;
position: relative;
overflow: hidden;
}
.glass-button:hover {
background: rgba(188, 19, 254, 0.2);
border-color: #bc13fe;
box-shadow: 0 0 20px #bc13fe, inset 0 0 10px #bc13fe;
transform: translateY(-3px);
letter-spacing: 6px;
}
.glass-button::before {
content: '';
position: absolute;
top: 0; left: -100%;
width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: 0.5s;
}
.glass-button:hover::before {
left: 100%;
}
</style>
</div>
</div>
</section>
<style>
.shake-anim { animation: shake 0.2s infinite; }
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
25% { transform: translate(-1px, -2px) rotate(-1deg); }
50% { transform: translate(-3px, 0px) rotate(1deg); }
75% { transform: translate(3px, 2px) rotate(0deg); }
100% { transform: translate(1px, -1px) rotate(1deg); }
}
</style>
<nav class="navbar">
<div class="nav-container">
<div class="right-nav">
<div class="nav-logo">
<img src="images/bitzone.png" alt="BitZone Logo" title="لوگوی بیتزون" class="logo">
<span class="logo-text">BitZone</span>
</div>
<ul class="nav-links">
<li><a href="#hero" class="nav-link">خانه</a></li>
<li><a href="#videos" class="nav-link">آموزشها</a></li>
<li><a href="gallery.html" class="nav-link">گالری تصاویر</a></li>
<li><a href="#paths" class="nav-link">مسیرها</a></li>
<li><a href="#community" class="nav-link">جامعه</a></li>
<li>
<a href="javascript:void(0)" class="nav-link" onclick="openContactModal(event)">تماس با ما</a>
</li>
<li class="nav-item">
<a href="javascript:void(0)" class="nav-link join-btn" onclick="toggleSurvey()">نظرسنجی</a>
</li>
</ul>
</div>
<div class="login-container">
<div class="theme-switch">
<i class="fa-solid fa-moon" id="moonIcon"></i>
<label class="toggle-switch">
<input type="checkbox" id="themeCheckbox">
<span class="slider"></span>
</label>
<i class="fa-solid fa-sun" id="sunIcon"></i>
</div>
<div id="user-status-area">
<a href="login.html" class="login">ورود / ثبت نام</a>
</div>
<div id="user-dropdown" class="user-dropdown-content" style="display:none; position: absolute; background: #1a1b2e; border: 1px solid #8b5cf6; padding: 15px; border-radius: 10px; left: 20px; top: 70px; z-index: 1000; min-width: 180px;">
<p style="color: #fff; margin-bottom: 10px;"><i class="fas fa-user"></i> <span id="user-name-display"></span></p>
<hr style="border: 0.1px solid #2d2d42;">
<button onclick="logout()" style="background: none; border: none; color: #ff4d4d; cursor: pointer; margin-top: 10px;"><i class="fas fa-sign-out-alt"></i> خروج</button>
</div>
</div>
<button class="mobile-menu-btn" onclick="toggleMobileMenu()">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<button class="close-mobile-menu" onclick="toggleMobileMenu()">×</button>
<a href="#hero" class="mobile-nav-link" onclick="toggleMobileMenu()">خانه</a>
<a href="#videos" class="mobile-nav-link" onclick="toggleMobileMenu()">آموزشها</a>
<a href="gallery.html" class="mobile-nav-link" onclick="toggleMobileMenu()">گالری تصاویر</a>
<a href="#paths" class="mobile-nav-link" onclick="toggleMobileMenu()">مسیرها</a>
<a href="#community" class="mobile-nav-link" onclick="toggleMobileMenu()">جامعه</a>
<a href="javascript:void(0)" class="mobile-nav-link" onclick="openContactModal(); toggleMobileMenu()">تماس با ما</a>
<a href="javascript:void(0)" class="mobile-nav-link" onclick="toggleSurvey(); toggleMobileMenu()">نظرسنجی</a>
<div id="mobile-user-status" style="margin-top: 20px;">
<a href="login.html" class="mobile-login-btn">ورود / ثبت نام</a>
</div>
</div>
<section class="hero-section" id="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">کدنویسی را با <span class="highlight">BitZone</span> شروع کن!</h1>
<p class="hero-description">مسیر یادگیری خود را پیدا کنید، با چالشهای واقعی کدنویسی کنید و به جامعهای از متخصصان بپیوندید. آینده برنامهنویسی منتظر شماست.</p>
<div class="hero-buttons">
<a href="#paths" class="cta-btn primary" style="text-decoration: none; display: inline-flex; align-items: center; justify-content: center;"> مسیرهای یادگیری</a>
<a href="#videos" class="cta-btn secondary">ویدیوهای رایگان</a>
</div>
<div class="stats">
<div class="stat-item">
<div class="stat-number">15K+</div>
<div class="stat-label">دانشجو فعال</div>
</div>
<div class="stat-item">
<div class="stat-number">200+</div>
<div class="stat-label">چالش کدنویسی</div>
</div>
<div class="stat-item">
<div class="stat-number">3</div>
<div class="stat-label">مسیر تخصصی</div>
</div>
</div>
</div>
<div class="hero-visual">
<div class="floating-card card-1">
<i class="fa-solid fa-code card-icon"></i>
<span>چالش روزانه</span>
</div>
<div class="floating-card card-2">
<i class="fa-solid fa-database card-icon"></i>
<span>امنیت داده</span>
</div>
<div class="floating-card card-3">
<i class="fa-solid fa-microchip card-icon"></i>
<span>AI/ML</span>
</div>
<div class="code-visual">
<div class="code-line"><span class="code-keyword">function</span> <span class="code-function">findPath</span>(user) {</div>
<div class="code-line"> <span class="code-keyword">if</span> (user.score > 80) {</div>
<div class="code-line"> <span class="code-keyword">return</span> <span class="code-function">'Expert'</span>;</div>
<div class="code-line"> }</div>
<div class="code-line">}</div>
</div>
</div>
</div>
</section>
<section class="videos-section" id="videos">
<div class="container">
<h2 class="section-title">آموزشهای ویدیویی رایگان</h2>
<div class="videos-grid">
<div class="video-card cyber-card">
<div class="video-player">
<video class="video-element" autoplay loop muted playsinline poster="images/cyber.png" title="پیشنمایش دوره امنیت سایبری"></video> <div class="hover-overlay">
</div>
<div class="scan-line"></div>
</div>
<div class="video-card-content">
<h3 class="video-title">پنل کنترل امنیت سایبری</h3>
<div class="video-meta">
<span class="video-tag cyber-tag">SECURITY PANEL</span>
<span class="teacher">تیم امنیت سایبری</span>
</div>
<p class="video-description">آموزش کامل پیادهسازی پنل کنترل امنیتی با مانیتورینگ لحظهای و تحلیل تهدیدات.</p>
<button class="watch-btn locked cyber-btn" onclick="goToCourse('course-cyber.html')">
<span class="btn-text">ورود به پنل امنیتی</span>
<i class="fas fa-terminal"></i>
</button>
</div>
</div>
<div class="video-card python-premium-card">
<div class="video-player">
<video class="video-element" autoplay loop muted playsinline poster="images/py.png" title="پیشنمایش دوره پایتون"></video>
<source src="videos/python-loop.mp4" type="video/mp4">
</video>
<i class="fab fa-python special-card-icon"></i>
<div class="hover-overlay"></div>
</div>
<div class="video-card-content">
<h3 class="video-title">مبانی پایتون و دیتا</h3>
<div class="video-meta">
<span class="video-tag">AI/ML</span>
<span>مدرس: احمدی</span>
</div>
<p class="video-description">آموزش نصب پایتون، محیطهای کاربری و شروع کار با کتابخانههای قدرتمند Pandas و NumPy برای تحلیل داده.</p>
<button class="watch-btn locked" onclick="goToCourse('course-python.html')">
<span class="btn-text">تماشا کنید (قفل است)</span>
<i class="fas fa-lock"></i>
</button>
</div>
</div>
<div class="video-card iot-special-card"> <div class="video-player">
<video class="video-element" autoplay loop muted playsinline poster="images/iot.png" title="پیشنمایش دوره اینترنت اشیا"></video>
<source src="videos/iot-preview.mp4" type="video/mp4">
</video>
<i class="fas fa-microchip hardware-icon"></i>
<div class="hover-overlay"></div>
</div>
<div class="video-card-content">
<h3 class="video-title">هوشمندسازی اتاق با IoT</h3>
<div class="video-meta">
<span class="video-tag iot">Hardware & IoT</span>
<span>تیم بیت زون</span>
</div>
<p class="video-description">آموزش گامبهگام کنترل روشنایی اتاق با موبایل با استفاده از برد ESP8266 و کدهای ++C.</p>
<button class="watch-btn iot-btn" onclick="goToCourse('course-iot.html')">
<span class="btn-text">مشاهده پروژه عملی</span>
<i class="fas fa-microchip"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="popular-paths" id="paths">
<div class="container">
<h2 class="section-title">مسیرهای محبوب یادگیری </h2>
<div class="paths-grid">
<div class="path-card">
<div class="path-header">
<i class="fa-solid fa-palette path-icon gradient-text"></i>
<span class="path-badge">تخصصی</span>
</div>
<h3 class="path-title">توسعه دهنده فرانتاند</h3>
<p class="path-description">تسلط بر HTML, CSS, JavaScript و فریمورکهایی مانند React یا Vue برای ساخت رابطهای کاربری جذاب و پاسخگو.</p>
<div class="path-meta">
<span class="meta-item">React</span>
<span class="meta-item">UX/UI</span>
<span class="meta-item">6 ماه</span>
</div>
<button class="path-btn" onclick="window.location.href='roadmap-frontend.html'">دیدن مسیر</button>
</div>
<div class="path-card">
<div class="path-header">
<i class="fa-solid fa-server path-icon gradient-text"></i>
<span class="path-badge">مقدماتی</span>
</div>
<h3 class="path-title">توسعه دهنده بکاند</h3>
<p class="path-description">آموزش زبانهای سمت سرور مانند Python/Node.js، مدیریت دیتابیس و طراحی APIهای قدرتمند و امن.</p>
<div class="path-meta">
<span class="meta-item">Python</span>
<span class="meta-item">SQL/NoSQL</span>
<span class="meta-item">7 ماه</span>
</div>
<button class="path-btn" onclick="window.location.href='roadmap-backend.html'">دیدن مسیر</button> </div>
<div class="path-card">
<div class="path-header">
<i class="fa-solid fa-brain path-icon gradient-text"></i>
<span class="path-badge">پیشرفته</span>
</div>
<h3 class="path-title">متخصص هوش مصنوعی</h3>
<p class="path-description">ورود به دنیای Machine Learning، Deep Learning و پردازش دادهها برای ساخت مدلهای پیشبینی و هوشمند.</p>
<div class="path-meta">
<span class="meta-item">ML</span>
<span class="meta-item">TensorFlow</span>
<span class="meta-item">8 ماه</span>
</div>
<button class="path-btn" onclick="window.location.href='roadmap-ai.html'">دیدن مسیر</button>
</div>
</div>
</div>
</section>
<section class="community-section" id="community">
<div class="container">
<h2 class="section-title">به جامعه برنامهنویسی بپیوندید </h2>
<p class="community-content" style="text-align: center; color: var(--text-secondary);">در انجمن ما، دانش خود را به اشتراک بگذارید، سوال بپرسید و با دیگران همکاری کنید.</p>
<div class="community-features">
<div class="community-feature">
<i class="fa-brands fa-discord feature-icon gradient-text"></i>
<h3>سرور دیسکورد</h3>
<p>گفتگوهای زنده، کمک فوری و جلسات گروهی برای حل مشکل.</p>
</div>
<div class="community-feature">
<i class="fa-solid fa-comments feature-icon gradient-text"></i>
<h3>تالار گفتگو</h3>
<p>پاسخهای عمیق و سازماندهی شده به سوالات فنی شما.</p>
</div>
<div class="community-feature">
<i class="fa-solid fa-user-group feature-icon gradient-text"></i>
<h3>گروههای مطالعه</h3>
<p>با هممسیران خود گروههای مطالعه تشکیل دهید و تمرین کنید.</p>
</div>
</div>
<div class="community-stats">
<div class="community-stat">
<div class="stat-number">10K+</div>
<div class="stat-label">عضو فعال</div>
</div>
<div class="community-stat">
<div class="stat-number">500+</div>
<div class="stat-label">موضوع هفتگی</div>
</div>
<div class="community-stat">
<div class="stat-number">24/7</div>
<div class="stat-label">پشتیبانی همکار</div>
</div>
</div>
</div>
</section>
<section class="features" id="why-bitzone">
<div class="container">
<h2 class="section-title">چرا <span class="highlight">BitZone</span> را انتخاب کنید؟</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fa-solid fa-graduation-cap feature-icon gradient-text"></i>
<h3>یادگیری عملی</h3>
<p>تمرکز بر پروژههای واقعی و چالشهای عملی برای تسلط کامل بر مهارت.</p>
</div>
<div class="feature-card">
<i class="fa-solid fa-shield-halved feature-icon gradient-text"></i>
<h3>پشتیبانی تخصصی</h3>
<p>در هر مرحله از مسیر، توسط مربیان مجرب راهنمایی خواهید شد.</p>
</div>
<div class="feature-card">
<i class="fa-solid fa-bolt feature-icon gradient-text"></i>
<h3>مسیرهای بهروز</h3>
<p>سرفصلهای آموزشی بر اساس آخرین فناوریها و نیازهای بازار کار تنظیم شدهاند.</p>
</div>
</div>
</div>
</section>
<section class="related-links-section">
<div class="container">
<h2 class="section-title">شبکه دانش و مراجع مرتبط</h2>
<div class="links-grid">
<a href="https://faradars.org" target="_blank" class="link-card">
<div class="card-glow"></div>
<i class="fas fa-graduation-cap card-icon"></i>
<h3>فرادرس</h3>
<p>آموزشهای تخصصی الکترونیک و برنامهنویسی به زبان فارسی</p>
<span class="visit-btn" >مشاهده مرجع <i class="fas fa-external-link-alt"></i></span>
</a>
<a href="https://sisoog.com" target="_blank" class="link-card">
<div class="card-glow"></div>
<i class="fas fa-microchip card-icon"></i>
<h3>سیسوگ</h3>
<p>پایگاه دانش سختافزار، اینترنت اشیا و میکروکنترلرها</p>
<span class="visit-btn">مشاهده مرجع <i class="fas fa-external-link-alt"></i></span>
</a>
<a href="https://owasp.org" target="_blank" class="link-card">
<div class="card-glow"></div>
<i class="fas fa-user-shield card-icon"></i>
<h3>OWASP</h3>
<p>مرجع جهانی استانداردهای امنیت وب و تست نفوذ (مناسب DVWA)</p>
<span class="visit-btn">مشاهده مرجع <i class="fas fa-external-link-alt"></i></span>
</a>
<a href="https://www.arduino.cc" target="_blank" class="link-card">
<div class="card-glow"></div>
<i class="fab fa-edge-legacy card-icon"></i>
<h3>Arduino</h3>
<p>مرجع اصلی کدنویسی و مستندات بردهای هوشمند</p>
<span class="visit-btn">مشاهده مرجع <i class="fas fa-external-link-alt"></i></span>
</a>
</div>
</div>
</section>
<footer class="footer">
<div class="container footer-content">
<div class="footer-section">
<h3>BitZone</h3>
<p>سکوی پرتاب شما به دنیای برنامهنویسی</p>
<div style="margin-top: 1rem; font-size: 1.5rem;">
<a href="https://www.youtube.com/@bitzonehub" title="کانال یوتیوب بیتزون" style="display: inline; margin-left: 1rem;"><i class="fa-brands fa-youtube"></i></a>
<a href="https://t.me/CodeMatrixx" title="کانال تلگرام" style="display: inline; margin-left: 1rem;"><i class="fa-brands fa-telegram"></i></a>
<a href="https://github.com/Farnaztr" title="گیتهاب توسعهدهنده" style="display: inline;"><i class="fa-brands fa-github"></i></a>
</div>
</div>
<div class="footer-section">
<h4>مسیرهای اصلی</h4>
<a href="#paths">فرانتاند</a>
<a href="#paths">بکاند</a>
<a href="#paths">هوش مصنوعی</a>
</div>
<div class="footer-section">
<h4>منابع</h4>
<a href="#videos">آموزشهای ویدیویی</a>
<a href="#community">تالار گفتگو</a>
</div>
<div class="footer-section">
<h4>شرکت</h4>
<a href="about.html">درباره ما</a>
<a href="#" onclick="openContactModal()">تماس با ما</a>
</div>
</div>
<div class="container footer-bottom">
<p>© 2025 BitZone</p>
</div>
</footer>
<div id="resultModal" class="modal">
<div class="modal-content result-content">
<span class="close-modal" onclick="closeResultModal()">×</span>
<div class="result-header">
<i class="fa-solid fa-trophy result-icon gradient-text"></i>
<h2>نتیجه آزمون علاقهسنجی</h2>
</div>
<h3 id="resultTitle" class="gradient-text">توسعه دهنده فرانتاند</h3>
<div class="result-stats">
<div class="result-stat">
<div class="stat-value" id="matchPercent">80%</div>
<div class="stat-label">میزان تطابق</div>
</div>
<div class="result-stat">
<div class="stat-value" id="pathDuration">6 ماه</div>
<div class="stat-label">مدت زمان تخمینی</div>
</div>
</div>
<p id="resultDescription">شما استعداد طبیعی در طراحی و ساخت تجربیات کاربری دارید...</p>
<div id="analysis-container" class="reveal" style="margin-bottom: 20px;"></div>
<div class="form-actions" style="justify-content: center; gap: 10px;">
<a href="#videos"
class="form-btn primary"
onclick="closeResultModal()"
style="text-decoration:none;">
مشاهده سرفصلها
</a> <button class="form-btn secondary" onclick="closeResultModal()">بستن</button>
</div>
</div>
</div>
<div id="contactModal" class="modal">
<div class="modal-content contact-modal">
<span class="close-modal" onclick="closeContactModal()">×</span>
<div class="contact-header">
<i class="fa-solid fa-headset result-icon gradient-text"></i>
<h2>ارتباط با تیم پشتیبانی</h2>
<p>سوالات، پیشنهادات یا مشکلات خود را از طریق فرم زیر با ما در میان بگذارید.</p>
</div>
<form id="contactForm" class="contact-form">
<div class="form-row">
<div class="form-group">
<label for="name">نام کامل</وروlabel>
<input type="text" id="name" class="form-input" required>
</div>
<div class="form-group">
<label for="email">ایمیل</label>
<input type="email" id="email" class="form-input" required>
</div>
</div>
<div class="form-group">
<label for="subject">موضوع</label>
<input type="text" id="subject" class="form-input" required>
</div>
<div class="form-group">
<label for="message">متن پیام</label>
<textarea id="message" class="form-textarea" rows="4" required></textarea>
</div>
<div class="form-actions" style="justify-content: flex-end;">
<button type="submit" class="form-btn primary">ارسال پیام</button>
<button type="button" class="form-btn secondary" onclick="closeContactModal()">انصراف</button>
</div>
</form>
</div>
</div>
<div id="assessmentModal" class="modal" style="display:none; position:fixed; z-index:9999; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.9); align-items:center; justify-content:center;">
<div class="modal-content" style="background:#1a1b2e; padding:30px; border-radius:15px; width:90%; max-width:500px; border:1px solid #8b5cf6; position:relative;">
<span onclick="document.getElementById('assessmentModal').style.display='none'; document.body.style.overflow='auto'" style="position:absolute; top:10px; left:15px; cursor:pointer; color:#fff; font-size:24px;">×</span>
<div id="progressContainer" style="margin-bottom:20px;">
<div style="background:#2d2d42; height:8px; border-radius:10px;">
<div id="progressFill" style="background:#8b5cf6; height:100%; width:0%; border-radius:10px; transition:0.3s;"></div>
</div>
<span id="progressText" style="color:#aaa; font-size:12px; margin-top:5px; display:block;"></span>
</div>
<div id="questionContainer"></div>
<div style="margin-top:20px; display:flex; gap:10px;">
<button id="prevBtn" onclick="prevQuestion()" class="cta-btn secondary" style="padding:10px 20px; display:none;">قبلی</button>
<button id="nextBtn" onclick="nextQuestion()" class="cta-btn primary" style="padding:10px 20px;">بعدی</button>
</div>
</div>
</div>
<div id="resultModal" class="modal" style="display:none; position:fixed; z-index:9999; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.95); align-items:center; justify-content:center; overflow-y: auto;">
<div class="modal-content" style="background:#1a1b2e; padding:25px; border-radius:15px; width:95%; max-width:500px; border:2px solid #8b5cf6; text-align:center; margin: 20px auto;">
<h2 id="result-title" style="color:#8b5cf6; margin-bottom:10px; font-size: 1.5rem;"></h2>
<div style="color:#fff; margin-bottom:15px; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px;">
تطابق: <span id="result-percent" style="color:#10b981; font-weight:bold;"></span> |
زمان: <span id="result-duration" style="color:#f59e0b;"></span>
</div>
<div style="max-height: 300px; overflow-y: auto; text-align: right; padding-left: 5px;">
<p id="result-description" style="color:#eee; line-height:1.8; font-size: 0.95rem; margin-bottom: 15px;"></p>
<div id="analysis-container" style="border-top: 1px solid #2d2d42; "></div>
</div>
<div style="display: flex; flex-direction: column; gap: 10px; margin-top: 20px;">
<button onclick="handleResultAction('#videos')" class="cta-btn primary" style="width: 100%; padding: 12px; cursor: pointer;">
مشاهده ویدیوهای پیشنهادی
</button>
<button onclick="closeResultModal()" style="background: none; border: none; color: #ff4d4d; cursor: pointer; font-size: 0.9rem; padding: 5px;">
بستن و بازگشت
</button>
</div>
</div>
</div>
<div id="contactModal" class="contact-overlay">
<div class="neo-contact-wrapper">
<button class="close-minimal" onclick="closeContactModal()">×</button>
<div class="neo-header">
<h2>Signal To <span>BitZone</span></h2>
<p>ارسال پیام به هسته مرکزی</p>
</div>
<form class="neo-form" onsubmit="event.preventDefault(); alert('پیام ارسال شد!'); closeContactModal();">
<div class="input-container">
<input type="text" required>
<label>نام شما</label>
</div>
<div class="input-container">
<input type="email" required>
<label>ایمیل</label>
</div>
<textarea placeholder="پیام شما..." rows="3" required style="width:100%; background:rgba(255,255,255,0.05); border:1px solid #444; color:white; border-radius:8px; padding:10px; margin-top:10px;"></textarea>
<button type="submit" class="neo-submit-btn" style="width:100%; margin-top:15px; padding:12px; background:#8b5cf6; border:none; color:white; border-radius:8px; cursor:pointer;">ارسال سیگنال</button>
</form>
</div>
</div>
<div id="surveyModal" class="bz-survey-overlay">
<div class="bz-survey-card">
<button class="bz-close-btn" onclick="toggleSurvey()">×</button>
<div class="bz-header">
<h2>نظرسنجی <span>BitZone</span></h2>
<p>هسته مرکزی هوش مصنوعی و امنیت</p>
</div>
<form class="bz-form" onsubmit="event.preventDefault(); alert('سیگنال دریافت شد!'); toggleSurvey();">
<div class="bz-row">
<div class="bz-field">
<label>نام کاربری</label>
<input type="text" placeholder="نام شما..." required>
</div>
<div class="bz-field">
<label>ایمیل</label>
<input type="email" placeholder="email@test.com" required>
</div>
</div>
<div class="bz-field">
<label>حوزه مورد علاقه (Target)</label>
<select>
<option>اینترنت اشیا (IoT)</option>
<option>هوش مصنوعی (AI)</option>
<option>امنیت سایبری (Cyber Security)</option>
<option>برنامهنویسی پایتون</option>
</select>
</div>
<div class="bz-field">
<label>سطح دانش فنی (Skill Level):</label>
<div class="bz-options">
<label><input type="radio" name="lvl" checked> مبتدی</label>
<label><input type="radio" name="lvl"> متوسط</label>
<label><input type="radio" name="lvl"> حرفهای</label>
<label><input type="radio" name="lvl"> متخصص</label>
</div>
</div>
<div class="bz-field">
<label>سرویسهای مورد نیاز (Checkboxes):</label>
<div class="bz-options">
<label><input type="checkbox" checked> اخبار تکنولوژی</label>
<label><input type="checkbox"> آموزش بردهای ESP</label>
<label><input type="checkbox"> تست نفوذ</label>
</div>
</div>
<div class="bz-field">
<label>پیشنهادات</label>
<textarea rows="2" placeholder="پیام شما به هسته مرکزی..."></textarea>
</div>
<button type="submit" class="bz-submit-btn">ارسال اطلاعات</button>
</form>
</div>
</div>
<style>
.bz-survey-overlay {
display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85);
backdrop-filter: blur(12px); z-index: 100000; justify-content: center; align-items: center; padding: 15px;
}
.bz-survey-card {
background: #0b0b18; border: 1px solid #8b5cf6; width: 100%; max-width: 500px;
border-radius: 20px; padding: 30px; position: relative; direction: rtl; font-family: sans-serif;
box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}
.bz-header { text-align: center; margin-bottom: 20px; }
.bz-header h2 { color: white; margin: 0; font-size: 1.6rem; }
.bz-header h2 span { color: #8b5cf6; }
.bz-header p { color: #888; font-size: 0.8rem; margin-top: 5px; }
.bz-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.bz-field { margin-bottom: 15px; text-align: right; }
.bz-field label { display: block; color: #ccc; font-size: 0.8rem; margin-bottom: 6px; }
.bz-field input, .bz-field select, .bz-field textarea {
width: 100%; padding: 10px; background: #16162d; border: 1px solid #333;
border-radius: 8px; color: white; outline: none; font-size: 0.85rem;
}
.bz-field input:focus { border-color: #8b5cf6; }
.bz-options { display: flex; flex-wrap: wrap; gap: 12px; color: #eee; font-size: 0.8rem; padding-top: 5px; }
.bz-options label { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.bz-submit-btn {
width: 100%; padding: 12px; background: #8b5cf6; color: white; border: none;
border-radius: 10px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.bz-submit-btn:hover { background: #d946ef; transform: translateY(-2px); }
.bz-close-btn {
position: absolute; top: 15px; left: 15px; background: none; border: none;
color: #666; font-size: 24px; cursor: pointer;
}
</style>
<div id="surveyModal" class="contact-overlay" style="display: none; align-items: center; justify-content: center; z-index: 2000;">
<div class="contact-modal" style="max-width: 500px; width: 90%; background: rgba(20, 20, 35, 0.95); backdrop-filter: blur(20px); border: 1px solid var(--primary-purple); border-radius: 20px; padding: 30px; position: relative;">
<button onclick="toggleSurvey()" style="position: absolute; left: 20px; top: 20px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;">×</button>
<h2 style="color: #fff; text-align: center; margin-bottom: 20px;">نظرسنجی BitZone</h2>
<p style="color: #bbb; text-align: center; font-size: 14px;">نظر شما به ما در بهبود کیفیت آموزشها کمک میکند.</p>
<div id="surveyContent">
<label style="color: #fff; display: block; margin-top: 20px;">کیفیت آموزشها چطور است؟</label>
<div style="display: flex; justify-content: space-around; margin: 15px 0;">
<button onclick="submitVote(1)" style="font-size: 25px; background: none; border: none; cursor: pointer;">😞</button>
<button onclick="submitVote(2)" style="font-size: 25px; background: none; border: none; cursor: pointer;">😐</button>
<button onclick="submitVote(3)" style="font-size: 25px; background: none; border: none; cursor: pointer;">😊</button>
<button onclick="submitVote(4)" style="font-size: 25px; background: none; border: none; cursor: pointer;">🔥</button>
</div>
<textarea id="surveyComment" placeholder="پیشنهاد یا انتقادی دارید؟" style="width: 100%; height: 80px; background: rgba(255,255,255,0.05); border: 1px solid #444; border-radius: 10px; color: #fff; padding: 10px; margin-top: 15px;"></textarea>
<button onclick="finishSurvey()" style="width: 100%; padding: 12px; margin-top: 20px; border-radius: 10px; border: none; background: var(--primary-purple); color: #fff; font-weight: bold; cursor: pointer;">ثبت نظر</button>
</div>
</div>
</div>
<audio id="bgMusic" loop>
<source src="images/lofi.mp3" type="audio/mpeg">
مرورگر شما از پخش صدا پشتیبانی نمیکند.
</audio>
<div class="music-player" onclick="toggleMusic()">
<div class="music-wave" id="wave">
<span></span>
<span></span>
<span></span>
</div>
<i id="musicIcon" class="fas fa-play"></i>
</div>
<div id="custom-cursor"></div>
<div class="cursor-dot"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="3d-hologram.js"></script>
<script src="script.js"></script>
</body>
</html>