/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ============================================================
   VARIABLES
============================================================ */
:root {
  /* === Font === */

  /* === Colors === */

  /* === Spacing === */

  /* === Border Radius === */

  /* === Transitions === */
}

/* ============================================================
   RESET & GLOBAL STYLES
============================================================ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: #e0e0e0; /* testo chiaro per contrasto */
  background-color: #14141a;
  background-image: radial-gradient(#252525 1px, transparent 1px),
    radial-gradient(#252525 1px, transparent 1px);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  cursor: url("../img/cursor.png"), auto;
}

input,
select,
textarea,
button {
  font-family: system-ui;
  font-size: 1rem;
}

/* Links default */
a {
  color: #6d1cc9;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: url("../img/cursor_click.png"), auto;
}
a:visited {
  color: #ffffff;
}

a:hover,
a:focus {
  color: #6d1cc9;
  text-decoration: none;
}

a:active {
  color: #ff00bb;
}

/* ============================================================
   HEADER NAVBAR ADATTATA
============================================================ */
nav[role="navigation"] {
  flex-grow: 0;
  margin-left: 0;
}

.navigation-list {
  list-style: none;
  display: flex;
  gap: 70px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.navigation-list li a img {
  width: 50px;
  height: 50px;
  /* default black -> colorize with filter or swap with colored images */
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(270deg);
}

.navigation-list li a:hover img {
  transform: scale(1.2);
  color: #ff00bb;
}

main {
  flex: 1;
  padding-top: 140px;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
h1,
h2,
.skills-chart h2,
.skill span {
  font-family: "Press Start 2P", monospace;
  letter-spacing: 1px;
  font-size: 30px;
  word-break: break-word;
  max-width: 100%;
}

p,
.about-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 45px;
}

.about-text {
  font-size: 20px;
  line-height: 1.5;
  color: #cfcfcf;
}

/* ============================================================
   PIXEL TIMELINE
============================================================ */
.pixel-timeline {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  color: #ff00bb;
}

.pixel-timeline h1 {
  font-size: 30px;
  color: #ff00bb;
  text-shadow: 2px 2px #6d1cc9;
  margin-bottom: 40px;
}

.pixel-timeline h2 {
  font-size: 20px;
  color: #96d5ff;
}

.timeline-container {
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 4px dashed #ff00bb;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-icon {
  width: 18px;
  height: 18px;
  background: #00e1ff;
  position: absolute;
  left: -11px;
  top: 5px;
  image-rendering: pixelated;
  box-shadow: 0 0 0 4px #111, 4px 4px 0 #00e1ff;
}

.timeline-content {
  background-color: #313638;
  padding: 20px;
  border: 6px solid #6d1cc9;
  box-shadow: 4px 4px 0 #ff00bb;
  text-align: left;
}

.timeline-content h2 {
  margin-bottom: 10px;
  text-shadow: 1px 1px #ff00bb;
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00e1ff;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ============================================================
   PIXEL SOUND EFFECTS
============================================================ */

.pixel-card {
  border: 4px solid #000;
  padding: 20px;
  background: #f4f4f4;
  transition: transform 0.15s steps(2), box-shadow 0.15s steps(2);
  cursor: url("../img/cursor_click.png"), auto;
  image-rendering: pixelated;
}

.pixel-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #000;
}

.pixel-card h2 {
  font-family: "Press Start 2P", cursive;
}

.pixel-card p,
.pixel-card a {
  font-family: "Roboto", sans-serif;
}

/* ============================================================
   SKILLS CHART
============================================================ */
.skills-chart {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.skills-chart h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  color: #ff00bb;
  text-shadow: 2px 2px #6d1cc9;
}

.skill {
  margin-bottom: 20px;
}

.skill span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #00e1ff;
  text-shadow: 1px 1px #6d1cc9;
}

.bar {
  background-color: #222;
  border: 2px solid #6d1cc9;
  overflow: hidden;
  height: 16px;
  box-shadow: 2px 2px 0 #ff00bb;
}

.level {
  height: 100%;
  background-color: #6d1cc9;
  box-shadow: inset 2px 2px 0 #6d1cc9;
}

.level.html {
  width: 65%;
}
.level.css {
  width: 45%;
}
.level.js {
  width: 45%;
}
.level.react {
  width: 30%;
}
.level.C {
  width: 40%;
}
.level.ng {
  width: 30%;
}
.level.ad {
  width: 70%;
}
.level.fg {
  width: 60%;
}

/* ============================================================
   POKEBALL SECTION & ANIMATIONS
============================================================ */
.pokeball-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 300px;
  padding: 40px 0;
  background-color: #f9f9f9;
  cursor: url("../img/cursor_click.png"), auto;
}

.pokeball-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto;
}

.pokeball {
  display: block;
  width: 96px;
  height: 96px;
  -webkit-animation: roll-in-left 1.2s ease-out forwards,
    shake 1.25s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1.3s 3,
    catch 0.5s ease-out 5.1s forwards;
  animation: roll-in-left 1.2s ease-out forwards,
    shake 1.25s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1.3s 3,
    catch 0.5s ease-out 5.1s forwards;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  cursor: url("../img/cursor_click.png"), auto;
}

.gotcha-text {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
  opacity: 0;
  -webkit-animation: fade-in 1s ease-in 6s forwards;
  animation: fade-in 1s ease-in 6s forwards;
}

/* Keyframes */
@-webkit-keyframes roll-in-left {
  0% {
    -webkit-transform: translateX(-200%) rotate(-720deg);
    transform: translateX(-200%) rotate(-720deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}
@keyframes roll-in-left {
  0% {
    -webkit-transform: translateX(-200%) rotate(-720deg);
    transform: translateX(-200%) rotate(-720deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-10px) rotate(-20deg);
    transform: translateX(-10px) rotate(-20deg);
  }
  30% {
    -webkit-transform: translateX(10px) rotate(20deg);
    transform: translateX(10px) rotate(20deg);
  }
  50% {
    -webkit-transform: translateX(-10px) rotate(-10deg);
    transform: translateX(-10px) rotate(-10deg);
  }
  60% {
    -webkit-transform: translateX(10px) rotate(10deg);
    transform: translateX(10px) rotate(10deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-10px) rotate(-20deg);
    transform: translateX(-10px) rotate(-20deg);
  }
  30% {
    -webkit-transform: translateX(10px) rotate(20deg);
    transform: translateX(10px) rotate(20deg);
  }
  50% {
    -webkit-transform: translateX(-10px) rotate(-10deg);
    transform: translateX(-10px) rotate(-10deg);
  }
  60% {
    -webkit-transform: translateX(10px) rotate(10deg);
    transform: translateX(10px) rotate(10deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}

@-webkit-keyframes catch {
  to {
    -webkit-filter: saturate(0.8) brightness(0.8);
    filter: saturate(0.8) brightness(0.8);
  }
}

@keyframes catch {
  to {
    -webkit-filter: saturate(0.8) brightness(0.8);
    filter: saturate(0.8) brightness(0.8);
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer-container {
  background-color: #1111;
  border-top: #6d1cc9 solid 5px;
  padding: 12px 16px;
  color: #ffffff;
  text-align: center;
  cursor: ("../img/cursor.png"), auto;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.social-icons img {
  width: 45px;
  height: 45px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.2s ease, -webkit-filter 0.3s ease;
  -o-transition: transform 0.2s ease, filter 0.3s ease;
  transition: transform 0.2s ease, filter 0.3s ease;
  transition: transform 0.2s ease, filter 0.3s ease, -webkit-transform 0.2s ease,
    -webkit-filter 0.3s ease;
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.social-icons img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
}

h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  margin-top: 20px;
}

.cv-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #6d1cc9;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.cv-link:hover {
  background-color: #d400ff;
}

/* ============================================================
   BUTTONS
============================================================ */
button {
  border: none;
  font-family: inherit;
  background-color: #6d1cc9;
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  border-radius: 3px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.9s;
  -o-transition: opacity 0.9s;
  transition: opacity 0.9s;
  cursor: url("../img/cursor_click.png"), auto;
}
.button-cv-link {
  border: none;
  font-family: inherit;
  background-color: #6d1cc9;
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  border-radius: 3px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.9s;
  -o-transition: opacity 0.9s;
  transition: opacity 0.9s;
  cursor: url("../img/cursor_click.png"), auto;
}

button:hover {
  opacity: 1;
}

button:focus {
  opacity: 1;
}

.button-cv-link:hover {
  opacity: 0.8;
  background-color: #d400ff;
}

.secondary_button {
  background-color: #d400ff;
  color: #2b2b2b;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: url("../img/cursor_click.png"), auto;
}

.secondary_button:hover {
  background-color: #5e0e6e;
}

/* ============================================================
   SOUND CONTROL
============================================================ */
#sound-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;

  position: fixed;
  bottom: 0.8rem;
  right: 0.8rem;

  /* background: rgba(0, 0, 0, 0.4); */
  /* backdrop-filter: blur(4px); */
}

/* ============================================================
   RETRO BUTTON
============================================================ */

.retro-btn {
  position: static;
  margin-top: 20px;
  display: inline;
  background-color: #ff00bb;
  color: #ffff;
  border: none;
  padding: 12px 18px;
  font-family: "Press Start 2P", cursive;
  font-size: 14px;
  cursor: url("../img/cursor_click.png"), auto;
  transform: translateX(-50%);
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.retro-btn:hover {
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
  background-color: #00e1ff;
  cursor: url("../img/cursor_click.png"), auto;
}

.retro-btn:active {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

/* ============================================================
   EASTER EGG SECTION
============================================================ */

.easter-egg {
  margin-top: 24px;
  text-align: center;
}

.easter-egg .retro-btn {
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  opacity: 0.85;
}

.pixelify-sans {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
}

/* Rimuove scaling dalla card */
.egg-card {
  cursor: url("../img/cursor.png"), auto;
  border: 6px solid #6d1cc9;
  border-radius: 0px;
  transition: none;
}

.pokeball-icon {
  width: 80px;
  margin-bottom: 20px;
}

.egg-card:focus + .surprise-text,
.egg-card:active + .surprise-text {
  display: block;
}

#pokemon-container {
  position: relative;
}

.pokemon-sprite {
  width: 200px;
  image-rendering: pixelated;
  margin-bottom: 0.5rem;
  cursor: url("../img/cursor_click.png"), auto;
  animation: spawn 1.3s ease-out forwards;
}

.screen-flash {
  position: fixed;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.flash-active {
  animation: flash 0.25s ease-out;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.shake {
  animation: shake 0.35s ease;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

.mew-effect {
  animation: mewGlow 1.2s ease-out forwards;
}

@keyframes mewGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 182, 255, 0);
  }
  40% {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 182, 255, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 182, 255, 0);
  }
}

/* Animation spawn */

@keyframes spawn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animation flee */

@keyframes flee {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5) translateY(-50px);
    opacity: 0;
    filter: brightness(0.5);
  }
}

.pokemon-flee {
  animation: flee 1s ease-in forwards;
}

/* ============================================================
   WORK SECTION
============================================================ */
.work-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.work-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.work-link:visited {
  color: #6d1cc9;
}

.grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid__item {
  background-color: #0e0e0e;
  padding: 24px;
  border: #6d1cc9 solid 2px;
  -webkit-box-shadow: 0 2px 5px rgba(46, 46, 46, 0.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid__item h2 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #6d1cc9;
}

.grid__item p {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.55;
}

.grid__item a {
  font-weight: bold;
  color: #6d1cc9;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, -webkit-text-decoration 0.3s ease;
  transition: color 0.3s ease, -webkit-text-decoration 0.3s ease;
  -o-transition: color 0.3s ease, text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease,
    -webkit-text-decoration 0.3s ease;
}

.grid__item a:hover {
  transform: translateY(-4px);
  color: #ff00bb;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   MEDIA QUERIES CONSOLIDATE
============================================================ */

/* Small devices <= 500px */
@media (max-width: 500px) {
  .header {
    flex-direction: column;
    padding: 10px;
    width: 100%;
  }
  .navigation-list {
    gap: 20px;
  }

  .navigation-list li a img {
    width: 32px;
    height: 32px;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /*   .work-section h1 {
    font-size: 2px;
  }
  .about-text {
    padding: 0 50px;
  } */
  h1 {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }

  h2 {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }

  p {
    font-size: 16px;
  }
}

/* Medium devices <= 768px */
@media (max-width: 768px) {
  .header {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    padding: 12px 20px;
    border: 3px solid #6d1cc9;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
  }

  .navigation-list {
    display: flex;
    flex-direction: row;
    gap: 28px;
  }

  .navigation-list li a img {
    width: 36px;
    height: 36px;
  }
  .pixel-timeline h1 {
    font-size: 18px;
  }
  .pixel-timeline h2 {
    font-size: 14px;
  }
}

/* ============================================================
   NAVBAR – RETRO GAME UI (DESKTOP + MOBILE)
============================================================ */

.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 14px 28px;
  width: auto;
  max-width: 960px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);

  border: 3px solid #984eec;
  

  box-shadow: 0 0 5px rgb(255, 0, 200), inset 0 0 10px rgba(212, 0, 255, 0.6);

  z-index: 1000;
}

.navigation-list {
  list-style: none;
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.navigation-list li a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.navigation-list li a img {
  width: 32px;
  height: 32px;

  filter: invert(1);
  image-rendering: pixelated;
}

.navigation-list li a:hover,
.navigation-list li a:focus-visible {
  background-color: rgba(109, 28, 201, 0.25);
  transform: translateY(-2px) scale(1.05);

  box-shadow: 0 0 6px rgba(212, 0, 255, 0.8),
    inset 0 0 2px rgba(212, 0, 255, 0.5);
}

.navigation-list li a[aria-current="page"] {
  background-color: rgba(212, 0, 255, 0.35);

  box-shadow: 0 0 10px rgba(212, 0, 255, 1),
    inset 0 0 4px rgba(212, 0, 255, 0.6);
}

.navigation-list li a:active {
  transform: scale(0.95);
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {
  .header {
    top: 16px;
    padding: 12px 20px;
    max-width: 90%;
  }

  .navigation-list {
    gap: 24px;
  }

  .navigation-list li a {
    width: 44px;
    height: 44px;
  }

  .navigation-list li a img {
    width: 28px;
    height: 28px;
  }

  .pixel-timeline-easter-egg {
    font-size: 25px;
  }
}

/* ============================================================
   MICRO INTERACTION – MOBILE TAP FEEDBACK
============================================================ */

.navigation-list li a:active {
  transform: scale(0.95);
  box-shadow: 0 0 8px rgba(212, 0, 255, 0.6),
    inset 0 0 6px rgba(212, 0, 255, 0.6);
}

@media (min-width: 320px) {
  .pixel-timeline-easter-egg {
    font-size: 18px;
  }
}

/* ============================================================
   NAVBAR – MOBILE POLISH
============================================================ */

@media (max-width: 768px) {
  .header {
    top: 16px;
    padding: 12px 20px;
    max-width: 90%;
  }

  .navigation-list {
    gap: 24px;
  }

  .navigation-list li a {
    width: 44px;
    height: 44px;
  }

  .navigation-list li a img {
    width: 28px;
    height: 28px;
  }
}
