@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: #f6f4ee;
  --black: #111;
  --primary: #ffe14a;
  --hot: #e10600;
  --ink: #111;
  --lime: #b6ff3b;
  --cyan: #5ce1ff;
  --pink: #ff6ad5;
  --orange: #ff8a00;
  --app-height: 100dvh;
  font-size: 10px;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Comic Neue", "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  background: #1a1a1a;
  color: var(--ink);
  scrollbar-width: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.app-container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  min-height: var(--app-height);
  background: #1a1a1a;
  display: flex;
  justify-content: center;
}

.app-container > div {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100dvh;
  min-height: var(--app-height);
  background: #f6f4ee;
  position: relative;
  overflow-x: hidden;
  padding:
    env(safe-area-inset-top)
    max(1.2rem, env(safe-area-inset-right))
    env(safe-area-inset-bottom)
    max(1.2rem, env(safe-area-inset-left));
}

.app-container .items-wrapper,
.app-container .dashboard-container {
  background: #f6f4ee;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.items-container {
  height: auto;
  min-height: 100%;
  overflow: auto;
  padding: 0 0.4rem 2.4rem;
  -webkit-overflow-scrolling: touch;
}

.items-container h1,
.dashboard-container h1,
.sound-title,
.back-btn-title {
  font-family: Bangers, Impact, sans-serif;
  letter-spacing: 0.06em;
}

.title-stack {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  margin: 0.4rem 0 0;
  overflow: hidden;
  isolation: isolate;
}

.comic-burst {
  position: absolute;
  width: min(56vw, 18rem);
  height: min(56vw, 18rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(8deg);
  background: repeating-conic-gradient(#e10600 0 9deg, #f6f4ee 9deg 18deg);
  clip-path: polygon(
    50% 0%,
    58% 18%,
    78% 8%,
    70% 28%,
    98% 28%,
    76% 42%,
    92% 62%,
    68% 56%,
    68% 88%,
    50% 68%,
    32% 88%,
    32% 56%,
    8% 62%,
    24% 42%,
    2% 28%,
    30% 28%,
    22% 8%,
    42% 18%
  );
  z-index: 0;
  pointer-events: none;
}

.stamp {
  position: absolute;
  right: 1.2rem;
  top: 0.8rem;
  z-index: 2;
  border: 3px solid #ff1e1e;
  color: #ff1e1e;
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  transform: rotate(12deg);
  background: #fffef2;
  box-shadow: 2px 2px 0 #111;
}

.chaos-tape {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #111;
  color: #ffe14a;
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  padding: 0.55rem 0;
  border: 3px solid #111;
  box-shadow: 3px 4px 0 #111;
  margin: 0.8rem 0 1.4rem;
  white-space: nowrap;
}

.chaos-tape-track {
  display: flex;
  width: max-content;
  animation: tape-run 14s linear infinite;
}

.chaos-tape span {
  display: inline-block;
  padding: 0 1.2rem;
}

@keyframes tape-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.items-container h1 {
  position: relative;
  z-index: 1;
  color: #111;
  font-size: clamp(4.6rem, 15vw, 6.4rem);
  font-weight: 400;
  text-align: center;
  line-height: 0.9;
  text-shadow:
    4px 5px 0 #fff,
    6px 7px 0 #111;
  transform: none;
}

.items-container h1 span {
  color: var(--hot);
}

.items-container p {
  color: var(--black);
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.items-container .get-started-btn {
  width: 100%;
  max-width: 34rem;
  min-height: 6.2rem;
  border-radius: 1.4rem;
  color: #fff;
  font-family: Bangers, Impact, sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  padding: 1.2rem 2.2rem;
  background: var(--hot);
  box-shadow: 5px 7px 0 #111;
  border: 4px solid #111;
  cursor: pointer;
}

.items-container .get-started-btn:active {
  box-shadow: 0 2px 0 #111;
  transform: translateY(5px);
}

.items-container .get-started-btn.clrEffect {
  background: var(--hot);
}

.items-container .bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding: 1.6rem 0 2.4rem;
}

.items-container .bottom-content > p {
  background: #fffef2;
  border: 3px solid #111;
  box-shadow: 4px 5px 0 #111;
  border-radius: 1.8rem;
  padding: 1.4rem 1.8rem;
  margin: 0 0.4rem;
  transform: none;
  position: relative;
  z-index: 2;
}

.items-container .bottom-content > p::after {
  content: "";
  position: absolute;
  left: 2.4rem;
  bottom: -12px;
  border-width: 12px 10px 0 0;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}

.items-container .bottom-content label,
.items-container .bottom-content label a {
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
}

.items-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.items-image img {
  width: 90%;
}

.top-content {
  height: 0;
  width: 100%;
  opacity: 0;
}

.app-container .inner_dashboard {
  padding: 0 0.4rem 2.4rem;
}

.dashboard-container {
  height: auto;
  min-height: 100dvh;
  padding-bottom: 2rem;
}

.dashboard-container h1 {
  margin-top: 0.4rem;
  font-size: clamp(3.6rem, 12vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  text-shadow: 3px 4px 0 #fff, 5px 6px 0 #111;
  transform: rotate(-2deg);
  text-align: center;
}

.brand {
  color: var(--black);
}

.pulse {
  color: var(--hot);
}

.loud-tag {
  display: inline-block;
  margin: 0.6rem auto 1.2rem;
  background: var(--hot);
  color: #ffe14a;
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.2rem;
  border: 3px solid #111;
  box-shadow: 3px 4px 0 #111;
  transform: rotate(1.5deg);
  text-align: center;
}

.description {
  font-size: 1.45rem;
  color: var(--black);
  font-weight: 700;
  margin: 0 0 1.8rem;
  line-height: 1.5;
  background: #fff;
  border: 3px solid #111;
  box-shadow: 4px 5px 0 #111;
  border-radius: 1.4rem;
  padding: 1.2rem 1.4rem;
  transform: none;
  text-align: left;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.2rem;
  overflow: hidden;
  padding: 0.8rem 0.4rem 1.2rem;
}

.card {
  position: relative;
  text-align: center;
  padding: 1.4rem 0.4rem 1rem;
  box-shadow: 4px 5px 0 #111;
  border: 3px solid #111;
  border-radius: 1.2rem 2.4rem 1.4rem 2.2rem;
  text-decoration: none;
  min-height: 10.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  width: 2.6rem;
  height: 1.1rem;
  background: #fff8b0;
  border: 1px solid #0003;
  transform: translateX(-50%) rotate(-9deg);
}

.card:nth-child(1) {
  transform: rotate(-3deg);
  background: #ff4d4d;
}
.card:nth-child(2) {
  transform: rotate(2.4deg);
  background: #b6ff3b;
}
.card:nth-child(3) {
  transform: rotate(-1.8deg);
  background: #5ce1ff;
}
.card:nth-child(4) {
  transform: rotate(2deg);
  background: #ff8a00;
}
.card:nth-child(5) {
  transform: rotate(-2.6deg);
  background: #ff6ad5;
}
.card:nth-child(6) {
  transform: rotate(1.4deg);
  background: #fffef2;
}
.card:nth-child(7) {
  transform: rotate(-1.2deg);
  background: #7dffb3;
}
.card:nth-child(8) {
  transform: rotate(2.8deg);
  background: #c9b6ff;
}
.card:nth-child(9) {
  transform: rotate(-2.2deg);
  background: #ffd36a;
}

.card:active {
  transform: scale(0.95) rotate(0deg);
}

.card img {
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: 0.3rem;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 #111);
}

.card p {
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.5rem;
  color: #111;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 1px 1px 0 #fff;
}

.instructions {
  position: relative;
  background: #fffef2;
  border: 3px solid #111;
  box-shadow: 5px 6px 0 #111;
  border-radius: 0.6rem 2rem 0.8rem 2.2rem;
  padding: 1.4rem 1.4rem 1.6rem;
  transform: rotate(0.8deg);
}

.instructions::before {
  content: "READ THIS!!";
  position: absolute;
  top: -1.1rem;
  right: 1rem;
  background: var(--hot);
  color: #ffe14a;
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.7rem;
  border: 2px solid #111;
  transform: rotate(8deg);
}

.instructions h2 {
  font-family: Bangers, Impact, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.instructions ol {
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 700;
  padding-left: 1.6rem;
}

.instructions li {
  margin-bottom: 1rem;
  line-height: 1.35;
}

.instructions li div {
  display: flex;
  align-items: baseline;
  font-weight: 700;
}

.instructions li div p {
  width: 96%;
}

.instructions span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
  margin-right: 6px;
}

.dashboard-container .footer-content {
  text-align: center;
  margin-top: 2.4rem;
  padding-bottom: env(safe-area-inset-bottom);
}

.dashboard-container .footer-content > div a,
.dashboard-container .footer-content > div {
  font-weight: 700;
  color: #111;
  font-size: 1.3rem;
}

.app-container .player-container {
  padding: 1.2rem 0.2rem 3.2rem;
  height: auto;
  min-height: auto;
  overflow: visible;
}

.app-container-main {
  height: auto !important;
  min-height: 100dvh !important;
}

.page-copy {
  margin: 2.2rem 0.2rem 1.2rem;
  padding: 1.8rem 1.6rem 2rem;
  background: #fff;
  border: 3px solid #111;
  box-shadow: 4px 5px 0 #111;
  border-radius: 1.4rem;
  text-align: left;
}

.page-copy h2,
.page-copy h3 {
  font-family: Bangers, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  transform: none;
  text-shadow: none;
  text-align: left;
  margin: 0 0 1rem;
  color: #111;
}

.page-copy h2 {
  font-size: 2.3rem;
}

.page-copy h3 {
  font-size: 1.9rem;
  margin-top: 1.8rem;
}

.page-copy p,
.page-copy li {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  color: #111;
  margin: 0 0 1.2rem;
}

.page-copy ul,
.page-copy ol {
  padding-left: 1.8rem;
  margin: 0 0 1.2rem;
}

.page-copy a {
  color: #0c60bf;
  font-weight: 800;
}

.back-btn {
  background: var(--hot);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 4px 0 #111;
  border: 3px solid #111;
  cursor: pointer;
}

.back-btn img {
  width: 1.8rem;
  filter: invert(1);
}

a.back-btn {
  text-decoration: none;
}

.sound-title {
  margin-top: 0.8rem;
  font-size: clamp(3.6rem, 12vw, 5.2rem);
  font-weight: 400;
  color: var(--black);
  text-align: center;
  text-shadow: 3px 4px 0 #fff, 5px 6px 0 #111;
  transform: rotate(-2deg);
}

.image-circle-container,
.inner-image-circle,
.image-circle {
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle-container {
  width: min(58vw, 22rem);
  height: min(58vw, 22rem);
  border: 4px dashed #111;
  margin: 1.2rem auto 0;
  background: #fff;
  box-shadow: 4px 5px 0 #111;
  clip-path: none;
}

.inner-image-circle {
  width: 86%;
  height: 86%;
  border: 4px solid #111;
  background: #fff;
  box-shadow: none;
}

.image-circle {
  width: 86%;
  height: 86%;
  border: 0;
}

.image-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 #111);
}

.next-sound-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 0 0.4rem;
}

.next-sound-btn {
  flex: 1;
  min-height: 5.2rem;
  padding: 1rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
  box-shadow: 3px 4px 0 #111;
  border: 3px solid #111;
  border-radius: 999px;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

#playSoundBtn {
  background: var(--hot);
  color: #fff;
  font-family: Bangers, Impact, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-shadow: none;
  min-height: 5.2rem;
}

.next-sound-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #111;
}

.next-sound-btn img {
  width: 1.8rem;
  height: 1.8rem;
}

.app-container .common-wrapper {
  padding: 2rem 0.4rem 3rem;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
}

.common-wrapper .inner-content {
  padding: 0 0.4rem;
  background: #fffef2;
  border: 3px solid #111;
  box-shadow: 5px 6px 0 #111;
  border-radius: 1.4rem;
  padding: 1.6rem 1.4rem;
}

.common-wrapper h2,
.common-wrapper h4 {
  font-family: Bangers, Impact, sans-serif;
  letter-spacing: 0.04em;
  color: var(--black);
}

.common-wrapper h2 {
  font-size: 2.6rem;
  margin: 1.6rem 0 1rem;
}

.common-wrapper h4 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.common-wrapper p,
.common-wrapper li {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.6rem;
}

.common-wrapper p a {
  color: #0c60bf;
  text-decoration: none;
  font-weight: 700;
}

.back-btn-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.6rem;
  font-weight: 400;
}

.gift-popup,
.cookie-popup {
  position: fixed;
  inset: 0;
  background: #00000099;
  display: flex;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gift-popup {
  align-items: center;
  padding: 1.6rem;
}

.cookie-popup {
  align-items: end;
}

.gift-popup.show,
.cookie-popup.show {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

.hidden {
  display: none;
}

.gift-popup > div {
  background: #f6f4ee;
  box-shadow: 6px 8px 0 #111;
  border: 4px solid #111;
  border-radius: 1.2rem;
  width: min(92vw, 34rem);
  padding: 2.4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gift-popup .image-banner {
  background: url(../image/gift-banner-bg.png) no-repeat 50% 75%;
  display: flex;
  justify-content: center;
  width: 100%;
}

.gift-popup p {
  color: var(--black);
  font-family: Bangers, Impact, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 2rem 1.6rem;
  line-height: 1.1;
}

.gift-popup a {
  box-shadow: 4px 5px 0 #111;
  border: 3px solid #111;
  border-radius: 1.2rem;
  background: var(--hot);
  color: #ffe14a;
  font-family: Bangers, Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 2.2rem;
  min-height: 5.2rem;
}

.gift-popup .close-btn {
  box-shadow: 2px 3px 0 #111;
  border: 3px solid #111;
  background: var(--hot);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: -8px;
}

.cookie-popup > div {
  width: 100%;
  border-radius: 2rem 2rem 0 0;
  background: #f6f4ee;
  padding: 2rem;
  border: 3px solid #111;
  border-bottom: 0;
}

.cookie-popup p,
.cookie-popup a {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-popup button {
  box-shadow: 3px 4px 0 #111;
  border: 3px solid #111;
  border-radius: 1.2rem;
  color: var(--black);
  font-weight: 700;
  font-size: 1.8rem;
  background: #fffef2;
  padding: 1rem 2rem;
  min-height: 4.8rem;
}

.cookie-popup .btn-grp > button:last-child {
  background: var(--hot);
  color: #ffe14a;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  border: 3px solid #111;
  background: #fffef2;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  width: 0.6rem;
  height: 1.2rem;
  border: solid #111;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  width: 100%;
}

.pointer-card {
  padding: 0 0.6rem 2.4rem;
  overflow: hidden;
}

.pointer-card h2 {
  font-family: Bangers, Impact, sans-serif;
  color: #111;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 1.2rem 0.4rem 1rem;
  transform: rotate(-1deg);
  text-shadow: 2px 2px 0 #fff;
}

.pointer-card ul {
  margin-top: 0.8rem;
}

.pointer-card ul li {
  list-style: none;
  font-size: 1.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  margin: 0.6rem 0.2rem;
  max-width: 100%;
  background: #fffef2;
  border: 3px solid #111;
  box-shadow: 3px 4px 0 #111;
}

.pointer-card ul li:nth-child(odd) {
  transform: rotate(-0.6deg);
  background: #b6ff3b;
}

.pointer-card ul li:nth-child(even) {
  transform: rotate(0.7deg);
  background: #5ce1ff;
}

.pointer-card .icon img {
  width: 1.8rem;
  display: block;
}

span.text {
  color: #111;
  font-weight: 700;
}

.why-love p {
  font-size: 1.45rem;
  line-height: 1.4;
  padding: 1.1rem 1.2rem;
  margin: 0;
  text-align: left;
  font-weight: 700;
  background: #fffef2;
  border: 3px solid #111;
  box-shadow: 4px 5px 0 #111;
  transform: rotate(0.7deg);
}

.image-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.4rem;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  padding: 0.4rem 0 0.2rem;
}

.image-group img {
  display: block;
  position: static;
  width: 4.4rem;
  height: auto;
  filter: drop-shadow(2px 2px 0 #111);
}

.image-group img:nth-child(1) {
  transform: rotate(-14deg);
}

.image-group img:nth-child(2) {
  width: 5rem;
  transform: rotate(10deg);
}

.image-group img:nth-child(3) {
  transform: rotate(-8deg);
}

.image-group img:nth-child(4) {
  transform: rotate(12deg);
}

.relative-div {
  position: relative;
  z-index: 1;
}

.homescreen .items-container {
  min-height: 100dvh;
  height: auto;
  padding-top: 0.8rem;
}

.ad-wrapper {
  text-align: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin: 0.8rem auto;
  width: 300px;
  max-width: 100%;
}

.ad-wrapper-empty {
  display: block;
}

.ad-slot {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 250px !important;
  height: 250px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ad-wrapper-filled .ad-slot {
  height: auto;
  min-height: 0;
}

.ad-slot > div,
.ad-slot iframe {
  max-width: 100%;
}

.ad-wrapper span {
  display: block;
  text-transform: uppercase;
  color: #888;
  font-family: Bangers, Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  font-weight: 400;
  padding: 0.4rem 0 0;
  background: #fff;
}

.ad-wrapper-house .ad-slot {
  height: auto;
  min-height: 0 !important;
  display: block;
  background: #111;
}

.house-ad {
  display: block;
  width: 100%;
  line-height: 0;
}

.house-ad img {
  display: block;
  width: 100%;
  height: auto;
}

.progress-container,
.ads-area-50height {
  width: 100%;
  left: 0;
  transform: none;
}

.progress-container {
  height: 10px;
  background: #ddd;
  position: fixed;
  top: 0;
}

.opt-hide {
  display: none;
}

html.splash-lock,
html.splash-lock body {
  overflow: hidden;
  height: 100%;
}

#prankhub-splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #f6f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  transition: opacity 0.35s ease;
}

#prankhub-splash.is-done {
  opacity: 0;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  max-width: 28rem;
}

.splash-mark {
  font-family: Bangers, Impact, sans-serif;
  font-size: 5.2rem;
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: #111;
  text-shadow: 3px 4px 0 #fff, 5px 6px 0 #111;
  margin-bottom: 1.2rem;
}

.splash-mark span {
  color: #e10600;
}

.splash-sub {
  font-family: "Comic Neue", "Comic Sans MS", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.8rem;
}

.splash-bar {
  display: block;
  width: 12rem;
  height: 0.8rem;
  margin: 0 auto;
  border: 3px solid #111;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.splash-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: #e10600;
  animation: splash-fill 2.5s linear forwards;
}

@keyframes splash-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.app-container-main .bottom-decore::after,
.app-container-main .top-decore::before {
  display: none;
}
