File size: 1,869 Bytes
f2768a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
class CustomFooter extends HTMLElement {
    connectedCallback() {
        this.attachShadow({ mode: 'open' });
        this.shadowRoot.innerHTML = `
            <style>
                footer {
                    background: rgba(10, 10, 10, 0.8);
                    backdrop-filter: blur(10px);
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                }
                
                .social-icon {
                    transition: all 0.3s ease;
                }
                
                .social-icon:hover {
                    color: #ff8c00;
                    transform: translateY(-2px);
                }
            </style>
            <footer class="py-6 px-6 mt-12">
                <div class="container mx-auto">
                    <div class="flex flex-col md:flex-row justify-between items-center">
                        <div class="text-gray-400 text-sm mb-4 md:mb-0">
                            © 2023 Loot Spin Royale. All rights reserved.
                        </div>
                        <div class="flex gap-4">
                            <a href="#" class="social-icon text-gray-400">
                                <i data-feather="twitter"></i>
                            </a>
                            <a href="#" class="social-icon text-gray-400">
                                <i data-feather="instagram"></i>
                            </a>
                            <a href="#" class="social-icon text-gray-400">
                                <i data-feather="facebook"></i>
                            </a>
                        </div>
                    </div>
                    <div class="text-center text-xs text-gray-500 mt-4">
                        This is a demo game. No real money is involved.
                    </div>
                </div>
            </