-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
143 lines (122 loc) · 4.72 KB
/
support.html
File metadata and controls
143 lines (122 loc) · 4.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact & Support - Hidezone</title>
<style>
:root {
--bg-color: #0d0f1a;
--text-primary: #f0f0f0;
--text-secondary: #a0a5b5;
--accent: #00ff88;
--accent-glow: rgba(0, 255, 136, 0.2);
--card-bg: rgba(25, 28, 45, 0.7);
--font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
font-family: var(--font-family);
background-color: var(--bg-color);
color: var(--text-primary);
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 40px;
background-color: var(--card-bg);
border-radius: 16px;
box-shadow: 0 8px 32px var(--accent-glow);
border: 1px solid rgba(0, 255, 136, 0.2);
}
h1 {
color: var(--accent);
text-align: center;
font-size: 2.5rem;
margin-bottom: 30px;
text-shadow: 0 0 10px var(--accent-glow);
}
h2 {
color: var(--text-primary);
border-bottom: 2px solid var(--accent);
padding-bottom: 8px;
margin-top: 40px;
margin-bottom: 20px;
}
p {
color: var(--text-secondary);
font-size: 1.05rem;
}
.contact-card {
background-color: rgba(0, 255, 136, 0.05);
border-left: 4px solid var(--accent);
padding: 20px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.contact-method {
font-size: 1.2rem;
margin: 10px 0;
display: flex;
align-items: center;
gap: 15px;
}
.contact-label {
color: var(--text-secondary);
font-weight: 600;
min-width: 100px;
}
a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
}
a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 60px;
padding-top: 20px;
border-top: 1px solid rgba(160, 165, 181, 0.2);
color: var(--text-secondary);
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Support & Contact</h1>
<h2>Get in Touch</h2>
<p>If you have any questions, bug reports, feature requests, or need help with Hidezone, please reach out
directly! We are constantly working on improving the game and highly value player feedback.</p>
<div class="contact-card">
<div class="contact-method">
<span class="contact-label">Email:</span>
<a href="mailto:dramileydev@gmail.com">dramileydev@gmail.com</a>
</div>
<div class="contact-method">
<span class="contact-label">Developer:</span>
<span>dramiley</span>
</div>
</div>
<h2>Frequently Asked Questions</h2>
<p><strong>I purchased the PRO Version, but it's not active?</strong><br>
Please ensure you are logged into the same Google Play or Apple App Store account used for the purchase. The
app should automatically restore your purchase. If not, try restarting the app.</p>
<p><strong>My location is jumping around or inaccurate?</strong><br>
Hidezone relies on your phone's GPS. For the best experience, play outdoors in open areas, away from tall
buildings or dense tree cover. Ensure your phone's location settings are set to "High Accuracy".</p>
<p><strong>Players are disconnecting inside a lobby?</strong><br>
Ensure all players have a stable cellular connection. If you lock your phone or put the app in the
background for too long, the OS might suspend the connection. We recommend keeping the app open during the
lobby phase.</p>
<div class="footer">
© 2026 Hidezone. All rights reserved. <br>
<a href="index.html">Back to Home</a> | <a href="support.html">Support</a> | <a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Use</a>
</div>
</div>
</body>
</html>