:root {
  --bg: #0f0d0eff;
  --bg2: #201b20ff;
  --card: #4d7fe4ff;
  --font-color: #dcdcf8ff;
  --lighter-font-color: #9eb0c9ff;
  --accent: #2a91b1;
  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  --radius: 12px;
  --max-width: 1000px;
}

::selection {
  background-color: rgba(100, 100, 255, 0.5);
}

:root {
  --sat: 80%;
  --light: 40%;
}

.home-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 64px;
}
.home-page .container {
  text-align: center;
  max-width: 650px;
  padding: 20px;
}
.home-page img.logo {
  max-width: 240px;
  margin-bottom: 25px;
}
.home-page h2 {
  margin: 28px 0 10px;
  font-weight: 500;
  opacity: 0.85;
}
.home-page .button-collection {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.home-page .engine-button {
  padding: 14px 22px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}
.home-page #button-mv {
  border-radius: 10px 0 0 10px;
  background: linear-gradient(135deg, #007b3a, #00ff73);
  box-shadow: 0 0 12px rgba(0, 255, 115, 0.4);
}
.home-page #button-mz {
  border-radius: 0 10px 10px 0;
  background: linear-gradient(135deg, #005d9e, #2bb7ff);
  box-shadow: 0 0 12px rgba(43, 183, 255, 0.4);
}
.home-page #button-mv:hover {
  transform: translateX(-6px) scaleX(1.06);
  filter: brightness(1.2);
}
.home-page #button-mz:hover {
  transform: translateX(6px) scaleX(1.06);
  filter: brightness(1.2);
}
.home-page #button-mv:hover i {
  transform: translateX(-6px);
  transition: 0.12s;
}
.home-page #button-mz:hover i {
  transform: translateX(6px);
  transition: 0.12s;
}
.home-page #button-mv:active, .home-page #button-mz:active {
  transform: scale(0.98);
  filter: brightness(0.8);
}
.home-page .engine-button:active {
  transform: scale(0.94);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3) inset;
  filter: brightness(0.9);
}
.home-page .engine-button::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  opacity: 0;
  background: white;
}
.home-page #button-mv:hover::after {
  left: 0;
  animation: pixelBlink 0.12s steps(1) forwards;
}
.home-page #button-mz:hover::after {
  right: 0;
  animation: pixelBlink 0.12s steps(1) forwards;
}
@keyframes pixelBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.home-page .button-containers {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.home-page .button-group {
  position: relative;
  border: solid 1px rgb(255, 255, 255);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #0f0e0e;
  background: linear-gradient(0deg, rgb(15, 14, 14) 0%, rgb(43, 39, 39) 100%);
  box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}
.home-page .button-containers h4 {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  transform: translateY(-32px) translateX(-48px) rotateZ(-12deg);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "Barriecito", cursive;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4d6d, #ffb347);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 77, 109, 0.4), 0 0 12px rgba(255, 179, 71, 0.3);
  transition: all 100ms ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.home-page .button-collection a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: 100ms ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-page .button-collection a:not(.engine-button) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: 100ms ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-page .button-collection a:not(:first-child), .home-page .button-collection a:not(.engine-button):not(:first-child) {
  border-left: none;
}
.home-page .button-collection a:first-child, .home-page .button-collection a:not(.engine-button):first-child {
  border-radius: 10px 0 0 10px;
}
.home-page .button-collection a:last-child, .home-page .button-collection a:not(.engine-button):last-child {
  border-radius: 0 10px 10px 0;
}
.home-page .button-collection a:hover, .home-page .button-collection a:not(.engine-button):hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}
.home-page .button-collection a:active, .home-page .button-collection a:not(.engine-button):active {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
  transition: 0.05s linear;
}
.home-page .desktop-only {
  display: flex;
}
.home-page .mobile-only {
  display: none;
}
@media (max-width: 600px) {
  .home-page .button-collection {
    flex-direction: column;
    align-items: stretch;
  }
  .home-page .desktop-only {
    display: none;
  }
  .home-page .mobile-only {
    display: flex;
  }
  .home-page .button-collection a:first-child, .home-page .button-collection a:not(.engine-button):first-child {
    border-radius: 10px 10px 0 0;
  }
  .home-page .button-collection a:last-child, .home-page .button-collection a:not(.engine-button):last-child {
    border-radius: 0 0 10px 10px;
  }
  .home-page .button-collection a:not(:first-child), .home-page .button-collection a:not(.engine-button):not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
  }
  .home-page #button-mv {
    border-radius: 10px 10px 0 0;
  }
  .home-page #button-mz {
    border-radius: 0 0 10px 10px;
  }
  .home-page #button-mv:hover, .home-page #button-mz:hover {
    transform: translateY(-6px) scaleY(1.06);
  }
}
.home-page .button-group {
  box-shadow: hsla(0, var(--sat), var(--light), 0.6) 0px 0px, hsla(0, var(--sat), var(--light), 0.5) 5px 5px, hsla(0, var(--sat), var(--light), 0.4) 10px 10px, hsla(0, var(--sat), var(--light), 0.3) 15px 15px, hsla(0, var(--sat), var(--light), 0.2) 20px 20px, hsla(0, var(--sat), var(--light), 0.1) 25px 25px;
  animation: moveShadow 1s linear infinite;
}
@keyframes moveShadow {
  0% {
    box-shadow: hsla(0, var(--sat), var(--light), 0.6) 0px 0px, hsla(0, var(--sat), var(--light), 0.5) 5px 5px, hsla(72, var(--sat), var(--light), 0.4) 10px 10px, hsla(144, var(--sat), var(--light), 0.3) 15px 15px, hsla(216, var(--sat), var(--light), 0.2) 20px 20px, hsla(288, var(--sat), var(--light), 0.1) 25px 25px;
  }
  100% {
    box-shadow: hsl(0, var(--sat), var(--light), 0.5) 5px 5px, hsla(72, var(--sat), var(--light), 0.4) 10px 10px, hsla(144, var(--sat), var(--light), 0.3) 15px 15px, hsla(216, var(--sat), var(--light), 0.2) 20px 20px, hsla(288, var(--sat), var(--light), 0.1) 25px 25px, hsla(360, var(--sat), var(--light), 0) 30px 30px;
  }
}
.home-page .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}
.home-page .bottom-text {
  font-size: 0.8rem !important;
  flex-grow: 0;
}
.home-page .space {
  flex-grow: 1;
}

img.header-img {
  max-width: 100%;
  max-height: 100%;
}

div.button-container-horizontal {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.home-desc {
  font-family: "Barriecito", cursive;
  text-align: center;
  margin-bottom: 40px;
}
.home-desc h1 {
  font-size: 2rem;
}
.home-desc a {
  font-size: 1.1rem;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background-color: black;
  background-image: url("../img/starring.png");
  background-position: left top;
  background-size: auto;
  background-repeat: repeat;
  background-attachment: scroll;
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  min-height: 100vh;
}

@property --hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@keyframes hue-shift {
  to {
    --hue:360;
  }
}
@keyframes scroll {
  to {
    background-position: 0 100%;
  }
}
.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: #111;
  color: white;
  font-size: 1.25rem;
  padding: 2ch 3ch;
  text-box: cap alphabetic;
  border: none;
  position: relative;
}
.page::before {
  transition: --a 0.5s 0.1s, --l 0.5s, --c 0.8s;
  --vibrance: 100%;
  content: " ";
  position: absolute;
  inset: 10px 10px -10px;
  animation: hue-shift 0.2s linear infinite;
  background: linear-gradient(to bottom in oklch longer hue, oklch(95% var(--vibrance) calc(var(--hue) * 1deg)) 0%, oklch(95% var(--vibrance) calc((var(--hue) + 120) * 1deg)) 50%, oklch(95% var(--vibrance) calc((var(--hue) + 240) * 1deg)) 100%);
  animation: hue-shift 3s linear infinite, scroll 3s linear infinite;
  filter: blur(20px);
  opacity: 0.5;
  border-radius: inherit;
  z-index: -1;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

@media (max-width: 980px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: 2;
  }
}
* {
  scrollbar-width: auto;
  scrollbar-color: #555 #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 6px;
  border: 2px solid #1a1a1a;
}
::-webkit-scrollbar-thumb:hover {
  background: #777;
}

::-webkit-scrollbar-corner {
  background: #1a1a1a;
}

.terms {
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
}
.terms a:link {
  color: #6666ff;
}
.terms li:not(:last-child) {
  margin-bottom: 12px;
}
.terms .green {
  color: #60e460;
}
.terms .red {
  color: #fc8282;
}
.terms .blue {
  color: #88cefd;
}
.terms .purple {
  color: #c58bff;
}
.terms code {
  padding: 2px;
  background: #333;
  border-radius: 6px;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

.terms-desc {
  font-family: "Barriecito", cursive;
  text-align: center;
  margin-bottom: 0px;
}
.terms-desc h1 {
  font-size: 2rem;
}
.terms-desc a {
  font-size: 1.1rem;
}

header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.title {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}

h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-meta {
  color: var(--lighter-font-color);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: right;
}

.posted {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--glass);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--lighter-font-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.wrap {
  width: min(820px, 94vw);
}

ul.pretty-list {
  --item-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  --item-transition: 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul.pretty-list .item {
  --transition: 50ms;
  --elev:0;
  width: 100%;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transform: translateY(0) scale(1);
  transition: transform 0ms;
  cursor: pointer;
  overflow: hidden;
  min-height: 76px;
  text-align: left;
}
ul.pretty-list .item:focus {
  outline: none;
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.4);
  border-color: rgba(124, 92, 255, 0.18);
}
ul.pretty-list .item:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(124, 92, 255, 0.12);
  transition-duration: 30ms;
}
ul.pretty-list .item:active {
  transform: translateY(1px) scale(0.99);
  transition-duration: 0ms;
}
ul.pretty-list .thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex: 0 0 56px;
  overflow: hidden;
  background: linear-gradient(135deg, #102040 0%, #16243b 100%);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform-origin: center left;
  transition: transform var(--transition), box-shadow var(--transition);
}
ul.pretty-list .item:hover .thumb {
  transform: scale(1.08) translateX(-3px);
}
ul.pretty-list .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
ul.pretty-list .title {
  color: var(--font-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul.pretty-list .desc {
  width: 100%;
  font-size: 13px;
  color: var(--lighter-font-color);
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
ul.pretty-list .meta {
  position: absolute;
  top: 10px;
  right: 12px;
  text-align: right;
  font-size: 12px;
  color: var(--lighter-font-color);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
ul.pretty-list .version {
  font-weight: 700;
  color: var(--font-color);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
}
ul.pretty-list .date {
  font-size: 12px;
  color: var(--lighter-font-color);
}
ul.pretty-list .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  opacity: 0.18;
  background: radial-gradient(circle at center, rgb(124, 92, 255) 0%, rgba(124, 92, 255, 0.6) 30%, rgba(124, 92, 255, 0.18) 60%, transparent 80%);
  animation: ripple 600ms ease-out;
}
@keyframes ripple {
  to {
    transform: scale(18);
    opacity: 0;
  }
}
@media (max-width: 520px) {
  ul.pretty-list .item {
    flex-direction: column;
  }
  ul.pretty-list .thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex: 0 0 48px;
  }
  ul.pretty-list .item {
    padding: 10px;
    min-height: 64px;
  }
  ul.pretty-list .meta {
    position: relative;
    top: 8px;
    right: 8px;
    font-size: 11px;
  }
  ul.pretty-list .title {
    font-size: 14px;
  }
  ul.pretty-list .desc {
    font-size: 12px;
  }
}

pre.code-holder {
  padding: 12px;
  border-radius: 6px;
  border: solid 1px var(--bg2);
  tab-size: 32px;
  overflow: auto;
  max-height: 75vh;
  background-color: #1e1e2e;
  font-size: 0.8rem;
}

.plugin-list {
  display: flex;
  gap: 96px;
  padding: 0px 64px 64px 64px;
}
@media (max-width: 520px) {
  .plugin-list {
    padding: 0px 32px 64px 32px;
  }
}
.plugin-list h2 {
  font-family: "Barriecito", cursive;
  margin: 32px 0 18px 6px;
  font-size: 32px;
  font-weight: 600;
  color: var(--font-color);
  letter-spacing: -0.2px;
  text-align: center;
}

.plugin-category {
  padding: calc(min(100px, 10vw) / 2) 32px 32px 32px;
  border-radius: 24px;
  border: solid 1px white;
  position: relative;
  background-color: rgb(15, 15, 30);
  box-shadow: rgba(91, 46, 240, 0.4) 5px 5px, rgba(91, 46, 240, 0.3) 10px 10px, rgba(91, 46, 240, 0.2) 15px 15px, rgba(91, 46, 240, 0.1) 20px 20px, rgba(91, 46, 240, 0.05) 25px 25px;
}
@media (max-width: 520px) {
  .plugin-category {
    padding: calc(min(100px, 10vw) / 2) 16px 32px 16px;
  }
}
.plugin-category .category-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plugin-category img {
  position: absolute;
  top: 0;
  width: auto;
  height: min(100px, 10vw);
  transform: translateY(calc(min(100px, 10vw) / -2));
  top: 0;
  padding: 0;
  margin: 0;
  border: solid 2px white;
  border-radius: 12px;
  font-family: "Barriecito", cursive;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4d6d, #ffb347);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 77, 109, 0.8), 0 0 24px rgba(255, 179, 71, 0.6);
  transition: all 100ms ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.plugin-params-holder {
  overflow: auto;
  max-height: 75vh;
}

.video-card, .sidebar {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar hr {
  width: 100%;
  height: 4px;
  padding: 0;
  margin: 0;
  border: 0;
  background-image: linear-gradient(45deg, hsla(0, 0%, 100%, 0), hsla(60, 0%, 100%, 0) 33.33%, hsla(120, 0%, 100%, 0.25) 33.33%, hsla(180, 0%, 100%, 0.25) 66.67%, hsla(240, 0%, 100%, 0) 66.67%, hsla(300, 0%, 100%, 0) 100%);
  background-size: 10px 100%;
}
.sidebar .sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar .sidebar-buttons .other-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar .sidebar-buttons .side-by-side {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  gap: 0px;
}
.sidebar .sidebar-buttons .side-by-side a {
  width: 100%;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  position: relative;
  overflow: visible;
}
.video-frame::before {
  content: " ";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  filter: blur(10px);
  opacity: 0.3;
  z-index: -1;
  visible: inherit;
}
.video-frame iframe, .video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 12px;
}

.short-desc {
  margin-top: 12px;
  color: var(--lighter-font-color);
  font-size: 0.98rem;
  line-height: 1.5;
}

.tabs {
  background: transparent;
}

.tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-evenly;
}
.tablist .tab {
  --color1: rgba(255, 255, 255, 0.05);
  background: var(--glass);
  color: var(--lighter-font-color);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  flex-grow: 1;
  position: relative;
  transition: color 0.1s ease, transform 0.1s ease;
}
.tablist .tab::before {
  content: " ";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(237, 58, 207, 0.3), rgba(237, 58, 73, 0.2));
  opacity: 0;
  z-index: 0;
  transition: opacity 0.2s ease;
}
.tablist .tab[data-selected=true]::before {
  opacity: 1;
}
.tablist .tab:hover {
  transform: translateY(-2px) scale(1.02);
}
.tablist .tab:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 0s;
}
.tablist .tab[data-selected=true] {
  color: #fff;
}

.panels {
  margin-top: 12px;
  min-height: 120px;
}

.panel {
  display: none;
  animation: fadeIn 0.18s ease;
}
.panel[data-visible=true] {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
.gallery img {
  width: auto;
  height: auto;
  max-height: 30vh;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.03);
  object-fit: scale-down;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 980px) {
  .gallery img {
    max-height: 20vh;
  }
}
.screenshots {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 15, 0.7);
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(6px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease, visibility 0.18s;
}
.screenshots.open {
  visibility: visible;
  opacity: 1;
}
.screenshots img {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 80px);
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.close-btn {
  position: absolute;
  top: 22px;
  right: 24px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-item {
  background: var(--glass);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--lighter-font-color);
  font-size: 0.95rem;
}

.button-like {
  display: inline-block;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: color 0.1s ease, transform 0.1s ease;
}
.button-like:hover {
  transform: translateY(0px) scale(1.02);
}
.button-like:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 0s;
}
.button-like.tag {
  padding: 4px 8px;
  font-size: 0.75em;
  background: linear-gradient(90deg, rgb(143, 83, 81), rgb(112, 88, 56));
  box-shadow: 0 6px 20px rgba(222, 58, 237, 0.16);
}
.button-like.download {
  padding: 10px 14px;
  font-size: 0.8em;
  box-shadow: 0 6px 20px rgba(237, 58, 198, 0.16);
}
.button-like.download.left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.button-like.download.right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.button-like.download.github {
  background: linear-gradient(90deg, var(--accent), rgb(77, 113, 161));
}
.button-like.download.terms {
  background: linear-gradient(90deg, rgb(77, 161, 95), rgb(104, 161, 77));
}
.button-like.download.bug {
  background: linear-gradient(90deg, rgb(161, 104, 77), rgb(161, 77, 77));
}
.button-like.with-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.button-like.with-icon i {
  display: flex;
  align-content: center;
}
.button-like.link {
  padding: 10px 14px;
  font-size: 0.8em;
  background: linear-gradient(90deg, var(--accent), rgb(182, 33, 145));
  box-shadow: 0 6px 20px rgba(237, 58, 213, 0.1607843137);
}
.button-like.rainbow {
  text-shadow: 0 0 4px black;
  --vibrance: 30%;
  --lightness: 70%;
  animation: hue-shift 0.2s linear infinite;
  background: linear-gradient(45deg in oklch longer hue, oklch(var(--lightness) var(--vibrance) calc(var(--hue) * 1deg)) 0%, oklch(var(--lightness) var(--vibrance) calc((var(--hue) + 120) * 1deg)) 50%, oklch(var(--lightness) var(--vibrance) calc((var(--hue) + 240) * 1deg)) 100%);
  animation: hue-shift 3s linear infinite, scroll 3s linear infinite;
  box-shadow: 0 0 20px oklch(var(--lightness) var(--vibrance) calc(var(--hue) * 1deg)/0.9), 0 0 40px oklch(var(--lightness) var(--vibrance) calc((var(--hue) + 120) * 1deg)/0.7), 0 0 60px oklch(var(--lightness) var(--vibrance) calc((var(--hue) + 240) * 1deg)/0.5);
}

@property --hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@keyframes hue-shift {
  to {
    --hue:360;
  }
}
@keyframes scroll {
  to {
    background-position: 0 100%;
  }
}
@media (max-width: 600px) {
  .button-like.tag {
    padding: 4px 4px;
    font-size: 0.6em;
  }
}

/*# sourceMappingURL=style.css.map */
