-
Notifications
You must be signed in to change notification settings - Fork 640
/
copyright.html
278 lines (248 loc) · 8.98 KB
/
copyright.html
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WildGuard - Copyright Policy</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #27ae60;
--secondary-color: #2c3e50;
--text-color: #333;
--light-green: rgba(39, 174, 96, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-image: url('assets/images/bg\ form.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
}
.header {
background: rgba(255, 255, 255, 0.95);
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Raleway', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.main-container {
max-width: 1000px;
margin: 120px auto 40px;
padding: 2rem;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(10px);
}
.policy-header {
text-align: center;
margin-bottom: 3rem;
position: relative;
}
.policy-title {
font-family: 'Raleway', sans-serif;
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 1rem;
}
.policy-subtitle {
color: var(--secondary-color);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
.section {
margin-bottom: 2.5rem;
padding: 2rem;
border-radius: 15px;
background: rgba(255, 255, 255, 0.9);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
border: 1px solid rgba(39, 174, 96, 0.1);
}
.section:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
background: rgba(255, 255, 255, 0.95);
}
.section::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 4px;
background: var(--primary-color);
border-radius: 2px;
}
.section-title {
color: var(--primary-color);
font-family: 'Raleway', sans-serif;
font-size: 1.5rem;
margin-bottom: 1rem;
padding-left: 1rem;
}
.section-content {
padding-left: 1rem;
}
.list-styled {
list-style: none;
padding-left: 1.5rem;
}
.list-styled li {
margin-bottom: 0.5rem;
position: relative;
background: rgba(255, 255, 255, 0.7);
padding: 0.5rem 1rem;
border-radius: 5px;
}
.list-styled li::before {
content: '•';
color: var(--primary-color);
position: absolute;
left: -1rem;
font-weight: bold;
}
.highlight-box {
background: rgba(39, 174, 96, 0.1);
border-radius: 10px;
padding: 1.5rem;
margin: 1rem 0;
border: 1px solid rgba(39, 174, 96, 0.2);
}
.footer {
background: var(--secondary-color);
color: white;
text-align: center;
padding: 2rem;
margin-top: 4rem;
position: relative;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
@media (max-width: 768px) {
.main-container {
margin: 100px 1rem 2rem;
padding: 1.5rem;
}
.policy-title {
font-size: 2rem;
}
.section {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<header class="header">
<div class="nav-container">
<a href="#" class="logo">WildGuard</a>
</div>
</header>
<div class="main-container">
<div class="policy-header">
<h1 class="policy-title">Copyright Policy</h1>
<p class="policy-subtitle">
At WildGuard, we respect intellectual property rights and are committed to protecting the creative works of our community.
</p>
</div>
<div class="section">
<h2 class="section-title">Ownership of Content</h2>
<div class="section-content">
<p>
All content on this website, including but not limited to text, graphics, logos, images, audio clips, and
software, is the property of WildGuard or its content suppliers and is protected by international copyright
laws.
</p>
<div class="highlight-box">
Unauthorized use of the content may violate copyright, trademark, and other laws.
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Use of Content</h2>
<div class="section-content">
<p>
Users of the WildGuard website are granted a limited, non-exclusive, and non-transferable license to access
and view the content for personal, non-commercial use. Any copying, distribution, transmission, or
modification of the content for commercial purposes is strictly prohibited without prior written consent
from WildGuard.
</p>
</div>
</div>
<div class="section">
<h2 class="section-title">DMCA Compliance</h2>
<div class="section-content">
<p>
If you believe that any content on our website infringes your copyright, you may submit a notification
under the Digital Millennium Copyright Act (DMCA) by providing the following information:
</p>
<ul class="list-styled">
<li>A description of the copyrighted work you claim has been infringed.</li>
<li>The exact location on our website of the material you claim is infringing.</li>
<li>Your contact details, including email address and phone number.</li>
<li>A statement that you have a good faith belief that the use of the material is not authorized.</li>
<li>A statement that the information provided is accurate, and you are authorized to act on behalf of the copyright owner.</li>
</ul>
</div>
</div>
<div class="section">
<h2 class="section-title">Third-Party Content</h2>
<div class="section-content">
<p>
WildGuard may include links to third-party websites, display third-party content, or incorporate services
provided by third-party entities. We provide these links and content for your convenience and information.
</p>
<div class="highlight-box">
We do not endorse, control, or assume any responsibility for the content, accuracy, privacy policies,
copyright policies, terms of service, or practices of these third-party sites or services.
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Changes to This Policy</h2>
<div class="section-content">
<p>
WildGuard reserves the right to modify this Copyright Policy at any time. Any changes will be posted on
this page and will take effect immediately.
</p>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-content">
© 2024 WildGuard. All Rights Reserved.
</div>
</footer>
</body>
</html>