-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
918 lines (893 loc) · 34.3 KB
/
index.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cobra Kai</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta
name="description"
content="NEW YEAR. NEW SEASON. STILL BADASS. SEASON 3 OF COBRA KAI PREMIERES THIS JANUARY ONLY ON NETFLIX. AND REMEMBER, COBRA KAI NEVER DIES."
/>
<link rel="stylesheet" href="./styles/bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="TemplateData/style.css" />
<script>
const vw = Math.max(
document.documentElement.clientWidth || 0,
window.innerWidth || 0
);
const bgs = {
xs: "./img/bg-600.jpg",
sm: "./img/bg-800.jpg",
md: "./img/bg-1000.jpg",
lg: "./img/bg-1200.jpg",
xlg: "./img/bg-1440.jpg",
full: "./img/bg.jpg",
};
const bg_url =
vw <= 600
? bgs.xs
: vw <= 800
? bgs.sm
: vw <= 1000
? bgs.md
: vw <= 1200
? bgs.lg
: vw <= 1440
? bgs.xlg
: bgs.full;
const noMercy = {
md: "./img/moto-450.png",
full: "./img/moto.png",
};
const moto_url = vw <= 991 ? noMercy.md : noMercy.full;
</script>
<!-- Cookie Consent by https://www.CookieConsent.com -->
<script
type="text/javascript"
src="//www.cookieconsent.com/releases/3.1.0/cookie-consent.js"
></script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
cookieconsent.run({
notice_banner_type: "interstitial",
consent_type: "express",
palette: "dark",
language: "en",
website_name: "Cobra Kai",
change_preferences_selector: "#change-preference",
});
});
</script>
<noscript
>ePrivacy and GPDR Cookie Consent by
<a href="https://www.CookieConsent.com/" rel="nofollow noopener"
>Cookie Consent</a
></noscript
>
<!-- End Cookie Consent by https://www.CookieConsent.com -->
<link
rel="apple-touch-icon"
sizes="57x57"
href="./favicon/apple-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="./favicon/apple-icon-60x60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="./favicon/apple-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="./favicon/apple-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="./favicon/apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="./favicon/apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="./favicon/apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="./favicon/apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./favicon/apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./favicon/android-icon-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="./favicon/favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./favicon/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-TileImage"
content="./favicon/ms-icon-144x144.png"
/>
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<script>
document.body.style.backgroundImage = `url('${bg_url}')`;
</script>
<div class="menu-open" style="display: none">
<div class="container-fluid px-4">
<div style="position: relative">
<div id="menu-button-close" class="btn-custom menu-icon close left">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<button
onclick="loadLanguage(true)"
disabled
class="btn-custom menu-icon right lang"
>
EN
</button>
<ul class="menu-list">
<li><a data-lang="play-game" href="#play-game">Play Game</a></li>
<li>
<a
data-lang="watch-trailer"
href="#watch-trailer"
class="highlighted"
>Watch Trailer</a
>
</li>
<li>
<a href="#" data-lang="privacy" onclick="overlay('privacy')"
>Privacy</a
>
</li>
<li>
<a href="#" data-lang="imprint" onclick="overlay('imprint')"
>Imprint</a
>
</li>
</ul>
<!-- <div class="langs">
<a class="mx-2" onclick="loadLanguage('en')">English</a>
<a class="mx-2" onclick="loadLanguage('de')">Deutsch</a>
</div> -->
<div class="logos">
<a
target="_blank"
rel="noopener"
href="https://www.instagram.com/netflix"
name="insta"
><img src="./img/logo-insta.png" alt="insta"
/></a>
<a
target="_blank"
rel="noopener"
href="https://www.facebook.com/Netflix"
name="fb"
><img src="./img/logo-fb.png" alt="fb"
/></a>
<a
target="_blank"
rel="noopener"
href="https://twitter.com/Netflix"
name="twit"
><img src="./img/logo-twit.png" alt="twit"
/></a>
<a
target="_blank"
rel="noopener"
href="https://www.netflix.com"
name="netflix"
>
<img src="./img/netflix_logo_n.png" alt="netflix_logo_n" />
</a>
</div>
</div>
</div>
</div>
<div class="container-fluid px-4">
<div style="position: relative">
<div id="menu-button" class="btn-custom menu-icon left">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<button
onclick="loadLanguage(true)"
disabled
class="btn-custom menu-icon right lang"
>
EN
</button>
</div>
<div class="moto mx-auto">
<img id="moto" alt="Strike First Strike Hard No Mercy" />
<script>
document.getElementById("moto").src = moto_url;
</script>
</div>
<div class="bordered top">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="bulb left">
<img src="./img/top-bulb.png" alt="top-bulb-left" />
</div>
<img class="logo" src="./img/cobra-new-2.png" alt="cobra" />
<div class="bulb right">
<img src="./img/top-bulb.png" alt="top-bulb-right" />
</div>
</div>
<div class="bordered top-fol">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="background"></div>
</div>
<main class="bordered webgl">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div
class="d-flex flex-row justify-content-center mx-auto logos responsive"
>
<!-- <div class="mx-3"><img src="./img/web-snake.png" alt="snake" /></div> -->
<div class="mx-auto w-50">
<img src="./img/web-netflix.png" alt="netflix" />
</div>
<!-- <div class="mx-2"><img src="./img/web-tree.png" alt="tree" /></div> -->
</div>
<div id="play-game" class="mt-2 mx-2 mx-sm-3 mx-md-4 mx-lg-5 mb-4">
<img
id="webgl-alt-img"
src="./img/webgl.jpg"
alt="webgl component comes here"
style="width: 100%"
/>
<div class="webgl-content">
<div id="unityContainer"></div>
<!-- <div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">Cobra_kai</div>
</div> -->
</div>
</div>
</main>
<div class="bordered ctrls">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="clipped-bg"></div>
<div class="d-flex flex-row justify-content-center logos">
<div class="mx-sm-2 mx-md-3 mx-lg-4 mx-xl-5">
<img alt="att-left" id="att-left-t" src="./img/att-left.png" />
<!-- <img
alt="att-left"
id="att-left-t-pressed"
src="./img/att-left-pressed.png"
style="display: none"
/> -->
</div>
<div>
<img
alt="att-left"
id="att-left-arr"
src="./img/att-left-arr.png"
/>
<img
alt="att-left"
id="att-left-arr-pressed"
src="./img/att-left-arr-pressed.png"
style="display: none"
/>
</div>
<div>
<img
alt="att-joystick-left"
id="att-joystick-left"
src="./img/att-joystick-left.png"
style="margin-top: -30%; display: none"
/>
<img
alt="att-joystick-center"
id="att-joystick-center"
src="./img/att-joystick-center.png"
style="margin-top: -30%"
/>
<img
alt="att-joystick-right"
id="att-joystick-right"
src="./img/att-joystick-right.png"
style="margin-top: -30%; display: none"
/>
</div>
<div>
<img
alt="att-right"
id="att-right-arr"
src="./img/att-right-arr.png"
/>
<img
alt="att-right"
id="att-right-arr-pressed"
src="./img/att-right-arr-pressed.png"
style="display: none"
/>
</div>
<div class="mx-sm-2 mx-md-3 mx-lg-4 mx-xl-5">
<img alt="att-right" id="att-right-t" src="./img/att-right.png" />
<!-- <img
alt="att-right"
id="att-right-t-pressed"
src="./img/att-right-pressed.png"
style="display: none"
/> -->
</div>
</div>
</div>
<div class="bordered ctrls-fol">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="clipped-bg"></div>
</div>
<div id="watch-trailer" class="bordered webgl details">
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="youtube-container">
<iframe
width="100%"
height="400px"
title="Cobra Kai: Season 3 | Official Trailer | Netflix"
src="https://www.youtube.com/embed/LcDQqGJG8pA"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<div class="text-center">
<a
data-lang="watch-now"
class="btn btn-outline-light btn-netflix"
style="font-weight: bold"
href="https://www.netflix.com/CobraKai"
target="_blank"
rel="noopener"
>
Watch now
</a>
</div>
<div class="popup-container">
<p data-lang="following-trailer-1">
New year. New season. Still badass. Season 3 of Cobra Kai premieres
this January only on Netflix. And remember, Cobra Kai Never Dies.
</p>
<p data-lang="following-trailer-3">
With a new sensei at the helm of the Cobra Kai dojo, a three-way
feud takes center stage. Old grudges — like Cobra Kai — never die.
</p>
<!-- <div class="content"></div> -->
<br /><br />
<p data-lang="need-ringtone">Need a badass ringtone?</p>
<div class="text-center">
<a
data-lang="download-ringtone"
class="btn btn-outline-light btn-netflix btn-ringtone"
href="https://kobrai-kai.s3.ap-south-1.amazonaws.com/ringtone/Cobra+Kai+Arcade+Ringtone.mp3"
target="_blank"
rel="noopener"
style="font-size: inherit"
>
Download
</a>
</div>
</div>
<div class="cborderbutton"></div>
</div>
<div
id="reflect-this"
class="bordered webgl details"
style="height: 150px; opacity: 0"
>
<div class="cborder left"></div>
<div class="cborder right"></div>
<div class="cborderbutton"></div>
</div>
<div id="reflect-here"></div>
</div>
<footer>
<div id="footer" class="container-fluid">
<div class="d-flex flex-column">
<div class="m-4 text-center smaller">
<a
target="_blank"
rel="noopener"
href="https://www.netflix.com"
name="netflix"
>
<img src="./img/netflix_logo_n.png" alt="netflix_logo_n" />
</a>
</div>
<div class="m-4 text-center logos smaller" style="width: auto">
<a
target="_blank"
rel="noopener"
href="https://www.instagram.com/netflix"
name="insta"
class="m-3"
><img src="./img/logo-insta.png" alt="insta"
/></a>
<a
target="_blank"
rel="noopener"
href="https://www.facebook.com/Netflix"
name="fb"
class="m-3"
><img src="./img/logo-fb.png" alt="fb"
/></a>
<a
target="_blank"
rel="noopener"
href="https://twitter.com/Netflix"
name="twit"
class="m-3"
><img src="./img/logo-twit.png" alt="twit"
/></a>
</div>
<div class="m-2 d-flex flex-row justify-content-center">
<a
name="privacy-policy"
data-lang="privacy"
onclick="overlay('privacy')"
class="mx-5"
>Privacy</a
>
<a
name="imprint"
data-lang="imprint"
onclick="overlay('imprint')"
class="mx-5"
>Imprint</a
>
</div>
<div class="m-2 d-flex flex-row justify-content-center">
<a id="change-preference" class="mx-5" data-lang="change-preference"
>Change your Cookies Preferences</a
>
</div>
<hr class="m-2 mx-auto" size />
<div class="m-2 d-flex flex-row justify-content-center text-center">
<span class="mx-5" data-lang="concept-by"
>Concept, development and hosting by</span
>
</div>
<div class="m-2 d-flex flex-row justify-content-center logos mx-auto">
<a
target="_blank"
rel="noopener"
href="https://www.davidundmartin.com/"
name="david-martin"
class="m-3"
><img
src="./img/logo-company-david-martin.png"
alt="david-martin"
/></a>
<a
target="_blank"
rel="noopener"
href="https://frag-games.com/"
name="frag-games"
class="m-3"
><img src="./img/logo-company-frag-games.png" alt="frag-games"
/></a>
<a
target="_blank"
rel="noopener"
href="https://www.wolpertingergames.com/"
name="wolpertinger-games"
class="m-3"
><img
src="./img/logo-company-wolpertinger-games.png"
alt="wolpertinger-games"
/></a>
<a
href="http://www.r-control.de/"
name="remote-control-productions"
class="m-3"
><img
src="./img/logo-company-remote-control-productions.png"
alt="remote-control-productions"
/></a>
</div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/html2canvas.js"></script>
<script src="./js/myreflect.js"></script>
<script src="./js/l10n.min.js"></script>
<script src="./js/localizations.js"></script>
<script src="./TemplateData/UnityProgress.js"></script>
<script>
$(document).ready(function () {
setCtrlsfolHeight();
setYoutubeVideoHeight();
setTimeout(function () {
const element = $("#reflect-this");
html2canvas(element, {
onrendered: function (canvas) {
$("#reflect-here").append(canvas);
doReflect($("#reflect-here canvas")[0], {
height: 1 / 3,
opacity: 0.3,
});
element.hide();
},
});
}, 3000);
startAnimation();
setInterval(startAnimation, 2000);
$("#menu-button").click(function (e) {
e.stopPropagation();
$(".menu-open").slideDown("fast");
});
$("#menu-button-close").click(function () {
$(".menu-open").slideUp("fast");
});
$(".overlay").click(function (e) {
e.stopPropagation();
$(".overlay").hide();
$("body").css("overflow", "auto");
});
$(document).on("click", function (event) {
if (
!event.target.classList.contains("menu-open") &&
$(event.target).parents(".menu-open").length == 0
) {
$(".menu-open").slideUp("fast");
}
});
});
$(window).resize(function () {
setCtrlsfolHeight();
setYoutubeVideoHeight();
});
function setCtrlsfolHeight() {
const ctrlsDivHeight = $(".ctrls").height();
$(".ctrls-fol").height(ctrlsDivHeight);
}
function setYoutubeVideoHeight() {
const width = $(".youtube-container iframe").width();
const ratio = 16 / 9;
const height = width / ratio;
$(".youtube-container iframe").height(height);
}
function overlay(overlay) {
$("body").css("overflow", "hidden");
$(`#overlay-${overlay}`).show();
}
</script>
<script type="text/plain" cookie-consent="functionality">
$(document).ready(function () {
$(".menu-icon.lang").prop("disabled", false);
loadLanguage();
setupWebGL();
});
function loadLanguage(toggle = false) {
let lang = "";
if (toggle) {
lang = String.locale == "en" ? "de" : "en";
} else {
if (typeof Storage !== "undefined") {
// Code for localStorage/sessionStorage.
lang = localStorage.getItem("lang");
} else {
// Sorry! No Web Storage support..
}
if (!languages_available.includes(lang)) {
lang = "en";
}
}
String.locale = lang;
$(".menu-icon.lang").text(lang);
for (const translation of translations) {
const element = $('[data-lang="' + translation + '"]');
const translated = localize(`%${translation}`, element.text());
element.text(translated);
}
// localize links of social media
const localeLinks = socialMediaLinks[String.locale];
for (const l in localeLinks) {
$(`a[name="${l}"]`).attr("href", localeLinks[l]);
}
// localize trailer iframe
const iframeAttributes = trailerIframe[String.locale];
for (const attr in iframeAttributes) {
$("iframe").attr(attr, iframeAttributes[attr]);
}
document.documentElement.lang = String.locale;
localStorage.setItem("lang", String.locale);
}
function localize(string, fallback) {
const localized = string.toLocaleString();
if (localized !== string) {
return localized;
} else {
return fallback;
}
}
function setupWebGL() {
$.getScript("Build/UnityLoader.js", function () {
$("#webgl-alt-img").hide();
const unityInstance = UnityLoader.instantiate(
"unityContainer",
"Build/C_B.json",
{ onProgress: UnityProgress }
);
setTimeout(function () {
$("#unityContainer").css("background", "transparent");
}, 3000);
});
}
</script>
<div id="overlay-privacy" class="overlay">
<div>
<p data-lang="overlay-privacy-welcome">
Welcome to Cobra Kai - TheStrikeBack (www.thestrikeback.com)
(“Experience”)! This Privacy and Terms document (“Terms”) explains our
privacy practices and terms for this Experience.
</p>
<p data-lang="overlay-privacy-age">
You must be at least 16 years of age to interact with this Experience.
The Experience, its contents, and its services (the “Experiences”) are
for entertainment purposes only. This Experience is brought to you by
Netflix International B.V. For questions about our privacy practices,
this Experience, or these Terms, please contact us by email at
[email protected] . Please include the name of the Experience if
you contact us.
</p>
<p style="font-style: italic" data-lang="overlay-privacy-collection">
Collection and Use of Information
</p>
<p data-lang="overlay-privacy-collection-1">
This Experience does not require registration.
</p>
<p data-lang="overlay-privacy-collection-2">
When you interact with us, certain information might be collected
automatically. Examples of information include: the type of computer
operating system, device and software characteristics (such as type
and configuration), referral URLs, IP address (which may tell us your
general location), statistics on page views or interactions with
activities, and browser and standard web server log information. This
information is collected using technologies such as cookies, pixel
tags, and web beacons. We use this information for the support of
internal operations, such as to conduct research and analysis to
address the performance of our Experience, and to generate aggregated
or de-identified reporting for our use.
</p>
<p data-lang="overlay-privacy-collection-3">
This Experience might use cookies to support the performance of our
Experience and to remember choices you have made, such as preferred
language. You can modify your browser settings to control whether your
computer or other device accepts or declines cookies. If you choose to
decline cookies you may not be able to use certain interactive
features of this Experience or certain of its Experiences. You can
delete cookies from your browser; however, that means that any
settings or preferences managed by those cookies will also be deleted
and you may need to recreate them. Depending on your mobile device,
you may not be able to control tracking technologies through settings.
The emails we send might include a web beacon or similar technology
that lets us know if you received or opened the email and whether you
clicked on any of the links in the email.
</p>
<p data-lang="overlay-privacy-collection-4">
This Experience might use Google Analytics, a web analytics service
offered by Google. Google Analytics assists us in gathering analytics
and statistical data in connection with the Experience. On our behalf
Google processes this information to analyze the usage of the
Experience, create reports on the Experience activities, and provide
other services related to Experience and internet usage for us. If you
have any questions or concerns with regard to Google Analytics’
privacy practices, you can review their privacy policy at
https://policies.google.com/privacy?hl=en.
</p>
<p data-lang="overlay-privacy-collection-5">
The Experience might give you the option to share information by
email, social or other sharing applications, using the clients and
applications on your smart device. Social plugins (including those
offered by Facebook, Twitter, Instagram, and Pinterest) allow you to
share information on those platforms. Social plugins and social
applications are operated by the social network themselves and are
subject to their terms of use and privacy policies.
</p>
<p style="font-style: italic" data-lang="overlay-privacy-disclosure">
Disclosure of Information
</p>
<p data-lang="overlay-privacy-disclosure-1">
We may disclose your information for certain purposes and to third
parties, as described below:
</p>
<ul>
<li data-lang="overlay-privacy-disclosure-1a">
The Netflix family of companies: We may share your information among
the Netflix family of companies
(https://help.netflix.com/support/2101) as needed for data
processing and storage, providing customer support, content
development, and for other purposes described in the Use of
Information Section of this document.
</li>
<li data-lang="overlay-privacy-disclosure-1b">
We may use other companies, agents or contractors ("Service
Providers") to perform services on our behalf or to help us to
provide this Experience to you. For example, we may use Service
Providers to provide infrastructure and IT services (like hosting
the Experience). We do not authorize Service Providers to use
information except in connection with providing their services,
subject to the following safety issues. We and our Service Providers
may disclose and otherwise use information where we or they
reasonably believe such disclosure is needed to (a) satisfy any
applicable law, regulation, legal process, or governmental request,
(b) enforce these Terms, including investigation of potential
violations thereof, (c) detect, prevent, or otherwise address
illegal or suspected illegal activities, security or technical
issues, or (d) protect against harm to the rights, property or
safety of Netflix, our content partners, users or the public, as
required or permitted by law.
</li>
</ul>
<p data-lang="overlay-privacy-disclosure-2">
We use reasonable administrative, logical, physical and managerial
measures to safeguard your information against loss, theft and
unauthorized access, use and modification. We may retain information
as required or permitted by applicable laws and regulations, including
to fulfill the purposes described in these Terms.
</p>
<p data-lang="overlay-privacy-disclosure-3">
If, in the course of sharing information, we transfer personal
information to countries outside of the European Economic Area and
other regions with comprehensive data protection laws, we will ensure
that the information is transferred in accordance with these Terms and
as permitted by the applicable laws on data protection.
</p>
<p data-lang="overlay-privacy-disclosure-4">
For residents of the EEA: You have the right to complain to a data
protection authority about our collection and use of your personal
information. Our main establishment within the European Union is in
the Netherlands.
</p>
<p style="font-style: italic" data-lang="overlay-privacy-intended">
Intended use of the Experience
</p>
<p data-lang="overlay-privacy-intended-1">
This Experience and any related content or activities are for your
personal and non-commercial use only. During your use of the
Experience, we grant you a limited, non-exclusive, non-transferable,
license to access the Experience content and activities. Except for
the foregoing limited license, no right, title or interest shall be
transferred to you. You agree not to use the Experience for public
performances. You are responsible for all Internet access charges.
</p>
<p data-lang="overlay-privacy-intended-2">
You agree not to archive, download (other than through caching
necessary for personal use), reproduce, distribute, modify, display,
perform, publish, license, create derivative works from, offer for
sale, or use content and information contained on or obtained from or
through the Experience without express written permission from Netflix
and its licensors. You also agree not to: circumvent, remove, alter,
deactivate, degrade or thwart any of the content protections in the
Experience; use any robot, spider, scraper or other automated means to
access the Experience; decompile, reverse engineer or disassemble any
software or other products or processes accessible through the
Experience; insert any code or product or manipulate the content of
the Experience in any way; or, use any data mining, data gathering or
extraction method. In addition, you agree not to upload, post, email
or otherwise send or transmit any material designed to interrupt,
destroy or limit the functionality of any computer software or
hardware or telecommunications equipment associated with the
Experience, including any software viruses or any other computer code,
files or programs.
</p>
<p data-lang="overlay-privacy-intended-3">
The Experience, including all content provided on the Experience, is
protected by copyright, trade secret or other intellectual property
laws and treaties. Netflix is a registered trademark of Netflix, Inc.
If you believe your work has been reproduced or distributed in a way
that constitutes a copyright infringement or are aware of any
infringing material available through the Experience, please notify us
by completing the Copyright Infringement Claims form
(www.netflix.com/copyrights).
</p>
<p data-lang="overlay-privacy-intended-4">
By using, visiting, or browsing to the Experience, you accept and
agree to these Terms. If you do not accept these Terms and/or any
updates to these Terms, please do not use this Experience.
</p>
</div>
</div>
<div id="overlay-imprint" class="overlay">
<div>
<p data-lang="overlay-imprint-service-offered">
Cobra Kai – TheStrikeBack and this website are a service offered and
published by
</p>
<p>
<b data-lang="overlay-imprint-david-martin">davidmartin GmbH</b><br />
<span data-lang="overlay-imprint-david-martin-1">Tal 26</span><br />
<span data-lang="overlay-imprint-david-martin-2">80331 Munich</span
><br />
<span data-lang="overlay-imprint-david-martin-3">Germany</span><br />
</p>
<p>
<span data-lang="overlay-imprint-authorized">
Authorized representatives: David Stephan & Martin Eggert
</span>
<span data-lang="overlay-imprint-authorized-1">
Responsible for website content corresponding to §55 Abs. 2 RStV:
David Stephan & Martin Eggert </span
><br />
<span data-lang="overlay-imprint-authorized-2">
Trade Register Number: HRB 219269 </span
><br />
<span data-lang="overlay-imprint-authorized-3">
VAT-ID: DE 300 83 72 80 </span
><br />
<span data-lang="overlay-imprint-authorized-4">
Court of Registry: District Court of Munich </span
><br />
</p>
<p data-lang="overlay-imprint-behalf-netflix">
The service is offered on behalf of Netflix (www.netflix.com). The
service, including all content provided with it, is protected by
copyright, trade secret or other intellectual property laws and
treaties. Netflix is a registered trademark of Netflix, Inc. If you
believe your work has been reproduced or distributed in a way that
constitutes a copyright infringement or are aware of any infringing
material available through the Experience, please notify us by
completing the Copyright Infringement Claims form
(www.netflix.com/copyrights).
</p>
<p data-lang="overlay-imprint-developed-by">
The website and game are developed and hosted by FRAG Games
(www.frag-games.com) and Wolpertinger Games
(www.wolpertingergames.com), members of the Remote Control Family
(www.r-control.de).
</p>
<p data-lang="overlay-imprint-copyrights">
© 2020 Netflix, david+martin, FRAG Games, Wolpertinger Games
</p>
</div>
</div>
</body>
</html>