-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
171 lines (150 loc) · 4.96 KB
/
Copy pathindex.html
File metadata and controls
171 lines (150 loc) · 4.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stalk.fun - Terms and Conditions</title>
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #e74c3c;
--bg-color: #f9f9f9;
--text-color: #333;
}
body {
font-family: 'Segoe UI', Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: var(--bg-color);
color: var(--text-color);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
padding: 30px;
margin: 20px 0;
}
.header {
background: var(--primary-color);
color: white;
padding: 20px 0;
margin-bottom: 30px;
}
h1 {
font-size: 2.5em;
margin: 0;
text-align: center;
}
h2 {
color: var(--primary-color);
border-bottom: 2px solid var(--accent-color);
padding-bottom: 10px;
margin-top: 40px;
}
.date {
text-align: center;
color: #666;
margin: 20px 0;
font-style: italic;
}
ul {
padding-left: 20px;
}
li {
margin: 10px 0;
list-style-type: none;
position: relative;
padding-left: 25px;
}
li:before {
content: "•";
color: var(--accent-color);
font-weight: bold;
position: absolute;
left: 0;
}
.warning {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin: 20px 0;
}
.contact {
text-align: center;
margin-top: 40px;
padding: 20px;
background: var(--primary-color);
color: white;
border-radius: 5px;
}
.contact a {
color: white;
text-decoration: none;
border-bottom: 1px dotted white;
}
.contact a:hover {
border-bottom: 1px solid white;
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<h1>Stalk.fun Terms and Conditions</h1>
</div>
</div>
<div class="container">
<div class="card">
<div class="date">Last Updated: May 24, 2025</div>
<div class="warning">
By using Stalk.fun services, you agree to be bound by these terms and conditions.
Please read them carefully.
</div>
<h2>1. NO REFUND POLICY</h2>
<p>By using Stalk.fun services, you explicitly agree that:</p>
<ul>
<li>All sales are final and non-refundable</li>
<li>Refunds will ONLY be issued at our sole discretion</li>
<li>We maintain detailed logs of all service usage and delivery</li>
<li>Unauthorized chargebacks will result in immediate account termination</li>
</ul>
<h2>2. CHARGEBACK PROTECTION</h2>
<p>You acknowledge and agree that:</p>
<ul>
<li>Any chargeback attempt constitutes a breach of these terms</li>
<li>We maintain comprehensive transaction logs and usage data</li>
<li>All chargebacks will be vigorously disputed with evidence</li>
<li>Legal action may be pursued for fraudulent chargebacks</li>
<li>Account access will be permanently terminated upon chargeback</li>
</ul>
<h2>3. SERVICE USAGE</h2>
<ul>
<li>Service access is non-transferable</li>
<li>Abuse or redistribution is strictly prohibited</li>
<li>We reserve the right to terminate service without refund</li>
<li>All usage is logged and monitored</li>
</ul>
<h2>4. LEGAL COMPLIANCE</h2>
<p>By using our service, you agree that:</p>
<ul>
<li>You are legally capable of entering this agreement</li>
<li>You will not attempt to circumvent payment</li>
<li>You accept all terms and conditions herein</li>
<li>These terms are legally binding and enforceable</li>
</ul>
<div class="contact">
<h2>Contact</h2>
<p>For any questions about these terms, please contact us at:</p>
<a href="mailto:support@stalk.fun">support@stalk.fun</a>
</div>
</div>
</div>
</body>
</html>