-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
196 lines (179 loc) · 10.8 KB
/
Copy pathrules.html
File metadata and controls
196 lines (179 loc) · 10.8 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CTK Systems — Terms of Service</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--purple: #7c6fff; --purple-dark: #5a4fcf;
--purple-glow: rgba(124,111,255,0.15);
--bg: #09090f; --bg-card: #0f0f1a;
--border: rgba(255,255,255,0.07);
--border-accent: rgba(124,111,255,0.35);
--text: #f0eefc; --text-muted: #888899; --text-dim: #555566;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased; }
header { position: sticky; top: 0; z-index: 100; padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: rgba(9,9,15,0.85); backdrop-filter: blur(20px); }
.logo { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 28px; height: 28px; background: var(--purple); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
nav { display: flex; gap: 4px; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.page-hero { padding: 80px 40px 64px; text-align: center; position: relative; overflow: hidden; }
.page-glow { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(124,111,255,0.1) 0%, transparent 70%); pointer-events: none; }
.page-label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 99px; border: 1px solid var(--border-accent); background: rgba(124,111,255,0.08); color: #a89fff; font-size: 12px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1px; line-height: 1.1; background: linear-gradient(135deg, #ffffff 30%, #9b8fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 14px; color: var(--text-dim); max-width: 400px; margin: 12px auto 0; }
.content { max-width: 820px; margin: 0 auto; padding: 12px 40px 80px; width: 100%; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; transition: border-color 0.2s; }
.card:hover { border-color: rgba(124,111,255,0.2); }
.card-label { font-size: 11px; font-weight: 600; color: var(--purple); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card ol, .card ul { padding-left: 18px; display: flex; flex-direction: column; gap: 18px; }
.card li { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card li strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 3px; }
.card a { color: var(--purple); text-decoration: none; }
.card a:hover { text-decoration: underline; }
.enforcement { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.4px; padding: 3px 10px; border-radius: 99px; background: rgba(124,111,255,0.1); border: 1px solid var(--border-accent); color: #a89fff; }
.enforcement::before { content: '⚑'; font-size: 10px; }
.defs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 14px; }
.def-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.def-term { font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.def-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
footer { border-top: 1px solid var(--border); padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer span { font-size: 13px; color: var(--text-dim); }
footer nav a { font-size: 13px; padding: 4px 10px; }
@media (max-width: 600px) {
header { padding: 0 20px; }
.page-hero { padding: 60px 20px 40px; }
.content { padding: 12px 20px 60px; }
.card { padding: 22px 20px; }
footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}
</style>
</head>
<body>
<header>
<a href="/" class="logo"><img class="logo-mark" src="ctklogoblack.png">CTK Systems</a>
<nav>
<a href="/faq">FAQ</a>
<a href="/rules">Rules</a>
<a href="/services.html">Services</a>
</nav>
</header>
<section class="page-hero">
<div class="page-glow"></div>
<div class="page-label">Legal</div>
<h1>Terms of Service</h1>
<p>Last updated: 24 January 2026</p>
</section>
<div class="content">
<div class="card">
<div class="card-label">Introduction</div>
<p>Welcome to CTK. These Terms of Service govern the rules and conditions under which you may use CTK projects and services. By using any CTK project, you agree to these Terms.</p>
<div class="defs-grid">
<div class="def-item"><div class="def-term">Projects</div><div class="def-desc">Any CTK work including games, Discord bots, and Python applications.</div></div>
<div class="def-item"><div class="def-term">Punishments</div><div class="def-desc">Limitations or penalties applied to a user's access or privileges.</div></div>
<div class="def-item"><div class="def-term">CTK</div><div class="def-desc">The CTK service, community, and its related systems.</div></div>
</div>
</div>
<div class="card">
<div class="card-label">Section A</div>
<h3>Rules</h3>
<ol>
<li>
<strong>Project Integrity</strong>
Do not recreate, clone, or remake any CTK projects without explicit permission. This includes "old remakes."
<div class="enforcement">Permanent CTK Blacklist + potential DMCA action</div>
</li>
<li>
<strong>Respect and Conduct</strong>
CTK promotes a respectful and inclusive environment. Racism, sexism, harassment, or hate speech is strictly prohibited.
<div class="enforcement">See Section B (Normal Punishment Scheme)</div>
</li>
<li>
<strong>Support System Usage</strong>
Use the support system properly and only for legitimate requests. Abuse or spamming is not tolerated.
<div class="enforcement">IP ban from support services</div>
</li>
<li>
<strong>Unauthorized Access</strong>
Attempting to gain unauthorized access to CTK servers or data is strictly forbidden. Systems automatically IP ban security threats.
<div class="enforcement">CTK Blacklist and/or police report</div>
</li>
<li>
<strong>Exploiting Loopholes</strong>
Intentionally exploiting loopholes or technicalities to bypass these Terms will result in the same level of punishment as the intended violation.
<div class="enforcement">As applicable per violation</div>
</li>
</ol>
</div>
<div class="card">
<div class="card-label">Section B</div>
<h3>Punishment Scheme</h3>
<ol>
<li>
<strong>Warning</strong>
A formal CTK warning lasting 30 days or indefinitely. Two active warnings escalate to the next level.
</li>
<li>
<strong>Feature Restriction</strong>
Specific features may be removed (e.g., disabling certain bot commands) if they were used in a violation.
</li>
<li>
<strong>Temporary Suspension</strong>
Loss of access to CTK projects (excluding partner services) for up to one year.
</li>
<li>
<strong>CTK Blacklist</strong>
Permanent loss of access to all CTK projects, including partner projects. Generally final and rarely lifted.
</li>
</ol>
</div>
<div class="card">
<div class="card-label">Section C</div>
<h3>Administrative Abuse & Misconduct</h3>
<ol>
<li>
<strong>Abuse of Administrative Power</strong>
CTK staff are strictly prohibited from abusing permissions — including damaging projects, deleting data, or acting in bad faith toward users.
<div class="enforcement">Immediate removal + CTK Blacklist + potential legal action</div>
</li>
<li>
<strong>Intentional Project Damage</strong>
Any deliberate act designed to disrupt or destroy CTK projects — by staff or non-staff — is a critical violation.
<div class="enforcement">Permanent CTK Blacklist + possible civil or criminal action</div>
</li>
<li>
<strong>Accountability & Reporting</strong>
CTK may investigate any allegation of misconduct. Users may report suspected abuse through official CTK support channels. False reports may result in punishment.
</li>
</ol>
</div>
<div class="card">
<div class="card-label">Section D</div>
<h3>Data & Privacy</h3>
<p>For information about how CTK handles your data, please visit our <a href="https://ctksystem.com/privacy">Privacy Policy</a>.</p>
</div>
<div class="card">
<div class="card-label">Section E</div>
<h3>Updates to These Terms</h3>
<p>CTK may update these Terms of Service at any time without prior notice. Continued use of our projects means you accept the latest version.</p>
</div>
</div>
<footer>
<span>© 2025 CTK System. All rights reserved.</span>
<nav>
<a href="/faq">FAQ</a>
<a href="/rules">Rules</a>
<a href="/services.html">Services</a>
</nav>
</footer>
</body>
</html>