File size: 1,247 Bytes
6eda9c9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<style>
  @keyframes drawLine {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }

  @keyframes fadeInText {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .exocore-footer {
    background-color: #1a1a1a;
    color: #9e9e9e;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #282828;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .exocore-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #00bcd4;
    animation: drawLine 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
  }

  .footer-content {
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeInText 0.8s ease-out 1s forwards;
  }

  .footer-content .exocore-name {
    color: #00bcd4;
    font-weight: 500;
  }
</style>

<footer class="exocore-footer">
  <div class="footer-content">
    <small>&copy; 2025 <span class="exocore-name">Exocore</span>. All rights reserved.</small>
  </div>
</footer>