/* ----- Systems Section ----- */
.systems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;
    row-gap: 2.5rem;
    margin-top: 2rem;
}

.system {
    display: flex;
    flex-direction: column;
    background: #111;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.2s;
    border-left: none;
}

.systems__grid > .system:not(:nth-child(3n+1)) {
    border-left: 3px solid #f5a623;
}
.system:hover {
    opacity: 1;
}
.system:hover .system__cover {
    transform: scale(1.07);
    filter: brightness(0.65) sepia(0.6) saturate(4) hue-rotate(5deg);
}
.system__cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.system__title {
    color: var(--white);
    font-size: 2rem;
    font-family: 'Jost', sans-serif;
    padding: 1.2rem 1.5rem;
    background: #111;
    text-align: center;
}
.system__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 0.7rem 0 1.2rem 0;
}
.system__tag {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0.3rem 1.2rem;
  font-size: 1.3rem;
  color: #fff;
  background: transparent;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  transition: border 0.15s, color 0.15s, background 0.15s;
  cursor: default;
}
.system__tag:hover {
  border: 2px dotted #f5a623;
  color: #111;
  background: #f5a623;
}

@media (max-width: 1200px) {
    .systems__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .system__cover {
        height: 130px;
    }
}
@media (max-width: 800px) {
    .systems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .system__cover {
        height: 150px;
    }
}
@media (max-width: 500px) {
    .systems__grid {
        grid-template-columns: 1fr;
    }
}
/* --------------------------------------- */
/* ----- Basic Setup ----- */
/* --------------------------------------- */

@font-face {
    font-family: 'Hk Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/HKGrotesk-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Jost-Regular.ttf') format('woff');
}

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

:root {
    --font-size-small: 1.8rem;
    --font-size-normal: 2.2rem;
    --font-size-medium: 2.8rem;
    --font-size-medium-1: 3.6rem;
    --font-size-large: 5.5rem;
    --font-size-huge: 7.5rem;
    --font-stack: 'Hk Grotesk', sans-serif;

    --line-height-normal: 1.7;
    --line-height-small: 1.2;

    --black: #000;
    --pink: #f5a623;
    --white: #f0e9f2;
    --white-1: #e5e5e6da;


    --container-max-width: 1180px;
    --container-normal-width: 800px;
    --container-medium-width: 700px; 
    --container-small-width: 500px;

    --gutter-huge: 12rem;
    --gutter-medium: 6rem;
    --gutter-normal: 3rem;
    --gutter-small-1: 2.5rem;
    --gutter-small: 2rem;

    --border-light: 1px solid rgb(36, 35, 35);
}

html {
    font-size: 62.5%; /* (16/10)*100 = 62.5% => 1rem = 10px */
    box-sizing: border-box;
    scroll-behavior: smooth;
}

@media(max-width: 1000px) {
    html {
        font-size: 52%;
    }
}

body {
    font-size: var(--font-size-small);
    font-family: var(--font-stack);
    font-weight: 400;
    color: var(--white-1);
    line-height: var(--line-height-normal);
    background: var(--black);
    overflow-x: hidden;
}

.row {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media(max-width: 1340px) {
    .row {
        max-width: 1100px;
    }
}

@media(max-width: 1240px) {
    .row {
        padding: 0 var(--gutter-medium);
    }
}

@media(max-width: 600px) {
    .row {
        padding: 0 var(--gutter-normal);
    }
}

@media(max-width: 600px) {
    .row {
        padding: 0 var(--gutter-small);
    }
}

section {
    padding: var(--gutter-huge) 0;
    border-bottom: var(--border-light);
}

img {
    object-fit: contain;
    max-width: 100%;
}

/* --------------------------------------- */
/* ----- Headlines and Paragraphs ----- */
/* --------------------------------------- */

h1,
h2,
h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: var(--line-height-small);
    color: var(--white);
}

.heading-primary {
    line-height: 1;
    font-size: var(--font-size-huge);
    font-weight: 400;
}

@media(max-width: 900px) {
    .heading-primary {
        font-size: 6.5rem;
    }
}

h2 {
    font-size: var(--font-size-large);
    margin-bottom: var(--gutter-medium);
}

h2::after {
    content: '';
    display: block;
    height: 2px;
    width: 10rem;
    background: var(--pink);
    margin: var(--gutter-small) 0;
}

h3 {
    font-size: var(--font-size-medium-1);
    margin-bottom: var(--gutter-small);
}

@media(max-width: 500px) {
    .heading-primary {
        font-size: var(--font-size-large);
    }

    h2 {
        font-size: var(--font-size-medium-1);
    }

    h3 {
        font-size: var(--font-size-medium);
    }
}

p {
    margin: var(--gutter-small-1) 0;
}

@media(max-width: 900px) {
    p { 
        max-width: var(--container-small-width);
    }
}

/* --------------------------------------- */
/* ----- Buttons and Links ----- */
/* --------------------------------------- */

a {
    color: var(--white);
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    transition: all .2s;
    outline: 2px solid transparent;
}

::-moz-focus-inner {
    border: 0;
}

button:focus,
a:focus {
    outline: 2px solid var(--pink);
}

body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) a:focus {
    outline: none;
}

.link:hover {
    color: var(--pink);
}

.btn {
    position: relative;
    display: inline-block;
    padding: 1rem 4.2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid  var(--pink);
    font-weight: 400;
}

.btn:focus {
    outline: none;
}

.btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    background: var(--white);
    height: 100%;
    z-index: -1;
    transition: all 0.2s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.btn:hover::after,
.btn:focus::after {
    right: 0;
    background: var(--pink);
}

.btn--pink {
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.btn--pink::after {
    display: none;
}

.btn--pink::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--pink);
    transition: height 0.35s ease;
    z-index: -1;
}

.btn--pink:hover::before,
.btn--pink:focus::before {
    height: 100%;
}

.btn--pink:hover,
.btn--pink:focus {
    background: transparent;
}

.link__text {
    position: relative;
    display: inline-block;
    padding: .6rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--pink);
}

.link__text::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    background: var(--white);
    height: 100%;
    z-index: -1;
    transition: all 0.2s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.link__text:focus {
    outline: none;
}

.link__text:hover::after,
.link__text:focus:after {
    right: 0;
    background: var(--pink);
}

.link__text span {
    padding-left: 1rem;
    font-family: sans-serif;
}

/* ----- Back to Top ----- */

.back-to-top {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5.5rem;
    width: 5.5rem;
    background-color: var(--pink);
    border-radius: 50%;
    z-index: 10;
    visibility: hidden;
    transition: all .4s;
}

.back-to-top__image {
    height: 70%;
}

@media(max-width: 900px) {
    .back-to-top {
        right: 2rem;
    }
}

@media(max-width: 500px) {
    .back-to-top {
        right: 1rem;
    }
}

/* --------------------------------------- */
/* ----- Navigation ----- */
/* --------------------------------------- */

.nav {
    display: flex;
    justify-content: flex-end;
    padding: var(--gutter-normal) 0;
}

.nav__items {
    display: flex;
    list-style: none;
}

.nav__item:not(:last-child) {
    margin-right: var(--gutter-medium);
}

@media(max-width: 500px) {
    .nav {
        justify-content: center;
    }
}

@media(max-width: 400px) {
    .nav__item:not(:last-child) {
        margin-right: var(--gutter-normal);
    }
}

@media(max-width: 300px) {
    .nav {
        font-size: var(--font-size-small);
    }
}

.nav__link {
    position: relative;
    display: inline-block;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    display: inline-block;
    height: 1rem;
    background: var(--white);
    transition: all 0.25s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.nav__link:hover {
    color: var(--pink);
}

.nav__link:hover::after {
    right: 0;
    height: 2px;
    background: var(--pink);
}

/* --------------------------------------- */
/* ----- Header ----- */
/* --------------------------------------- */

.header {
    background: linear-gradient(rgba(0,0,0, .1), rgba(0,0,0, .4)), 
        url('./images/badhandbg.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-size: var(--font-size-normal);
}

.header__text {
    flex: 1;
}

.header__text p {
    margin: 1.5rem 0 3.5rem;
    max-width: var(--container-medium-width);
    font-family: 'Jost', sans-serif;
    font-size: var(--font-size-medium);
}

@media(max-width: 500px) {
    .header {
        text-align: center;
    }

    .header__text p {
        transform: scale(.8);
    }
}

/* --------------------------------------- */
/* ----- Work ----- */
/* --------------------------------------- */

.work__box {
    display: flex;
    align-items: center;
}

@media(max-width: 900px) {
    .work__box {
        align-items: initial;
        flex-direction: column-reverse;
    }
}

.work__box:not(:last-child) {
    margin-bottom: 25rem;
}

@media(max-width: 500px) {
    .work__box:not(:last-child) {
        margin-bottom: 20rem;
    }
}

.work__links {
    display: flex;
    align-items: center;
}

.work__text {
    flex: 0 0 30%;
}

.work__list {
    /* list-style-type: square; */
    list-style-position: inside;
    margin-bottom: var(--gutter-normal);
}

.work__code {
    display: block;
    height: 3rem;
    margin-left: var(--gutter-normal);
    transition: all .3s;
}

.work__code:hover {
    transform: scale(1.2);
}

.work__image-box {
    margin-bottom: var(--gutter-normal);
}

@media(min-width: 901px) {
    .work__image-box {
        flex: 1;
        margin: 0 0 0 10rem;
    }
}

@media(max-width: 900px) {
    .work__code {
        height: 4rem;
    }
}

/* --------------------------------------- */
/* ----- Clients ----- */
/* --------------------------------------- */

.client__logos {
    display: flex;
    justify-content: space-between;
    filter: invert(100%) grayscale(100%) opacity(.8);
}

.client__logo {
    height: 6.5rem;
    max-width: 18rem;
}

@media(max-width: 1240px) {
    .client__logos {
        overflow-x: scroll;
        padding: var(--gutter-normal);
    }

    .client__logo:not(:last-of-type) {
        margin-right: var(--gutter-medium);
    }
}

/* --------------------------------------- */
/* ----- About ----- */
/* --------------------------------------- */

.about__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

@media(max-width: 900px) {
    .about__content {
        flex-direction: column-reverse;
        align-items: initial;
    }
}

.about__photo-container {
    margin-bottom: var(--gutter-normal);
}

@media(min-width: 901px) {
    .about__text {
        flex: 0 0 35%;
    }
    
    .about__photo-container {
        flex: 1;
        margin: 0 var(--gutter-huge) 0 0;
    }
}

/* --------------------------------------- */
/* ----- Contact ----- */
/* --------------------------------------- */

.contact__info {
    max-width: var(--container-medium-width);
}

/* --------------------------------------- */
/* ----- Footer ----- */
/* --------------------------------------- */

.footer {
    text-align: center;
    padding: var(--gutter-medium) 0 var(--gutter-normal);
}

.footer__social-links {
    display: flex;
    justify-content: center;
    padding: var(--gutter-normal) 0;
    list-style: none;
}

.footer__social-link-item:not(:last-of-type) {
    margin-right: var(--gutter-small);
}

.footer__social-image {
    height: 4rem;
}

.footer__github-buttons {
    display: flex;
    justify-content: center;
}

.footer__github-buttons iframe {
    height: 2.5rem;
    width: 84px;
    transform: translateY(3px);
}

@media(max-width: 500px) {
    .footer {
        padding: var(--gutter-medium) 0;
    } 
}

.skill-tag {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 1.4rem;
  margin-right: 0.8rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.header__skills {
  margin-bottom: 3rem;
}

/* Social buttons */
.header__socials {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.social-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #f5a623;
  border-radius: inherit;
  transition: height 0.35s ease;
  z-index: 0;
}

.social-btn:hover::before {
  height: 100%;
}

.social-btn:hover {
  border-color: #f5a623;
}

.social-btn img {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.social-btn:hover img {
  filter: brightness(0);
}

.header__text-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 0 var(--gutter-medium);
}

.photo-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
}

#particles-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
}

.photo-container img {
  position: relative;
  z-index: 1;
}

.header__photo img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f5a623;
}

/* ----- Games Section ----- */
.games__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.game {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border-radius: 2rem;
  padding: 2rem 2rem 1.5rem 2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
}
.game::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0%;
  background: linear-gradient(to top, rgba(245,166,35,0.32) 0%, rgba(245,166,35,0.12) 100%);
  border-radius: 2rem;
  z-index: 0;
  transition: height 0.35s cubic-bezier(0.6,0.2,0.2,1);
  pointer-events: none;
}
.game:hover::before {
  height: 100%;
}
.game > * {
  position: relative;
  z-index: 1;
}

.game__cover {
  width: 260px;
  height: 390px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
  background: #222;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
}
.game__title {
  color: var(--white);
  font-size: 2.2rem;
  font-family: 'Jost', sans-serif;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ===== Experience ===== */
.experience {
  padding: 6rem 0;
}

.experience__timeline {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 3.2rem;
  position: relative;
  padding-left: 0;
}

.experience__timeline::before {
  content: '';
  position: absolute;
  left: 3.2rem;
  top: 3.2rem;
  bottom: 3.2rem;
  width: 2px;
  background: rgba(245, 166, 35, 0.2);
}

.experience__item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.experience__logo-wrap {
  flex-shrink: 0;
  z-index: 1;
}

.experience__logo-circle {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: #f5a623;
  border: 3px solid #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience__logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.experience__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.experience__date {
  font-size: 1.3rem;
  color: #f5a623;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
}

.experience__title {
  margin: 0;
  font-size: 2rem;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

.experience__org {
  font-size: 1.5rem;
  color: var(--white-1);
  font-family: 'Jost', sans-serif;
}

.experience__location {
  font-size: 1.3rem;
  color: rgba(240, 233, 242, 0.5);
  font-family: 'Jost', sans-serif;
}

@media (max-width: 900px) {
  .games__grid {
    gap: 2rem;
  }

.game-modal {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    width: 760px !important;
    max-width: 92vw !important;
    max-height: 90vh !important;
    padding: 2rem !important;
    border: 0 !important;
    border-radius: 2.4rem !important;
    background: rgba(15, 18, 34, 0.96) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45) !important;
    display: grid;
    gap: 1.5rem;
    overflow: auto !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96) !important;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.game-modal[open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1) !important;
}

.game-modal::backdrop {
    background: rgba(7, 10, 20, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.game-modal__close {
    display: none;
}

.game-modal__cover {
    width: 100% !important;
    max-height: 55vh !important;
    object-fit: contain;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.game-modal__content {
    display: grid;
    gap: 1rem;
    justify-items: start;
    text-align: left;
    width: 100%;
}

.game-modal__title {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4rem);
    color: var(--white);
    width: 100%;
    text-align: center;
}

.game-modal__meta {
    display: grid;
    gap: 0.9rem;
    width: 100%;
    justify-items: start;
}

.game-modal__field {
    display: grid;
    gap: 0.3rem;
    justify-items: start;
    width: 100%;
}

.game-modal__label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.game-modal__value,
.game-modal__description {
    color: var(--white);
    font-size: 1.7rem;
}

.game-modal__value,
.game-modal__description {
    font-weight: 400;
}

.game-modal__description {
    margin: 0;
    color: var(--white);
}

.game-modal__field--description {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    flex-wrap: wrap;
    text-align: left;
}

.game-modal__field--description .game-modal__description {
    display: inline;
}

.game-modal__actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.game-modal .game-modal__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-width: 4.8rem;
    width: 4.8rem;
    height: 4.8rem;
    padding: 0;
    border-radius: 50%;
    background: #f5a623;
    border: 1.5px solid #f5a623;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.game-modal .game-modal__play,
.game-modal .game-modal__play:hover,
.game-modal .game-modal__play:focus,
.game-modal .game-modal__play:visited {
    text-decoration: none;
}

.game-modal .game-modal__play:hover,
.game-modal .game-modal__play:focus {
    transform: translateY(-2px);
    background: #f5a623;
    color: #fff;
    outline: none;
}

.game-modal .game-modal__play.is-disabled {
    pointer-events: none;
    opacity: 1;
}

body.game-modal-open {
    overflow: hidden;
}
  .game__cover {
    width: 180px;
    height: 270px;
  }
  .game__title {
    font-size: 1.5rem;
  }

    .game-modal {
        padding: 1.2rem;
    }

    .game-modal__panel {
        width: min(94vw, 640px);
        padding: 1.4rem;
    }
}

/* --- Games Section Spacing Tweaks --- */
.games {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.games__context {
  margin-bottom: 2rem;
  margin-top: -1.5rem;
  font-size: 2rem;
  color: var(--white-1);
}
.games__grid {
  margin-top: 0;
}

section.games {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.games__grid {
  gap: 2.2rem;
}

.games__filters {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0 1.5rem 0;
}
.games h2 {
  margin-bottom: 0.5rem;
}
.games__filter-btn {
  background: none;
  border: 1.5px solid var(--pink);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.games__filter-btn:hover,
.games__filter-btn:focus {
  background: var(--pink);
  color: #fff;
  outline: none;
}
.games__filter-btn.selected,
.games__filter-btn.selected:focus {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ----- Systems Filters ----- */
.systems {
  padding-top: 2rem !important;
}
.systems__filters {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0 1.5rem 0;
}
.systems h2 {
  margin-bottom: 0.5rem;
}
.systems__filter-btn {
  background: none;
  border: 1.5px solid var(--pink);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.systems__filter-btn:hover,
.systems__filter-btn:focus {
  background: var(--pink);
  color: #fff;
  outline: none;
}
.systems__filter-btn.selected,
.systems__filter-btn.selected:focus {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
