@font-face {
  font-family: "space grotesk";
  src: url("../CSS/fonts/spacegrotesk-variablefont_wght-webfont.woff2") format("woff2"), url("../CSS/fonts/spacegrotesk-variablefont_wght-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "automaton";
  src: url("../CSS/fonts/sf_automaton-webfont.woff2") format("woff2"), url("../CSS/fonts/sf_automaton-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "roboto";
  src: url("../CSS/fonts/roboto-variablefont_wdthwght-webfont.woff2") format("woff2"), url("../CSS/fonts/roboto-variablefont_wdthwght-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  background-color: #EEE8D4;
}

body {
  background-color: #EEE8D4;
  color: #1A1A1A;
  font-family: "roboto", sans-serif;
}

.header {
  background-color: #403D3C;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header-content {
    padding: 1rem 2rem;
    justify-content: space-between;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
@media (min-width: 768px) {
  .header-actions {
    margin-left: 0;
  }
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav ul li a {
  color: #ffffff;
  font-family: "roboto", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav ul li a:hover {
  color: #FFB702;
}

.btn-user-toggle {
  background: transparent;
  border: 2px solid #ffffff;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.btn-user-toggle img {
  display: block;
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.user-menu {
  position: relative;
  width: 38px;
  height: 38px;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #403D3C;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  min-width: 160px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.user-dropdown[hidden] {
  display: none;
}

.user-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.user-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.user-dropdown-logout {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  color: #eb5937;
}

.user-dropdown-logout:hover {
  color: #eb5937;
}

.btn-search-toggle {
  background: transparent;
  border: 2px solid #ffffff;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .btn-search-toggle {
    display: none;
  }
}

.btn-search-toggle img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.search-form {
  display: none;
}
@media (min-width: 768px) {
  .search-form {
    display: flex;
    flex: 1;
    max-width: 360px;
  }
}

.search-form input[type=text],
.search-form input[name=search] {
  flex: 1;
  background: #2e2c20;
  border: 2px solid #000000;
  border-right: none;
  padding: 0.625rem 1rem;
  font-family: "space grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8C4BC;
  outline: none;
}

.search-form button[type=submit] {
  background: #60a5fa;
  border: 2px solid #000000;
  padding: 0 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000000;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.search-form button[type=submit]:active {
  background-color: #2746ce;
  color: #ffffff;
}

.search-form.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #403D3C;
  border: 2px solid #1A1A1A;
  padding: 0.75rem 1.5rem;
}

.main-contener {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .main-contener {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
  }
}

.welcome {
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .welcome {
    padding: 0 0 3rem;
  }
}

.welcome h1 {
  font-family: "space grotesk", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #1A1A1A;
  background-color: #FFB702;
  border: 4px solid #1A1A1A;
  box-shadow: 8px 8px 0 #1A1A1A;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .welcome h1 {
    font-size: 3rem;
    padding: 3.25rem;
  }
}

.welcome p {
  font-family: "roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .welcome p {
    font-size: 1.125rem;
  }
}

.hightlights {
  padding: 1.5rem 0 2rem;
}

.games-hight-blue h2 {
  border-bottom: 4px solid #2E4EDC;
  display: inline-block;
}
@media (min-width: 768px) {
  .games-hight-blue h2 {
    display: block;
  }
}

.games-hight-brown h2 {
  border-bottom: 4px solid #7d5800;
  display: inline-block;
}
@media (min-width: 768px) {
  .games-hight-brown h2 {
    display: block;
  }
}

.cards {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 0;
    overflow: visible;
  }
}

.cards::-webkit-scrollbar {
  display: none;
}

.cards a {
  flex-shrink: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  background: #C8C4BC;
  border: 4px solid #1e1c10;
  box-shadow: 4px 4px 0 #1e1c10;
  padding: 16px;
  text-decoration: none;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .cards a {
    width: auto;
  }
}

.mini-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 768px) {
  .mini-card {
    width: 100%;
  }
}

.mini-card header {
  background-color: #e0dac6;
  border: 2px solid #1e1c10;
  box-shadow: none;
  padding: 2px;
  aspect-ratio: 3/4;
}

.mini-card header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mini-card .content p {
  font-family: "roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #1e1c10;
  line-height: 1.55;
  margin: 12px 0 0;
  text-decoration: none;
}

.mini-card footer {
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #7d5800;
  line-height: 1.33;
  text-decoration: none;
}

#resultats.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: visible;
  padding: 0;
}
@media (min-width: 768px) {
  #resultats.cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

#resultats.cards a {
  width: auto;
}

.search-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 1.5rem 0 2rem;
}

.search-keyword {
  font-family: "space grotesk", sans-serif;
  font-size: 1.25rem;
}

.result-para {
  font-family: "roboto", sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: #5B4103;
}

.search-title {
  font-family: "space grotesk", sans-serif;
  font-weight: bolder;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #2E4EDC;
  display: inline-block;
  margin: 0;
  box-shadow: 0 10px 0 #1A1A1A;
  padding-bottom: 6px;
}

.profil-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.5rem 0 1.5rem;
  border-left: 8px solid #2E4EDC;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.profil-title {
  font-family: "space grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0;
}

.profil-subtitle {
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5B4103;
  margin: 0;
}

.form-card {
  background: #ffffff;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.form-group input,
.form-group textarea {
  border: 2px solid #1A1A1A;
  padding: 0.625rem 0.875rem;
  font-family: "space grotesk", sans-serif;
  font-size: 0.875rem;
  background: #EEE8D4;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2E4EDC;
}

.form-message {
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #1A1A1A;
  padding: 0.625rem 1rem;
  margin-bottom: 1.25rem;
}

.form-helper {
  font-family: "roboto", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-update {
  background: #FFB702;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.75rem 1.5rem;
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 0.5rem;
}
.btn-update:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.tabs-card {
  margin-bottom: 2rem;
}

.tabs-nav {
  display: flex;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: "roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid #1A1A1A;
  border-bottom: none;
  color: #1A1A1A;
}

.tab-btn.active {
  background: #2E4EDC;
  color: #ffffff;
}

.tab-content {
  display: none;
  padding: 1.5rem;
  border: 2px solid #1A1A1A;
  background: #ffffff;
}

.tab-content.active {
  display: block;
}

.profil-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: visible;
  padding: 0;
}
@media (min-width: 768px) {
  .profil-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.profil-cards a {
  width: auto;
}

.fiche-hero {
  display: flex;
  flex-direction: column;
  background: #EEE8D4;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .fiche-hero {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .fiche-cover {
    flex-shrink: 0;
    padding: 1rem;
  }
}
.fiche-cover img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .fiche-cover img {
    width: 280px;
    height: 100%;
  }
}

.fiche-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fiche-titre {
  font-family: "space grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .fiche-titre {
    font-size: 2.5rem;
  }
}

.fiche-separator {
  border: none;
  border-top: 2px solid #1A1A1A;
  margin: 0;
}

.fiche-meta-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fiche-label {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(30, 28, 16, 0.6);
}

.fiche-value {
  font-family: "space grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
}

.fiche-plateformes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.badge-plateforme {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #FFB702;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
  padding: 2px 8px;
}

.fiche-stars {
  display: flex;
  gap: 2px;
  color: #FFB702;
  font-size: 1.25rem;
}

.fiche-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn-collection {
  width: 100%;
  background: #2E4EDC;
  color: #ffffff;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.875rem;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.btn-collection:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.btn-wishlist {
  width: 100%;
  background: #eb5937;
  color: #ffffff;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.875rem;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.btn-wishlist:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.lien-admin {
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  color: #5B4103;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stars-input {
  display: flex;
  gap: 4px;
}

.star-input {
  font-size: 2rem;
  color: rgba(30, 28, 16, 0.6);
  cursor: pointer;
}

.star-input.active,
.star-input.hover {
  color: #FFB702;
}

.notation {
  margin-bottom: 2rem;
}

.notation-card {
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #C8C4BC;
  padding: 1rem 1.5rem;
  background: #403D3C;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .notation-card {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.notation-hint {
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.notation-card .star-input {
  color: rgba(255, 255, 255, 0.3);
}

.notation-card .star-input.active,
.notation-card .star-input.hover {
  color: #FFB702;
}

.section-badge {
  display: block;
  background: #1A1A1A;
  color: #ffffff;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.fiche-resume {
  margin-bottom: 2rem;
}

.fiche-resume-content {
  border: 2px solid #1A1A1A;
  padding: 1.5rem;
  background: #ffffff;
  font-family: "roboto", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1A1A1A;
}

.fiche-commentaires {
  margin-bottom: 2rem;
}

.commentaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .commentaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.commentaire-card {
  background: #ffffff;
  border: 2px solid #1A1A1A;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.commentaire-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.commentaire-avatar {
  width: 40px;
  height: 40px;
  border: 2px solid #1A1A1A;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.commentaire-pseudo {
  font-family: "space grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0;
}

.commentaire-date {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(30, 28, 16, 0.6);
}

.commentaire-texte {
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1A1A1A;
  font-style: italic;
  margin: 0;
}

.commentaire-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.commentaire-textarea {
  border: 2px solid #1A1A1A;
  padding: 0.75rem;
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  background: #ffffff;
  resize: vertical;
  min-height: 80px;
  outline: none;
}

.btn-publier {
  align-self: flex-end;
  background: #2E4EDC;
  color: #ffffff;
  border: 2px solid #1A1A1A;
  padding: 0.625rem 1.5rem;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.btn-publier:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.btn-supprimer-comm {
  align-self: flex-end;
  background: #FFB702;
  color: #5B4103;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.6rem 1rem;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.btn-supprimer-comm:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.commentaires-vide {
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  color: rgba(30, 28, 16, 0.6);
}

.auth-screen {
  max-width: 480px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: #403D3C;
  border: 2px solid #FFB702;
  clip-path: polygon(0px 10px, 10px 10px, 10px 0px, calc(100% - 10px) 0px, calc(100% - 10px) 10px, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 10px calc(100% - 10px), 0px calc(100% - 10px));
  filter: drop-shadow(6px 6px 0 #1A1A1A);
}

.auth-screen-title {
  font-family: "automaton", sans-serif;
  font-size: 1.25rem;
  color: #FFB702;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.auth-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.auth-menu-btn {
  background: none;
  border: none;
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.auth-menu-btn .auth-arrow {
  display: none;
  color: #FFB702;
  margin-right: 0.5rem;
}

.auth-menu-btn.active {
  color: #FFB702;
}

.auth-menu-btn.active .auth-arrow {
  color: #FFB702;
  display: inline;
}

.auth-form-panel {
  display: none;
}

.auth-form-panel.active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-label {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.auth-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.auth-input {
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1rem;
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.auth-input:focus {
  border-color: #FFB702;
}

.btn-auth {
  width: 100%;
  background: #FFB702;
  color: #1A1A1A;
  border: 2px solid #FFB702;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.875rem;
  font-family: "roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 0.5rem;
}
.btn-auth:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.auth-message {
  font-family: "roboto", sans-serif;
  font-size: 0.875rem;
  color: #eb5937;
  border: 2px solid #eb5937;
  padding: 0.625rem 1rem;
  margin-bottom: 1rem;
}

.footer {
  background-color: #403D3C;
  border-top: 2px solid #1A1A1A;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    gap: 0;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: "automaton", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #FFB702;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

.erorr-404 {
  text-align: center;
}

.error-404-code {
  font-size: 5rem;
  font-family: "automaton", sans-serif;
  color: #eb5937;
}

.error-404-title {
  font-family: "automaton", sans-serif;
  font-size: 2rem;
  color: #1A1A1A;
}

.error-404-msg {
  margin-bottom: 2rem;
}

.btn-404 {
  display: inline-block;
  background: #FFB702;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-404:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}/*# sourceMappingURL=style.css.map */