:root {
  --primary: #8052ff;
  --dark: #0f0f15;
  --dark-2: #181826;
  --text: #ffffff;
  --muted: #b3b3c6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #0f0f15, #141422);
  color: var(--text);
}

main { padding: 40px; }

/* ===== AUTH PAGE (login/register) ===== */
.auth-page {
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e0e13;
  padding: 20px;
}

.auth-container {
  background: #14141c;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(128,82,255,0.3);
  max-width: 400px;
  width: 100%;
}

.auth-container h1 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
}

.auth-form label {
  display: block;
  color: #ccc;
  margin-bottom: 6px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.auth-form input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(128,82,255,0.4);
  background: #1b1b26;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.auth-form input:focus {
  border-color: #8052ff;
  box-shadow: 0 0 10px rgba(128,82,255,0.5);
}

.auth-form .btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  background: #8052ff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-form .btn:hover {
  background: #9a7cff;
  transform: scale(1.03);
}

.auth-footer {
  color: #ccc;
  text-align: center;
  margin-top: 15px;
}

.auth-footer a {
  color: #8052ff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.auth-footer a:hover {
  color: #9a7cff;
}

/* ===== HEADER ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  height: 75px;
  padding: 0 40px;

  background: linear-gradient(
    180deg,
    #14141c 0%,
    #0e0e13 100%
  );

  border-bottom: 1px solid rgba(128,82,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 46px;
}

/* ===== NAV ===== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.header-nav a:hover {
  color: #8052ff;
}

/* underline */
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8052ff;
  transition: width 0.25s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ===== SEARCH BAR ===== */
.nav-search input {
  background: #1b1b26;
  border: 1px solid rgba(128,82,255,0.4);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  width: 220px;
  outline: none;
  transition: all 0.3s ease;
}

.nav-search input::placeholder {
  color: #aaa;
}

.nav-search input:focus {
  border-color: #8052ff;
  box-shadow: 0 0 10px rgba(128,82,255,0.5);
}

/* ===== SUGGESTIONS DE RECHERCHE STYLE CARD ===== */
#search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#search-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 25px;
  border: 1px solid rgba(128,82,255,0.4);
  background: #1b1b26;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

#search-input::placeholder {
  color: #aaa;
}

#search-input:focus {
  border-color: #8052ff;
  box-shadow: 0 0 12px rgba(128,82,255,0.5);
}

/* Liste des suggestions */
#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #14141c;
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 10px 25px rgba(128,82,255,0.3);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.25s ease;
}

/* Afficher la liste */
#search-container.active #suggestions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items de suggestion en style "card" */
#suggestions li {
  list-style: none;
  margin: 0;
}

#suggestions li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  background: #1b1b26;
  color: #fff;
  border-bottom: 1px solid rgba(128,82,255,0.2);
  border-radius: 8px;
  transition: all 0.2s ease;
}

#suggestions li a img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

#suggestions li a:hover {
  background: #8052ff;
  color: #fff;
  transform: scale(1.02);
}

/* Scrollbar */
#suggestions::-webkit-scrollbar {
  width: 6px;
}

#suggestions::-webkit-scrollbar-track {
  background: #14141c;
}

#suggestions::-webkit-scrollbar-thumb {
  background: #8052ff;
  border-radius: 10px;
}

#suggestions::-webkit-scrollbar-thumb:hover {
  background: #9a7cff;
}

#suggestions {
  scrollbar-width: thin;
  scrollbar-color: #8052ff #14141c;
}

/* ===== OFFSET CONTENT ===== */
main {
  padding-top: 90px; /* évite que le header cache le contenu */
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

/* Légère animation d’apparition des cards */
.items-grid .item-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.items-grid .item-card:nth-child(1) { animation-delay: 0s; }
.items-grid .item-card:nth-child(2) { animation-delay: 0.1s; }
.items-grid .item-card:nth-child(3) { animation-delay: 0.2s; }
/* ajoute pour les suivants si besoin */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page / Détail */
.item-detail {
  padding: 50px;
  background: #0e0e13;
  min-height: calc(100vh - 90px);
}

.detail-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.detail-container img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(128,82,255,0.4);
}

.detail-info {
  max-width: 600px;
}

.detail-info h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.detail-info p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 25px;
}

.detail-info .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--primary);
  padding: 8px 14px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  border: none;
}

.secondary {
  background: #2a2a3d;
}

/* DETAIL */
.detail {
  max-width: 900px;
  margin: auto;
}

.detail img {
  width: 100%;
  border-radius: 16px;
  margin: 20px 0;
}

/* VIDEO */
.video {
  max-width: 900px;
  margin: 40px auto;
  aspect-ratio: 16/9;
}

.video iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.video-section {
  margin: 60px auto;
  max-width: 900px;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(128,82,255,0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FORMS */
.form-container {
  max-width: 400px;
  margin: auto;
}

form input, textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-search input {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    gap: 16px;
  }

  .logo img {
    height: 38px;
  }
}

@media (max-width: 768px) {
  .detail-container {
    flex-direction: column;
    gap: 20px;
  }

  .detail-info h1 {
    font-size: 1.6rem;
  }

  .detail-info p {
    font-size: 0.95rem;
  }
}

/* pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a {
  margin: 0 5px;
  padding: 8px 12px;
  background: var(--dark-2);
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

.pagination a.active {
  background: var(--primary);
}

/* ===== SCROLLBAR CUSTOM ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0e0e13;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #8052ff,
    #5a36c9
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9a7cff;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #8052ff #0e0e13;
}

/* ===== ACCOUNT PAGE ===== */
.account-page {
  min-height: calc(100vh - 90px);
  padding: 30px 40px;
  background: #0e0e13;
}

/* Section informations utilisateur */
.user-info {
  background: #14141c;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(128,82,255,0.2);
  margin-bottom: 40px;
  color: #fff;
}

.user-info h1 {
  margin-bottom: 10px;
}

.user-info p {
  margin-bottom: 6px;
  color: #ccc;
}

/* Grille de cards identique à jeux/software */
.items-section {
  margin-bottom: 50px;
  padding: 40px;
  background: #0e0e13;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.item-card {
  background: #14141c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(128,82,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(128,82,255,0.5);
}

.item-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.item-info {
  padding: 16px;
}

.item-info h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.item-info p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #8052ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #9a7cff;
  transform: scale(1.05);
}

.section-title {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* ===== BOUTON FAVORIS ===== */
.btn-fav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  background: #1b1b26;
  color: #fff;
  border: 1px solid #8052ff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-fav:hover {
  background: #8052ff;
  transform: scale(1.05);
}

.btn-fav.added {
  background: #8052ff;
  color: #fff;
}

.btn-fav:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== BURGER MENU ===== */
#burger-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

input, textarea, select {
  font-size: 16px;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

/* ===== LEGAL BUTTONS ===== */
.legal-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;

  background: #1b1b26;
  color: #fff;
  text-decoration: none;

  border: 1px solid rgba(128,82,255,0.5);
  border-radius: 999px;

  transition: all 0.25s ease;
}

.legal-links a:hover {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(128,82,255,0.5);
  transform: translateY(-2px);
}

.legal-links a:active {
  transform: scale(0.96);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 900px;
  margin: auto;
  padding: 50px 25px;
  line-height: 1.8;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.3rem;
}

.legal-page p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 15px 0 20px;
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 8px;
  color: #bbb;
}

/* Highlight box (email DMCA) */
.legal-page .highlight {
  background: #14141c;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 5px 20px rgba(128,82,255,0.2);
}

/* Small separator */
.legal-divider {
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 30px auto;
  border-radius: 2px;
}

/* =========================
   BARRE DES FILTRES
========================= */
.filters-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* =========================
   FILTER CONTAINER
========================= */
.filter {
  position: relative;
}

/* Supprime la flèche native */
.filter summary {
  list-style: none;
}
.filter summary::-webkit-details-marker {
  display: none;
}

/* =========================
   BOUTON FILTRE
========================= */
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #14141c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;

  border: 1px solid rgba(128, 82, 255, 0.35);
  cursor: pointer;

  transition: all 0.25s ease;
}

/* Hover */
.filter-btn:hover {
  background: #1b1b26;
  border-color: #8052ff;
}

/* =========================
   FLÈCHE
========================= */
.filter-arrow {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

/* Rotation flèche quand ouvert */
.filter[open] .filter-arrow {
  transform: rotate(180deg);
}

/* =========================
   DROPDOWN
========================= */
.filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  min-width: 200px;
  padding: 8px;

  background: #0f0f15;
  border-radius: 14px;
  border: 1px solid rgba(128, 82, 255, 0.25);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  z-index: 1000;

  display: none;
}

/* Ouverture au clic */
.filter[open] .filter-dropdown {
  display: block;
  animation: dropdownFade 0.2s ease;
}

/* =========================
   ITEMS
========================= */
.filter-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;

  color: #ccc;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* Hover */
.filter-dropdown a:hover {
  background: #8052ff;
  color: #fff;
}

/* Actif */
.filter-dropdown a.active {
  background: rgba(128, 82, 255, 0.25);
  color: #fff;
  font-weight: 600;
}

/* =========================
   ANIMATION
========================= */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   AVIS
========================= */
.site-reviews {
  max-width: 900px;
  margin: 60px auto;
}

.review-card {
  background: #14141c;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(128,82,255,0.25);
}

.review-card strong {
  color: white;
}

.review-card .stars {
  color: #8052ff;
  margin: 6px 0;
}

.review-form {
  max-width: 600px;
  margin: 40px auto;
}

.review-form textarea,
.review-form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  background: #1b1b26;
  border: 1px solid rgba(128,82,255,0.4);
  color: white;
}

/* =========================
   HISTORY
========================= */

.history {
  margin-top: 50px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
}

.history-card {
  background: #14141c;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  color: white;
  transition: transform .2s;
}

.history-card:hover {
  transform: scale(1.05);
}

.history-card img {
  width: 100%;
  border-radius: 8px;
}

/* =========================
   NOTIFICATIONS
========================= */
/* Bouton notifications mobile */
.notif-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1b1b26;
  color: #fff;
  border: 1px solid #8052ff;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.9rem;
}

.notif-btn .notif-count {
  background: var(--primary);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
}

/* Container du bouton notifications */
.mobile-notif-container {
  position: relative; /* le point de référence pour la liste */
  display: inline-block;
}

/* Liste des notifications */
.notif-list-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #14141c;
  border: 1px solid rgba(128,82,255,0.3);
  border-radius: 8px;
  padding: 8px 0;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%);
  width: 220px;
  z-index: 1001;
  box-shadow: 0 8px 20px rgba(128,82,255,0.3);
}

.notif-list-mobile li {
  padding: 8px 12px;
  color: #fff;
  font-size: 0.9rem;
}

.notif-list-mobile li.unread {
  background: rgba(128,82,255,0.2);
}

/* Affichage au clic */
.notif-list-mobile.active {
  display: flex;
}

/* LAZY */ 
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.lazy-loaded {
  opacity: 1;
}

/* DESKTOP FIRST */
@media (max-width: 900px) {

  main {
    padding: 30px;
  }

  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-container img {
    width: 100%;
    max-width: 360px;
  }

  .nav-search input {
    width: 180px;
  }
}

/* TABLET */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #0e0e13;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  #burger-toggle:checked ~ .header-nav {
    transform: translateY(0);
  }

  /* animation */
  #burger-toggle:checked + .burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #burger-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }

  #burger-toggle:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-search {
    position: sticky;
    top: 75px;
    z-index: 999;
    background: #0e0e13;
    padding: 10px;
  }

  .nav-search input {
    width: 100%;
  }

  .btn,
  .btn-fav {
    min-height: 44px;
  }

  .filters-bar {
    gap: 10px;
  }

  .filter-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .filter-dropdown {
    min-width: 170px;
  }

  .notif-btn-mobile,
  .notif-list-mobile {
    display: none;
  }

  #search-container {
    max-width: 100%;
  }

  #search-input {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  #suggestions li a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  #suggestions li a img {
    width: 32px;
    height: 32px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  /* ===== GLOBAL ===== */
  main {
    padding: 20px;
  }

  h1 {
    font-size: 1.6rem;
  }

  /* ===== HEADER ===== */
  .main-header {
    flex-direction: column;
    height: auto;
    padding: 10px 14px;
    gap: 10px;
  }

  .header-left {
    justify-content: center;
    width: 100%;
  }

  .logo img {
    height: 36px;
  }

  /* NAV */
  .header-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-left: 0;
  }

  .header-nav a {
    font-size: 0.95rem;
  }

  /* SEARCH */
  .nav-search {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-search input {
    width: 100%;
    max-width: 280px;
  }

  /* ===== GRID ===== */
  .items-section {
    padding: 20px 10px;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .item-card img {
    height: 180px;
  }

  /* ===== DETAIL PAGE ===== */
  .item-detail {
    padding: 20px;
  }

  .detail-container {
    flex-direction: column;
    gap: 25px;
  }

  .detail-container img {
    width: 100%;
  }

  .detail-info h1 {
    font-size: 1.5rem;
  }

  .detail-info p {
    font-size: 0.95rem;
  }

  /* ===== VIDEO ===== */
  .video-section {
    margin: 30px 10px;
  }

  /* ===== AUTH ===== */
  .auth-container {
    padding: 30px 20px;
  }

  .auth-container h1 {
    font-size: 1.6rem;
  }

  /* ===== ACCOUNT ===== */
  .account-page {
    padding: 20px 15px;
  }

  .user-info {
    padding: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  /* ===== BUTTONS ===== */
  .btn,
  .btn-fav {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* Pagination */
  .pagination a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

    .legal-page {
    padding: 30px 18px;
  }

  .legal-page h1 {
    font-size: 1.6rem;
  }

  .legal-page h2 {
    font-size: 1.15rem;
  }

  .legal-links a {
    width: 100%;
    max-width: 260px;
  }
}

@media (hover: none) {
  .btn:hover,
  .item-card:hover,
  .btn-fav:hover {
    transform: none;
  }
}