@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800;900&family=Caveat&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

:root {
  --color-1: #e69603;
  --color-2: #f7ed4a;
  --color-3: #fe0047;
  --color-4: #fff;

  --gradient-1: var(--color-3) 60%, var(--color-1);

  --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-primary: Poppins, var(--font-default);
}

body {
  background: #222;
  color: #444;
  font-family: var(--font-primary), var(--font-default);
  font-size: 15.4px;
  line-height: 2.3em;
  max-width: 80em;
  margin: 3em auto;
  overflow-wrap: break-word;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
  box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
}
::-moz-selection {
  background-color: #e69603;
  color: #fff;
}
::selection {
  background-color: #e69603;
  color: #fff;
}
a {
  text-decoration: none;
  color: #fff;
}

header {
  background: #000;
  text-align: center;
  border-top: 1px solid var(--color-2);
}
nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  font-variant-caps: all-small-caps;
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid #2e2e2e;
}
nav a {
  position: relative;
  line-height: 50px;
}
nav a::before,
nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  color: #fff;
  background: var(--color-3);
  width: 0;
  bottom: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

nav a::before {
  right: 0;
}
nav a::after {
  left: 0;
}
nav a:hover::before,
nav a:hover::after {
  width: 50%;
}

a.logo {
  display: block;
  color: var(--color-2);
  font-size: calc(1.4vw + 1.9em);
  font-weight: bold;
  letter-spacing: 1px;
  font-variant-caps: all-small-caps;
  line-height: 2em;
}
.showcase {
  background: url(./assets/pikashow-background.webp) no-repeat center fixed;
  background-size: cover;
  overflow: hidden;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: -1;
}
.show {
  padding: 1em;
  height: auto;
  color: #dfdfdf;
  text-align: center;
  background: -o-linear-gradient(45deg, #000, #000000a1);
  background: linear-gradient(45deg, #000, #000000a1);
}
.show-img {
  width: 10em;
  margin: 0 auto;
}
.show ul {
  margin: 1em 0;
}
.show li {
  font-size: 18px;
  list-style-type: none;
}
.show p {
  font-size: 17px;
  margin: 10px 0;
  color: #fff;
  text-align: center;
  line-height: 1.8em;
}
.show li::before {
  content: "\25B6  ";
}

.cnt a::before {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--color-3);
  width: 0;
  bottom: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.cnt a:hover::before {
  width: 100%;
}

.cnt a {
  position: relative;
  color: var(--color-3);
  font-weight: bold;
  border-bottom: 1px dashed #8d8d8d;
}

.cnt a:hover {
  opacity: 1;
  border-color: var(--color-3);
}
.share a::before,
a.btn::before,
.share a::after,
a.btn::after {
  content: none;
}

.cnt {
  padding: 10px;
  background-color: #fff;
}
p {
  margin: 26px 0;
  padding: 0;
  color: #3a3a3a;
  font-size: 15.4px;
  line-height: 2.3em;
}
.bg-info {
  color: #222;
  padding: 20px 30px;
  border-left: 10px solid var(--color-3);
  -webkit-box-shadow: 0px 0px 20px 0px #e5e5e5;
  box-shadow: 0px 0px 20px 0px #e5e5e5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #111;
  font-weight: 400;
  margin: 0.4em 0;
  line-height: 1.5em;
}
h3 {
  font-size: calc(0.6vw + 1em);
}
h1.title {
  text-align: center;
  font-size: 30px;
  margin: 1rem;
  font-weight: 500;
}
.entry-title {
  padding: 0.4em 0;
  text-align: center;
  font-size: calc(1vw + 20px);
  overflow-wrap: break-word;
  color: #444;
  font-weight: 700;
  line-height: 1.5em;
  margin: 1em 0;
}

.toc {
  display: inline-block;
  margin: 1em 0;
  border-radius: 10px;
  padding: 10px 1em;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 0 0 13px 0;
  box-shadow: rgb(0 0 0 / 19%) 0 0 13px 0;
}
.toc li {
  margin: 0 1em;
  list-style-type: circle;
}
.toc a {
  color: #f8801d;
}
.toc a:hover {
  text-decoration: none;
}
hr {
  margin: 1em 0;
  height: 1px;
  border: none;
  background-color: #eee;
}
.install-img {
  max-width: 40%;
}
.text-glow {
  text-shadow: rgb(210, 51, 51) 0px 5px 20px;
}
.typewrite {
  margin: 1em 0;
}
.typewrite .wrap {
  border-right: 0.1em solid #ffffff31;
}

.fh {
  font-weight: bold;
  margin: 1em auto;
  font-size: calc(0.5vw + 1.3rem);
}

.fh-1 {
  display: block;
  background: -o-linear-gradient(45deg, #ff2559, #ff5200, #e69604);
  background: linear-gradient(45deg, #ff2559, #ff5200, #e69604);
  -webkit-box-shadow: 6px 6px 0 0 #cecece;
  box-shadow: 6px 6px 0 0 #cecece;
  color: #fff;
  font-weight: 700;
  margin: 1em auto;
  padding: 0 1em;
  border-radius: 5px;
  font-size: calc(0.5vw + 1.3rem);
  line-height: 2;
  -webkit-box-shadow: 4px 4px 4px 0 #cecece;
  box-shadow: 4px 4px 4px 0 #cecece;
}

.fhcen {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.5em;
}
.fh-2 {
  color: #fff;
  font-size: calc(0.5vw + 1.3rem);
  background: #212121;
  display: inline-block;
  padding: 10px 20px;
  -webkit-box-shadow: 0 0 7px #00000040;
  box-shadow: 0 0 7px #00000040;
  border-left: 30px solid #e6d000;
  letter-spacing: 1px;
  font-variant-caps: all-small-caps;
  font-weight: 700;
}
.fh-3 {
  display: block;
  position: relative;
  font-size: calc(1vw + 1.7em);
  font-weight: bold;
  background-image: -o-linear-gradient(237deg, var(--gradient-1));
  background-image: linear-gradient(213deg, var(--gradient-1));
  padding: 0 0.5em;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

footer p {
  color: #fd4949;
  padding: 0.5em;
  margin: 0;
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 400;
}
footer {
  color: #fff;
  background-color: #222;
  padding: 0 40px;
  line-height: 4em;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-variant-caps: all-petite-caps;
  border-bottom: 1px solid var(--color-2);
}
.links a {
  padding: 0 10px;
  display: inline-block;
}
.center {
  text-align: center;
}
ul {
  margin: 1em 0 1em 2.5em;
}
li {
  margin: 6px 0;
}
img {
  display: block;
  margin: 1em auto;
  max-width: 100%;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}
th {
  font-weight: 700;
  background-color: #ffe60059;
}
td,
th {
  text-align: left;
  padding: 6px 5px;
  vertical-align: top;
}

tr:nth-child(odd) {
  background-color: #e4e4e44d;
}
a.btn {
  background: var(--color-3);
  border-bottom: none;
  font-size: calc(0.2vw + 1em);
  border-radius: 5px;
  font-weight: 600;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 11px 20px;
  margin: 1.5em auto;
  color: #fff;
  font-variant-caps: all-small-caps;
  letter-spacing: 2px;
  -webkit-box-shadow: 0px 5px 10px 0px #00000052;
  box-shadow: 0px 5px 10px 0px #00000052;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
a.btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  color: var(--color-3);
  opacity: unset;
  background-color: #000;
}
a.download {
  font-size: 22px;
  border: 3px solid var(--color-1);
  border-radius: 50px;
  padding: 15px 20px;
  background: #000;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
}
a.download:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  border-color: #4e3f23;
  color: var(--color-1);
}
.faq-list {
  list-style-type: none;
  margin: unset;
  text-align: center;
}

.faq-list > li:not(.ans) {
  margin: -3px 0 -24px;
}

.faq {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-3);
  background: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 0 10px;
  border-radius: 5px;
  display: inline-block;
}
.ans {
  list-style-type: none;
  margin: 0 0 20px 10px;
  text-align: left;
  padding: 1em;
  padding-top: 2em;
  border-radius: 10px;
  border: 1px dashed #e3e3e3;
  -webkit-box-shadow: 0px 2px 15px 0px #00000017;
  box-shadow: 0px 2px 15px 0px #00000017;
}
.ans::before {
  content: "\279C  ";
}

.share {
  background-color: #fff;
  color: #fff;
  text-align: center;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 1em 0;
}
.share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.share ul li {
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0;
  float: left;
  margin: 1%;
}
.share ul li a {
  padding: 8px 0;
  color: #fff;
  display: block;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: none;
}
.share ul li a svg {
  fill: #fff;
  stroke: none;
  margin: 0;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}
.whatsapp {
  background-color: #25d366;
}
.facebook {
  background-color: #3b5998;
}
.twitter {
  background-color: #55acee;
}
.telegram {
  background-color: #08c;
}
.email {
  background-color: #5a5a5a;
}
.share a:hover {
  color: #fff;
  opacity: 0.9;
}

.boxdiv {
  margin: 2em 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  row-gap: 2em;
}
.box {
  background: #fff;
  text-align: center;
  border-top: 2px solid transparent;
  padding: 1em;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0px 2px 15px 0px #00000017;
  box-shadow: 0px 2px 15px 0px #00000017;
}
.box:hover {
  border-color: var(--color-3);
}
.box:hover svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.box p {
  color: #222;
  margin: 0;
}
.boxtxt {
  /* background: #000; */
  font-size: calc(0.5vw + 1.7em);
  padding: 10px 0;
  font-weight: 500;
  color: #000;
  border-radius: 10px;
  text-align: center;
  font-variant-caps: all-petite-caps;
  letter-spacing: 5px;
  margin: 5px 0;
}
.box-icon {
  line-height: 1.5em;
  font-size: 70px;
}
.box-icon svg {
  width: 70px;
  height: 70px;
  fill: #131313;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.box-icon:hover svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.box-2 {
  border: 1px solid #000;
  padding: 1em;
  text-align: center;
  margin: 1em auto;
}

.box-2 a.btn {
  border: none;
  color: #fff;
  background-color: #000;
  padding: 10px 1em;
  margin: 1em auto;
  border-radius: 3px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 17px;
  -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.box-2 a.btn:hover {
  background-color: #202020;
  color: #fff;
  opacity: unset;
}

.box-2 a.yt-btn {
  background-color: #ff0000;
}
.box-2 a.yt-btn:hover {
  color: #ff0000;
}
.box-2 a.tele-btn {
  background-color: #0088cc;
}
.box-2 a.tele-btn:hover {
  color: #0088cc;
}

.ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.5em 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-scroll-snap-type: x proximity;
  scroll-snap-type: x proximity;
  overflow-x: scroll;
}
.ss img {
  max-width: 16em;
  margin: 0 1em;
  pointer-events: none;
  scroll-snap-align: center;
}
#countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 8px solid #afafaf;
  background: #232323;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: inherit;
  margin: 1em auto;
  text-align: center;
  width: 100px;
  height: 100px;
  font-size: 40px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hidden-cnt {
  display: none;
}
@media screen and (max-width: 700px) {
  body {
    margin: auto;
  }
  .install-img,
  img {
    max-width: 100%;
  }
}
