@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700&family=Manrope:wght@400;500;700&family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@400;700&family=Lora:wght@400;700&display=swap");
body {
  font-family: "Work Sans", "Manrope", "Roboto", "Open Sans", Arial, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Montserrat", "Playfair Display", "Lora", serif;
}

*:focus-visible {
  outline: 2px solid #0073e6;
  outline-offset: 2px;
  border-radius: 2%;
}

:root {
  background-color: #fffaf0;
  color: #212121;
}

[data-theme=dark] {
  background-color: #212121;
  color: #fffaf0;
}

html {
  scroll-behavior: smooth;
}

@keyframes floatY {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.05, 0.9);
  }
  30% {
    transform: scale(0.9, 1.05);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
body {
  font-size: 1rem;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.375rem;
}

small {
  font-size: 0.75rem;
}

@media (min-width: 481px) and (max-width: 1024px) {
  body {
    font-size: 1.125rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.625rem;
  }
  small {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  small {
    font-size: 1rem;
  }
}
.webapp {
  max-width: 100vw;
  margin: 0 auto; /* This centers the container horizontally */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.nav-lock {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100vw;
}

.header {
  position: sticky;
  z-index: 41;
  top: 0;
  padding-inline: 1rem;
  height: 4rem;
  max-height: 4rem;
}
@media (min-width: 1025px) {
  .header {
    padding-inline: 2.875rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
}
@media (min-width: 1025px) {
  .header__wrapper {
    align-items: center;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
  flex: none;
  font-size: 1.5rem;
  height: 4rem;
  color: inherit;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
@media (min-width: 1025px) {
  .header__logo-link {
    font-size: 1.25rem;
    height: auto;
  }
}
.header__logo {
  width: 2.5rem;
}
.header__nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  min-height: 2rem;
}
@media (max-width: 480px) {
  .header__nav {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
@media (min-width: 1025px) {
  .header__nav-mobile {
    display: none;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 42;
}

.skip-link:focus {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  padding: 0 0.5rem;
}

.nav-list-mobile__overlay--open {
  height: calc(100vh - 4rem);
  width: 100vw;
  background-color: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 40;
  position: absolute;
  top: 4rem;
  left: 0;
}

.footer {
  display: flex;
  padding: 1rem 0;
  width: 100%;
  height: 4.125rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  justify-content: center;
}
@media (min-width: 1025px) {
  .footer {
    width: 100vw;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  padding: 0 1rem;
  align-items: center;
}
@media (min-width: 1025px) {
  .footer__content {
    padding: 0;
  }
}
.footer__copyright {
  width: 100%;
}
.footer__social-links {
  display: flex;
}
.footer__social-link {
  display: block;
  text-decoration: none;
}
.footer__social-link:hover {
  border-radius: 8px;
}
.footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer__social-list li {
  margin: 0;
  padding: 0 0.2rem;
}
.footer__social-caption {
  display: block;
  font-size: 0.7rem;
  color: #888;
  text-align: center;
  margin-top: 2px;
  opacity: 0.7;
  line-height: 1;
}

.icon-button {
  aspect-ratio: 1/1;
  border-radius: 100%;
  border-width: 2px;
  background: none;
  margin: 0;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .icon-button__theme-toggle {
    margin-left: 1rem;
  }
}
.icon-button__icon {
  height: 100%;
  align-content: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}
.icon-button__burger-button, .icon-button__burger-button--open {
  border: 0px;
}
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.blog-post {
  max-width: 1024px;
  margin: 0 auto; /* This centers the container horizontally */
}
.blog-post__banner {
  aspect-ratio: 16/9;
  object-fit: cover;
  height: calc(100vh - 4rem);
  width: 100%;
  min-width: 0;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .blog-post__banner {
    min-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    justify-content: center;
  }
}
.blog-post__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post__banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 31;
}
.blog-post__banner-copy {
  position: absolute;
  width: 100vw;
  z-index: 32;
  display: flex;
  flex-direction: column;
  justify-content: center;
  bottom: 0;
  padding: 4rem 0.5rem;
  color: #fffaf0;
}
@media (min-width: 1025px) {
  .blog-post__banner-copy {
    max-width: 1024px;
    padding: 6rem 0;
  }
}
.blog-post__banner-copy {
  animation-name: fadeIn;
  animation-duration: 3s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1025px) {
  .blog-post__banner-copy-inner {
    width: 66%;
  }
}
.blog-post__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 480px) {
  .blog-post__content > * {
    margin-bottom: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .blog-post__content > * {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .blog-post__content > * {
    margin-bottom: 2rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .blog-post__content > * {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.blog-post__content > * {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

@media (max-width: 480px) {
  .blog-post > * {
    margin-bottom: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .blog-post > * {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .blog-post > * {
    margin-bottom: 2rem;
  }
}

.blog-type-page-header {
  margin: 0 1rem;
}
@media (min-width: 1025px) {
  .blog-type-page-header {
    margin: 0;
  }
}
.blog-type-page-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 1280px) {
  .blog-type-page-header {
    margin-left: 2.875rem;
  }
}
.blog-type-page-header__icon--dev {
  border: 0.25rem solid #5c0aff;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}
.blog-type-page-header__icon--game-dev {
  border: 0.25rem solid #ff8e14;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}
.blog-type-page-header__icon--3d {
  border: 0.25rem solid #f4d35e;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}
.blog-type-page-header__icon--blog {
  border: 0.25rem solid #4fbf8d;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}
.blog-type-page-header__icon--hobby {
  border: 0.25rem solid #005a8a;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}
.blog-type-page-header__icon--review {
  border: 0.25rem solid #ac1522;
  background-color: #fffaf0;
  border-radius: 100%;
  padding: 0.25rem;
}

.blog-type-page-wrapper {
  padding-top: 0;
}
@media (min-width: 1025px) {
  .blog-type-page-wrapper {
    padding-top: 2rem;
  }
}

.home-page-wrapper, .blog-type-page-wrapper {
  margin: 0 1rem;
}
@media (min-width: 1025px) {
  .home-page-wrapper, .blog-type-page-wrapper {
    margin: 0;
  }
}
@media (min-width: 1025px) {
  .home-page-wrapper, .blog-type-page-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .home-page-wrapper, .blog-type-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
}

.about-page-wrapper {
  margin: 0 1rem;
}
@media (min-width: 1025px) {
  .about-page-wrapper {
    margin: 0;
  }
}
.about-page-wrapper > * {
  max-width: 1024px;
  margin: 0 auto; /* This centers the container horizontally */
}

.not-found-page-wrapper {
  margin: 0 1rem;
}
@media (min-width: 1025px) {
  .not-found-page-wrapper {
    margin: 0;
  }
}
.not-found-page-wrapper > * {
  max-width: 1024px;
  margin: 0 auto; /* This centers the container horizontally */
}

@media (max-width: 480px) {
  .home-page-wrapper > *,
  .blog-type-page-wrapper > *,
  .about-page-wrapper > *,
  .not-found-page-wrapper > * {
    margin-bottom: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .home-page-wrapper > *,
  .blog-type-page-wrapper > *,
  .about-page-wrapper > *,
  .not-found-page-wrapper > * {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .home-page-wrapper > *,
  .blog-type-page-wrapper > *,
  .about-page-wrapper > *,
  .not-found-page-wrapper > * {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  .home-page-wrapper > *, .blog-type-page-wrapper > * {
    margin-right: 16.5%;
    margin-left: 8.25%;
  }
  .home-page-wrapper > *:nth-child(6n+4), .home-page-wrapper > *:nth-child(6n+5), .home-page-wrapper > *:nth-child(6n+6), .blog-type-page-wrapper > *:nth-child(6n+4), .blog-type-page-wrapper > *:nth-child(6n+5), .blog-type-page-wrapper > *:nth-child(6n+6) {
    margin-left: 16.5%;
    margin-right: 8.25%;
  }
}

.blog-card {
  display: flex;
}
.blog-card--dev {
  background: #5c0aff;
  color: #fffdf4;
}
.blog-card--game-dev {
  background: #ff8e14;
}
.blog-card--3d {
  background: #f4d35e;
}
.blog-card--blog {
  background: #4fbf8d;
}
.blog-card--hobby {
  background: #005a8a;
  color: #fffdf4;
}
.blog-card--review {
  background: #ac1522;
  color: #fffdf4;
}
.blog-card {
  padding: 0 0 1rem 0;
  border-radius: 0.7rem;
}
.blog-card__wrapper {
  padding: 1rem 0;
  position: relative;
}
@media (max-width: 480px) {
  .blog-card__wrapper > * {
    margin-bottom: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .blog-card__wrapper > * {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .blog-card__wrapper > * {
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .blog-card__wrapper > * {
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .blog-card__wrapper > * {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1025px) {
  .blog-card__wrapper > * {
    margin-bottom: 1rem;
  }
}
.blog-card__link {
  text-decoration: none;
}
.blog-card__meta {
  height: 1.5rem;
}
@media (min-width: 1025px) {
  .blog-card__meta {
    height: 1.875rem;
  }
}
.blog-card__link-bleed {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 3.5rem;
  bottom: 0;
}
@media (min-width: 1025px) {
  .blog-card__link-bleed {
    top: 3.875rem;
  }
}
.blog-card .image {
  overflow: hidden;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
.blog-card .image img {
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.35s ease;
}
.blog-card__wrapper {
  /* CSS-only way to target the image when content is hovered */
}
.blog-card__wrapper:has(.blog-card__content:hover, .blog-card__content:focus-within) .image img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in;
}

.image {
  aspect-ratio: 1/1;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .image {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1025px) {
  .image {
    aspect-ratio: 16/9;
    width: 100%;
  }
}
.image {
  height: auto;
  display: block;
  position: relative;
}
.image--banner {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image__image--caption-variant {
  margin-bottom: 4px;
  border-radius: 0.7rem;
}
.image__image--rounded {
  border-radius: 0.7rem;
}
.image__image--card {
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
.image__image--banner {
  aspect-ratio: 16/9;
}
.image__image--square {
  object-fit: contain;
}
.image__caption {
  font-size: 0.75rem;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .image__caption {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .image__caption {
    font-size: 1rem;
  }
}
.image__caption {
  font-weight: 300;
}
@media (min-width: 1025px) {
  .image__caption {
    text-align: center;
  }
}

.image--content {
  aspect-ratio: auto;
}
.image--content .img {
  aspect-ratio: auto;
}

.link {
  color: #0073e6;
}
.link:hover {
  color: #4364de;
}

.link-list {
  list-style: circle;
}

.badge {
  background-color: #fffaf0;
  padding: 0 0.5rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  gap: 0.5rem;
  color: #212121;
  overflow: hidden;
  transition: background 0.2s;
}
.badge__icon-frame {
  border-radius: 100%;
  padding: 0.125rem;
  z-index: 33;
  background-color: #fffaf0;
}
.badge__icon-frame .icon svg {
  width: 0.75rem;
  height: 0.75rem;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .badge__icon-frame .icon svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .badge__icon-frame .icon svg {
    width: 1rem;
    height: 1rem;
  }
}
.badge__copy {
  font-size: 0.75rem;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .badge__copy {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .badge__copy {
    font-size: 1rem;
  }
}
.badge__copy {
  z-index: 33;
  font-weight: 600;
}
.badge--dev {
  border: 2px solid #5c0aff;
}
.badge--dev::before {
  background: #5c0aff;
}
.badge--dev:hover, .badge--dev:focus-visible {
  color: #fffdf4;
}
.badge--game-dev {
  border: 2px solid #ff8e14;
}
.badge--game-dev::before {
  background: #ff8e14;
}
.badge--3d {
  border: 2px solid #f4d35e;
}
.badge--3d::before {
  background: #f4d35e;
}
.badge--blog {
  border: 2px solid #4fbf8d;
}
.badge--blog::before {
  background: #4fbf8d;
}
.badge--hobby {
  border: 2px solid #005a8a;
}
.badge--hobby::before {
  background: #005a8a;
}
.badge--hobby:hover, .badge--hobby:focus-visible {
  color: #fffdf4;
}
.badge--review {
  border: 2px solid #ac1522;
}
.badge--review::before {
  background: #ac1522;
}
.badge--review:hover, .badge--review:focus-visible {
  color: #fffdf4;
}
.badge::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: inherit;
  inset: -1px;
}
.badge:hover::before, .badge:focus-visible::before {
  transform: scaleX(1);
}

.review-card {
  max-width: calc(100% - 1rem);
  width: auto;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.7rem;
}
.review-card--one {
  border: #d7263d solid 0.125rem;
}
.review-card--two {
  border: #ff9800 solid 0.125rem;
}
.review-card--three {
  border: #ffd600 solid 0.125rem;
}
.review-card--four {
  border: #aeea00 solid 0.125rem;
}
.review-card--five {
  border: #43a047 solid 0.125rem;
}
.review-card > * {
  margin-bottom: 2rem;
}
.review-card__verdict-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
@media (min-width: 1025px) {
  .review-card__verdict-container {
    gap: 1rem;
  }
}
.review-card__verdict-value {
  font-size: 1.375rem;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .review-card__verdict-value {
    font-size: 1.625rem;
  }
}
@media (min-width: 1025px) {
  .review-card__verdict-value {
    font-size: 1.875rem;
  }
}
.review-card__ranking {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.7rem;
}
@media (min-width: 1025px) {
  .review-card__ranking {
    gap: 1rem;
    padding: 1.5rem;
  }
}
.review-card__ranking--one {
  background: #d7263d;
}
.review-card__ranking--two {
  background: #ff9800;
}
.review-card__ranking--three {
  background: #ffd600;
}
.review-card__ranking--four {
  background: #aeea00;
}
.review-card__ranking--five {
  background: #43a047;
}
.review-card__star {
  animation: floatY 1.6s ease-in-out infinite alternate;
  align-self: center;
}
.review-card__star--1 {
  animation-delay: 0s;
}
.review-card__star--2 {
  animation-delay: 0.3s;
}
.review-card__star--3 {
  animation-delay: 0.6s;
}
.review-card__star--4 {
  animation-delay: 0.9s;
}
.review-card__star--5 {
  animation-delay: 1.2s;
}
.review-card__star--blank {
  animation: none;
}

[data-theme=light] .header {
  background: linear-gradient(to bottom, floralwhite 0%, rgba(255, 250, 240, 0.97) 10%, rgba(255, 250, 240, 0.93) 20%, rgba(255, 250, 240, 0.88) 30%, rgba(255, 250, 240, 0.8) 45%, rgba(255, 250, 240, 0.6) 65%, rgba(255, 250, 240, 0.3) 85%, rgba(255, 250, 240, 0) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
[data-theme=light] .nav-list a {
  color: #212121;
  border-bottom: 0.0625rem solid #212121;
}
[data-theme=light] .nav-list a:hover {
  border-bottom: 0.0625rem solid #0073e6;
  color: #0073e6;
}
[data-theme=light] .nav-list-mobile--open {
  color: #212121;
}
[data-theme=light] .nav-list-mobile__nav-item {
  background-color: #fffaf0;
  border-top: 0px;
  color: #212121;
}
[data-theme=light] .nav-list-mobile__nav-item a {
  color: #212121;
}
[data-theme=light] .icon-button {
  border-color: #212121;
}
[data-theme=light] .icon-button:hover {
  color: #0073e6;
}
[data-theme=light] .back-to-top {
  color: #212121;
}
[data-theme=light] .back-to-top:hover {
  color: #212121;
}
[data-theme=light] .footer {
  background-color: #aa78b1;
}
[data-theme=light] .blog-card {
  color: #212121;
}
[data-theme=light] .blog-card__wrapper, [data-theme=light] .blog-card__link {
  background-color: #fffaf0;
  color: #212121;
}
[data-theme=light] .blog-card__content :hover .blog-card__link, [data-theme=light] .blog-card__content :focus-within .blog-card__link {
  color: #0073e6;
}
[data-theme=light] .code-block {
  background-color: rgb(234.6, 230, 220.8);
}
[data-theme=light] .clipboard-copy button {
  color: #0073e6;
}
[data-theme=light] .clipboard-copy__tooltip {
  background: #fffaf0;
}

[data-theme=dark] .header {
  background: linear-gradient(to bottom, #212121 0%, rgba(33, 33, 33, 0.97) 10%, rgba(33, 33, 33, 0.93) 20%, rgba(33, 33, 33, 0.88) 30%, rgba(33, 33, 33, 0.8) 45%, rgba(33, 33, 33, 0.6) 65%, rgba(33, 33, 33, 0.3) 85%, rgba(33, 33, 33, 0) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
[data-theme=dark] .back-to-top {
  color: #cce3fa;
}
[data-theme=dark] .back-to-top:hover {
  color: #cce3fa;
}
[data-theme=dark] .skip-link {
  color: #cce3fa;
}
[data-theme=dark] .skip-link:hover, [data-theme=dark] .skip-link:focus-within {
  color: #99c7f5;
}
[data-theme=dark] .nav-list a {
  color: #fffaf0;
  border-bottom: 0.0625rem solid #fffaf0;
}
[data-theme=dark] .nav-list a:hover {
  border-bottom: 0.0625rem solid #99c7f5;
  color: #99c7f5;
}
[data-theme=dark] .nav-list-mobile--open {
  color: #fffaf0;
}
[data-theme=dark] .nav-list-mobile__nav-item {
  background-color: #212121;
  border-top: 0px;
  color: #fffaf0;
}
[data-theme=dark] .nav-list-mobile__nav-item a {
  color: #fffaf0;
}
[data-theme=dark] .icon-button {
  border-color: #fffaf0;
}
[data-theme=dark] .icon-button:hover {
  color: #cce3fa;
}
[data-theme=dark] .footer {
  background-color: #683c6e;
}
[data-theme=dark] .footer__social-link {
  color: #cce3fa;
}
[data-theme=dark] .footer__social-link :hover, [data-theme=dark] .footer__social-link :focus-within {
  color: #99c7f5;
}
[data-theme=dark] .blog-card {
  color: #fffdf4;
}
[data-theme=dark] .blog-card__wrapper, [data-theme=dark] .blog-card__link {
  background-color: #212121;
  color: #fffaf0;
}
[data-theme=dark] .blog-card__content :hover .blog-card__link, [data-theme=dark] .blog-card__content :focus-within .blog-card__link {
  color: #99c7f5;
}
[data-theme=dark] .code-block {
  background-color: rgb(25.08, 25.08, 25.08);
}
[data-theme=dark] .clipboard-copy button {
  color: #cce3fa;
}
[data-theme=dark] .clipboard-copy__tooltip {
  background: #212121;
}

.icon-button:hover, .icon-button:focus-visible, .icon-button:active, .nav-list__nav-item a:hover, .nav-list__nav-item a:focus-visible, .nav-list__nav-item a:active {
  animation: breathe 0.9s ease 1;
}
.icon-button:active, .nav-list__nav-item a:active {
  animation: none;
  animation: breathe 0.9s ease 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.nav-list__nav-item {
  display: flex;
  min-height: 2rem;
  margin: 0;
  padding: 0;
  flex: none;
}
.nav-list__nav-item a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}
.nav-list__nav-item a.--dev {
  border-bottom-color: #5c0aff;
}
.nav-list__nav-item a.--game_dev {
  border-bottom-color: #ff8e14;
}
.nav-list__nav-item a.--3d {
  border-bottom-color: #f4d35e;
}
.nav-list__nav-item a.--blog {
  border-bottom-color: #4fbf8d;
}
.nav-list__nav-item a.--mini_hobby {
  border-bottom-color: #005a8a;
}
.nav-list__nav-item a.--review {
  border-bottom-color: #ac1522;
}
.nav-list__nav-item a {
  border-top: 3px solid transparent;
}

.nav-list-mobile {
  display: none;
}
.nav-list-mobile--open {
  display: flex;
  list-style: none;
  z-index: 42;
  width: 100vw;
  position: absolute;
  flex-direction: column;
  left: 0;
  top: 4rem;
  padding: 0 0 1rem 0;
  overflow: hidden;
  touch-action: none;
}
.nav-list-mobile__nav-item {
  padding: 0.5rem 1.5rem;
}
.nav-list-mobile__nav-item a {
  display: flex;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
  width: 100%;
  height: 100%;
  border-bottom-style: solid;
}
.nav-list-mobile__nav-item a.--dev {
  border-bottom-color: #5c0aff;
}
.nav-list-mobile__nav-item a.--game_dev {
  border-bottom-color: #ff8e14;
}
.nav-list-mobile__nav-item a.--3d {
  border-bottom-color: #f4d35e;
}
.nav-list-mobile__nav-item a.--blog {
  border-bottom-color: #4fbf8d;
}
.nav-list-mobile__nav-item a.--mini_hobby {
  border-bottom-color: #005a8a;
}
.nav-list-mobile__nav-item a.--review {
  border-bottom-color: #ac1522;
}
.nav-list-mobile__nav-item button {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border: none;
  border-radius: 0;
}
.nav-list-mobile__nav-item:active {
  background-color: #0073e6;
}
.nav-list-mobile__nav-item:active button {
  background-color: #0073e6;
  border-color: #0073e6;
}
.nav-list-mobile__nav-item {
  animation: fadeInNavItem 0.8s both;
}
@keyframes fadeInNavItem {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-list-mobile__nav-item:focus-visible, .nav-list-mobile__nav-item:hover, .nav-list-mobile__nav-item:active {
  background-color: #0073e6;
  color: #0073e6;
}

.button-container {
  position: absolute;
  right: 0;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.code-block {
  max-width: 100%;
  overflow-x: hidden;
  border-radius: 0.7rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.code-block button {
  height: 2rem;
}

.clipboard-copy {
  position: relative;
  display: inline-block;
  transform: translateX(0.5rem);
}
@media (min-width: 1025px) {
  .clipboard-copy {
    transform: translateX(0);
  }
}
.clipboard-copy__tooltip {
  position: absolute;
  right: 0;
  font-size: 0.75rem;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .clipboard-copy__tooltip {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .clipboard-copy__tooltip {
    font-size: 1rem;
  }
}
.clipboard-copy__tooltip {
  padding: 0.5rem 0.5rem;
  border-radius: 0.7rem;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 0.7s ease;
  pointer-events: auto;
  z-index: 43;
}
.clipboard-copy__tooltip-hidden {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.back-to-top {
  position: fixed;
  bottom: 4.125rem;
  right: 1rem;
  backdrop-filter: blur(10px);
  border: 2px solid #0073e6;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top:visited {
  color: inherit;
}
.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 1025px) {
  .back-to-top:hover, .back-to-top:focus-visible {
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  }
}

pre:has(code) {
  overflow: auto;
}
pre:has(code) code {
  overflow: visible;
  word-wrap: normal;
}

#main, h2, h3, h4 {
  scroll-margin-top: 4rem;
}

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