-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (124 loc) · 3.97 KB
/
Copy pathindex.html
File metadata and controls
137 lines (124 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHONESERVE | EDGE TECH</title>
<style>
body {
background-color: #050505;
color: #00ff41; /* Matrix/Terminal Green */
font-family: 'Courier New', Courier, monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
overflow: hidden;
text-transform: uppercase;
}
#bg-effect {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, #1a1a1a 0%, #000 90%);
z-index: -1;
opacity: 0.6;
}
.container {
text-align: center;
border: 1px solid #00ff41;
padding: 50px;
background: rgba(0, 0, 0, 0.9);
box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}
h1 {
font-size: clamp(2rem, 8vw, 4rem);
letter-spacing: 12px;
margin: 0;
color: #00ff41;
text-shadow: 3px 3px #ff003c; /* Red glitch shadow */
animation: glitch 2s infinite;
}
@keyframes glitch {
0% { text-shadow: 2px 2px #ff003c; }
50% { text-shadow: -2px -2px #00e5ff; }
100% { text-shadow: 2px 2px #ff003c; }
}
.subtitle {
font-size: 0.9rem;
margin-top: 15px;
color: #ffffff;
letter-spacing: 4px;
opacity: 0.8;
}
.status-box {
margin-top: 40px;
padding: 15px;
border-left: 3px solid #00ff41;
background: rgba(0, 255, 65, 0.05);
font-size: 0.75rem;
text-align: left;
line-height: 1.6;
}
.pulse {
display: inline-block;
width: 8px;
height: 8px;
background-color: #00ff41;
border-radius: 50%;
margin-right: 12px;
animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7); }
70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(0, 255, 65, 0); }
100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 65, 0); }
}
.btn {
margin-top: 50px;
display: inline-block;
padding: 18px 40px;
background: transparent;
color: #00ff41;
border: 1px solid #00ff41;
cursor: pointer;
text-decoration: none;
font-weight: bold;
letter-spacing: 3px;
transition: all 0.4s ease;
}
.btn:hover {
background: #00ff41;
color: #000;
box-shadow: 0 0 40px #00ff41;
transform: translateY(-3px);
}
.footer-text {
position: fixed;
bottom: 20px;
font-size: 0.6rem;
color: #333;
letter-spacing: 2px;
}
</style>
</head>
<body>
<div id="bg-effect"></div>
<div class="container">
<h1>PHONESERVE</h1>
<div class="subtitle">Sovereign Architecture | Edge Tech</div>
<div class="status-box">
<div><span class="pulse"></span>GATEWAY: <span style="color: #fff;">ACTIVE</span></div>
<div>[NODE: VANCOUVER_WA_USA]</div>
<div>[ENCRYPTION: AES-256-GCM]</div>
<div>[SYSTEM: PROJECT SANCTUARY]</div>
</div>
<a href="https://edgetech-gateway.triggger0357.workers.dev" class="btn">ACCESS GATEWAY</a>
</div>
<div class="footer-text">PROPERTY OF EDGE TECH KNOWLEDGEY - ALL RIGHTS RESERVED</div>
</body>
</html>