/*-------------------------------------------------------*/
/* GTV8 Table of Content - © Jivé 2021

1.Global variables
2.Colors
3.Menus
4.Blocks & Links */

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* 1.Global variables
/*-------------------------------------------------------*/

:root {
   --gametrip-orange: #FF9002;
   --gametrip-bleu: #55B8FF;
   --gametrip-greige: #5A554F;
   --gametrip-greige-rgb: 35,33,31;
   --gametrip-gris: #404040;
  --facebook: #4267B2;
  --twitter: #1d9bf0;
  --youtube: #e62117;
  --instagram: #C32AA3;
  --steam: #6f6f6f;
  --linkedin: #007BB5;
  --reddit: #ff5700;
  --whatsapp: #25D366;
  --google: #db4437;
  --twitch: #6441a4;
  --nintendo: #e60012;
  --playstation: #b4b4b4;
  --xbox: #52b043;
  --discord: #5865f2;
}

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* 2.Colors
/*-------------------------------------------------------*/

.bg-orangebleu {
  --bs-bg-opacity: 1;
  background-color: var(--gametrip-bleu) !important;
}
.bg-orange {
  --bs-bg-opacity: 1;
  background-color: var(--gametrip-orange) !important;
}
.bg-greige {
  --bs-bg-opacity: 1;
  background-color: var(--gametrip-greige) !important;
}
.bg-gris {
  --bs-bg-opacity: 1;
  background-color: var(--gametrip-gris) !important;
}

.bs-dark {
  background:var(--bs-dark);
}

.text-bleu {
   color: var(--gametrip-bleu) !important;
}
.text-orange {
   color: var(--gametrip-orange) !important;
}
.text-greige {
   color: var(--gametrip-greige) !important;
}

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* 3.Menus
/*-------------------------------------------------------*/

/*-------------------------------------------------------*/
/* Topbar, Social Bar & Navbar
/*-------------------------------------------------------*/

@media (max-width: 991px)
{
  .search-bar {
    display: none;
    border: 1px solid red;
  }
  .topbar{
    display: none !important;
  }
}
.text-facebook {
  color: var(--facebook) !important;
}
.text-whatsapp2 {
  color: var(--whatsapp) !important;
}
.text-reddit2 {
  color: var(--reddit) !important;
}
.text-twitter {
  color: var(--twitter) !important;
}
.text-rss {
  color: #ee802f !important;
}
.text-twitch {
  color: var(--twitch) !important;
}
.text-spotify {
  color: #81b71a !important;
}
.text-youtube {
  color: var(--youtube) !important;
}
.text-instagram {
  color: var(--instagram) !important;
}
.text-nintendo {
  color: var(--nintendo) !important;
}
.text-playstation {
  color: var(--playstation) !important;
}
.text-discord {
  color: var(--discord) !important;
}
.text-xbox {
  color: var(--xbox) !important;
}
.text-steam {
  color: var(--steam) !important;
}
.social-bar {
  font-size: 14px !important;
}
.topbar {
  top: 0 !important;
    position: absolute !important;
    display: inline-block;
    width: 100%;
    height: 30px !important;
}
.topbar>.container>ul {
  height: 30px !important;
    line-height: 19px;
    font-size: 12px;
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
#link-srch:hover {
  animation: shake 0.8s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gametrip-gris);;
      border-radius: 5px;
    padding: 20px 22px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

#back-to-top a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

#back-to-top:hover {
  background: var(--gametrip-bleu);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}


/*-------------------------------------------------------*/
/* Smart Scroll
/*-------------------------------------------------------*/

.smart-scroll {
  position: fixed;
  top: 30px;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (max-width: 991px)
{
  .smart-scroll {
    top: 0;
  }
}
.scrolled-down {
   transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up {
   transform:translateY(0); transition: all 0.3s ease-in-out; 
}
.adjust-scroll {
  top: 0; transition: all 0.3s ease-in-out;
}
.navbar-toggler:hover > i.fa-bars {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out; 
}
.navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

/*-------------------------------------------------------*/
/* Megamenu
/*-------------------------------------------------------*/

.navbar .megamenu { 
  padding: 1rem; 
}
@media all and (min-width: 992px) 
{
  .navbar .has-megamenu { position:static!important; }
  .navbar .megamenu {
    left:0; right:0; 
    width:100%; 
    margin-top:0; 
    background-color: var(--gametrip-gris);
    border: none;
    border-radius: 0 !important;
    transition: all 0.3s;
  }
} 
.navbar .megamenu a { color:var(--bs-body-color); text-decoration: none; }
.navbar .megamenu a:hover { text-decoration: underline; }
.navbar .megamenu li { display: inline-flex; margin-right: 10px; text-align: center; }
@media(max-width: 991px)
{
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top:10px;
  }
}

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* 4.Blocks & Links
/*-------------------------------------------------------*/

/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/

a {
  text-decoration: none;
}

input.nav-link {
    color: black !important;
}

footer a {
  color:var(--gametrip-orange);
}
footer a:hover{
  color:var(--gametrip-orange);
  text-decoration: underline;
}
footer ul.nav-item li {
    border: 0.0625rem solid var(--gametrip-gris);
    color: var(--gametrip-gris);
    margin: 0.25em;
    display: inline-block;
    font-size: 13px;
    padding: 6px 12px 5px;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    background: black;
}

footer ul.nav-item li:hover {
  background: #181717;
}
input[type="checkbox"] {
    width: 100%;
}
footer ul.nav-item li a {
color: var(--gametrip-bleu);
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}
.form-control:disabled, .form-control[readonly] {
    opacity: 0.2;
}
.form-check-input[type=checkbox] {
display: inline-block;
float: left;
clear: both;
width: 1rem;
margin-right: 10px;
margin-top: 4px;
}

footer ul.nav-item li a:hover {
color: white;
text-decoration: none;
}

div.mini-logo-rs div
{
  display: inline-block;
    padding: 0 20px 0 18px;
    height: 47px;
    margin-right: 10px;
    background: #252525;
    line-height: 48px;
}

.universe-image {
 float: left; 
 margin-right: 5px;
width: 50px
}

/* Conteneur commun */
.alert {
    display: flex;
    align-items: center;
    padding: 1rem 1rem 1rem 7rem; /* espace pour icône */
    margin-bottom: 2rem;
    margin-top: 2rem;
    border-radius: 5px;
    font-family: var(--bs-font-serif), sans-serif;
    font-size: 1.1em;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #f0f0f0; /* fallback */
}

/* Icône en cercle */
.alert::before {
    content: '';
    position: absolute;
    left: 1rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Hover pour effet léger */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Danger */
.alert-danger {
    color: white;
    background: #4d1313;
    border-color:#61111a;
}
.alert-danger::before {
    background-image: url('https://www.gametrip.net/img/icones/error.png');
    background-color: #4d1313;
}

/* Succès */
.alert-success {
    color: #0f5132;
    background: #d6f5e5;
    border-color:#268317;
}
.alert-success::before {
    background-image: url('https://www.gametrip.net/img/icones/success.png');
    background-color: #d6f5e5;
}

/* Texte de l'alerte */
.alert span {
    flex: 1;
}
/*-------------------------------------------------------*/
/* Social Medias
/*-------------------------------------------------------*/

.social-media ul li {
    color: #ffffff;
    list-style: none;
    height: 39px;
    line-height: 40px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 15px;
    width: 100%;
}

.flw-fb{
    background: var(--facebook);
}
.flw-tw {
    background: var(--twitter);
}
.flw-yt {
    background: var(--youtube);
}
.flw-tv {
    background: var(--twitch);
}
.flw-ig {
    background: var(--instagram);
}
.social-media a {
    color: white;
}
.social-media a:hover {
  font-weight: 500;
  color: white;
}

.fl-margin-fb {
    bottom: 5px;
    position: relative;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

.tw-margin-fb {
    bottom: -5px;
  position: relative;
  right: 10px;
}

.yt-margin-fb {
    bottom: -6px;
  position: relative;
  right: 6px;
}

.social-media ul li:hover .sm-icon {
    background: #40c4ff;
}

.social-media ul li .sm-icon {
    display: inline-block;
    padding: 0 20px 0 18px;
    height: 39px;
    margin-right: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
        background: #252525;    
        margin-left: -2px;
            width: 53px;
}

.social-media ul li:hover .sm-i-fb, .sm-i-fb:hover {
    background: #3b5998 !important;
}
.social-media ul li:hover .sm-i-tw, .sm-i-tw:hover {
    background: #26a7de !important;
}
.social-media ul li:hover .sm-i-yt, .sm-i-yt:hover {
    background: #c4302b !important;
}
.social-media ul li:hover .sm-i-tv, .sm-i-tv:hover {
    background: #502c91 !important;
}
.social-media ul li:hover .sm-i-ig, .sm-i-ig:hover {
    background: #9f2485 !important;
}

.social-media ul li span {
    display: inline-block;
}

.social-media ul li .follow {
    display: inline-block;
    float: right;
}

/*-------------------------------------------------------*/
/* Images
/*-------------------------------------------------------*/
img.hover-img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
img.hover-img:hover {
  opacity: .8;
  cursor: pointer;
}
div.tint-img {
  background: var(--gametrip-bleu);
}
.img-fluid {
    max-width: calc(100% + 1px);
}

/*-------------------------------------------------------*/
/* Homepage
/*-------------------------------------------------------*/
    .link-cta-home{
        float: right;
    text-transform: uppercase;
    padding-left: 8px;
    color: var(--gametrip-bleu);
    font-size: small;
    }
    .link-cta-home:before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0a0 ";
  padding-right: 3px;
    }
    .link-cta-home:hover{
      color:white;
    }
img.mini-img-home {
  width: 100%;
}
.info-topnews {
    top: -28px;
    position: relative;
}
.info-topnews>h2 a {
  text-transform: uppercase; font-family: var(--bs-font-serif); color: var(--gametrip-greige);
    -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.info-topnews a:hover{
  color: var(--gametrip-gris);
}


.info-topnews>h4 {
text-transform: uppercase;
    font-size: 1em ;
    color: inherit ;
  }
.card-dark {
background-color:#191d20;
}

  .info-topnews p {
    font-size:0.9em;
  }
  h3.card-title span {
    font-weight: 300;
    color:var(--gametrip-orange);
  }
h3.card-title {
      font-family: var(--bs-font-serif);
    color: var(--gametrip-greige);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4em;
}

    .uptitle{
        text-transform: uppercase;
        font-weight: bold;
            background: var(--gametrip-orange);
    padding: 2px 10px;
    display: inline-flex;
    }
    #deuz .uptitle{
      background: none;
      padding: 0;
        font-weight: 500;
    font-size: 0.9em;
        width: 70%;
    white-space: nowrap;
    }
    .col-news-home span.deuz-header {
      width: 100%;
display: block;
        font-size:22px;     color: white; font-family: var(--bs-font-sans-serif);
    font-weight: 700;   border-bottom: 1px solid var(--gametrip-greige);
    margin-top: -10px;
    margin-bottom: 10px;
    }
    .test {
        float: left;
    width: 75px;
    height: auto;
    margin-right: 15px;
    }
    .test2 {
        border-bottom: 1px solid var(--gametrip-greige);
        clear: both;
        height: 83px;
    }
    .col-news-home h4 {
        font-size:.9em;
        color: white;
        text-transform: uppercase;
    }
    .col-news-home h2{
        font-size:1em;
        font-family: var(--bs-font-sans-serif);
        color: var(--gametrip-orange);
        text-transform: uppercase;
    }
    .col-news-home h2:hover{
        text-decoration: underline;
    }
h2.universe-title{
    display: inline-block;
    font-size: 1.7em;
}
h2.main-title {
      background: white;
    padding: 2px 10px;
    font-weight: 600;
}
h2.main-title span {
  font-weight: 300;
  color:var(--gametrip-greige);
}

/*
PAGINATION
*/
.pagination-container {
display: flex;
  align-items: center;
}
.pagination {
  display: inline-flex;
    position: relative;
    margin:0 auto;
}
.page-link {
  font-family: var(--bs-font-sans-serif);
  color: var(--gametrip-bleu);
    background-color: transparent;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    line-height: 29px;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease 0s;
}

.page-item.active .page-link {
  background-color: var(--gametrip-bleu);
  border:var(--gametrip-bleu);
}
.page-item.disabled .page-link{
  background-color:transparent; 
  color:var(--gametrip-greige);
}
.page-link:hover{
  background-color: var(--gametrip-gris);
  color:white;
}

/*-------------------------------------------------------*/
/* Vidéos
/*-------------------------------------------------------*/

/* Style du bloc descriptif */
.cat-description {
    border: 2px solid #4a4c4f;
    background-color: var(--gametrip-gris);
    padding: 5px 25px;
    margin: 30px;
    border-radius: 108px;
    font-size: 0.9em;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.cat-description p {
    margin: 0;
}

/*-------------------------------------------------------*/
/* Page detail
/*-------------------------------------------------------*/ 

.article-body {
    font-weight: 400;
    color: #d1d0d0;
    font-size: 1.2em;
    font-family: var(--bs-font-serif);
    letter-spacing: 0.5px;
    line-height: 1.5em;
    overflow: auto;
}

.article-image-teaser {
    border:1px solid var(--gametrip-bleu);
    border-radius: 5px;
}
/* Desktop large 
@media (max-width: 1400px) {
  .article-body {
    column-count: 3;
    column-gap: 30px;
  }
}

/* Desktop standard / tablette landscape 
@media (max-width: 991px) {
  .article-body {
    column-count: 1;
    column-gap: 0;
  }
}
*/

.article-body a {
    text-decoration: none;
    background-position-y: -0%;
    transition: background 200ms ease;
    background-size: auto 200%;
    color: var(--gametrip-bleu);
}

/* Fiche (F) – bleu gametrip, accentué (gras) */
.link-fiche {
    color: var(--gametrip-bleu) !important;
    font-weight: bold;
    background-image: linear-gradient(#0000 50%, var(--gametrip-bleu) 50%);
}
.link-fiche:hover {
    color: white !important;
    background-position-y: 100%;
}

/* External */
.link-external {
    color: var(--gametrip-bleu) !important;
}
.link-external:hover {
    color: white !important;
}
.link-external::after {
    font-family: "Font Awesome 7 Free"; content: "\f064 "; font-weight: 600; font-size: 14px;
    margin-left: 4px;
}

/* Company (S) – orange gametrip (italique) */
.link-company {
    color: var(--gametrip-orange) !important;
    font-style: italic;
    background-image: linear-gradient(#0000 50%, var(--gametrip-orange) 50%);
}
.link-company:hover {
    color: white !important;
    background-position-y: 100%;
}

/* Group (G) – bleu gametrip, style normal (classique) */
.link-group {
    color: var(--gametrip-bleu) !important;
    background-image: linear-gradient(#0000 50%, var(--gametrip-bleu) 50%);
}
.link-group:hover {
    color: white !important;
    background-position-y: 100%;
}

/* Matos (M) – gris gametrip mais léger (pas gras) */
.link-matos {
    color: var(--gametrip-greige) !important;
    font-weight: normal;
    background-image: linear-gradient(#0000 50%, var(--gametrip-greige) 50%);
}
.link-matos:hover {
    color: white !important;
    background-position-y: 100%;
}

/* Lexique (L) – vert historique (ancien site), en italique */
.link-lexical {
    color: #197e14 !important;
    font-style: italic;
    background-image: linear-gradient(#0000 50%, #197e14 50%);
}
.link-lexical:hover {
    color: white !important;
    background-position-y: 100%;
}

.article-intro,.article-conclusion,.article-compa {
    font-weight: 800;
    color: var(--gametrip-orange);
    font-size: 1.3em;
    font-family: var(--bs-font-serif);
    line-height: 1.5em; 
    text-align: center;
}

.nolink-format a {
color:white !important;
background-image: none !important;
transition: all 0.5s;
}

.nolink-format a:hover {
color:#ffffffe3 !important;
}

.article-conclusion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
    font-size: 1.3em;
    font-family: var(--bs-font-serif);
    line-height: 1.5em;
    color: var(--gametrip-greige);
    text-align: left;
    padding: 1.5rem;
    position: relative;
}

.article-compa {
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
    font-size: 1.3em;
    font-family: var(--bs-font-serif);
    line-height: 1.5em;
    color: white;
    text-align: left;
    padding: 1.5rem;
    position: relative;   
}

.article-compa a ,.article-conclusion a {
    text-decoration: none;
    background-position-y: -0%;
    transition: background 200ms ease;
    background-size: auto 200%;
    color: var(--gametrip-bleu);
}

.article-compa span {
color: var(--gametrip-greige);
margin-bottom: 15px;
    display: inline-block;
}

/* Texte de la conclusion */
.conclusion-text {
    flex: 1;
    margin-right: 2rem;
    text-align: right;
}

/* Titre “Notre avis” */
.conclusion-title {
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--gametrip-orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

.conclusion-title img {
    display: block;
    width: 60px;
    border-radius: 5px;
    margin: 0 auto;
}

/* Contenu et note en flex */
.conclusion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Bloc note */
.conclusion-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gametrip-orange);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 70px;
}

.conclusion-note .note-label {
    font-size: 3.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.conclusion-note .note-value {
    font-size: 1rem;
    font-weight: bold;
    border-top: 3px solid #fff;
}

/* Responsive : bloc empilé sur mobile */
@media (max-width: 991px) {
    .article-conclusion {
        flex-direction: column;
        text-align: center;
    }
    .conclusion-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.tldr-box {
  background: #1c1e22;
  border: 1px solid #2a2d33;
}

.meta-box {
  background: #24262b;
  border: 1px solid var(--gametrip-bleu);
}

.btn-mygt {
    color: #fff;
    background-color: var(--gametrip-bleu);
    border-color: white;
}

.avatar-mygt {
      max-width: 150px;
    max-height: 150px;
        border-radius: 5px;
}

.avatar-mygt-full {
      max-width: 300px;
    max-height: 300px;
        border-radius: 5px;
}

/* ---- Styles des cartes ---- */

.card-letter {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #000000 0%, #1a1818 100%) repeat scroll 0 0;
    color: white;
}
.card-letter h2 {
    font-size: 6rem;
    font-weight: bold;
    font-family: var(--bs-font-serif);
    color:var(--gametrip-greige);
}

.card-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* ---- Animation fade-in ---- */
.fade-container {
    opacity: 1;
}
.fade-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}
.fade-item:nth-child(1) { animation-delay: 0.05s; }
.fade-item:nth-child(2) { animation-delay: 0.1s; }
.fade-item:nth-child(3) { animation-delay: 0.15s; }
.fade-item:nth-child(4) { animation-delay: 0.2s; }
.fade-item:nth-child(n+5) { animation-delay: calc(0.05s * var(--i, 5)); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}



.member-link {
    color:inherit;
}
.member-link:hover {
    color:inherit;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .badges-grid {
        justify-content: center;
    }
}
.badges-grid .badge {
    border-radius: 12px;
    font-size: 0.9rem;
}


.badge-gamertag::before {
       font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f412 ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */ 
        color:var(--xbox);
}

.badge-nintendo::before {
       font-family: "Font Awesome 5 Free"; font-weight: 700; content: "\f11b ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */ 
        color:var(--nintendo);
}

.badge-discord::before {
       font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f392 ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */ 
        color:var(--discord);
}

.badge-psnetwork::before {
       font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f3df ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */ 
        color:var(--playstation);
}

div.spritenote0,div.spritenote1,div.spritenote2,div.spritenote3,div.spritenote4,div.spritenote5 {
      display: inline-block;
  background-size: cover;
 width:59px;
 height:59px;
 background-image:url(https://www.gametrip.net/img/spritenote59.png)
}
div.spritenote5 {
 background-position:0 59px
}
div.spritenote4 {
 background-position:0 118px
}
div.spritenote3 {
 background-position:0 177px
}
div.spritenote2 {
 background-position:0 236px
}
div.spritenote1 {
 background-position:0 295px
}

/* Boutons de partage */
.meta-box .btn-outline-light {
  border-color: var(--gametrip-greige);
  color: var(--gametrip-bleu);
  transition: 0.2s ease;
}

.meta-box .btn-outline-light:hover {
  background: var(--gametrip-orange);
  border-color: var(--gametrip-orange);
  color: #000;
}

.classtable {
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 55px;
    margin-right: 10px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff6a00, #bd943e);
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    float: left;
    padding: 5px;
}

.classtable:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* BARS REPARTITION FICHE */
 .stacked-bars-horizontal {
        display: flex;
        flex-direction: column; /* barre horizontales empilées verticalement */
        gap: 6px;
        width: 100%;
    }

    .bar-container {
        background: #636262;
        border-radius: 0px 8px 8px 0px;
        overflow: hidden;
    }

    .bar {
        background: linear-gradient(90deg, #147fcb, #16c7e5);
        color: #fff;
        padding: 4px 8px;
        white-space: nowrap;
        transition: width 0.5s ease;
    }
/* ===== RATING ===== */

.rating-module {
  display: flex;
  flex-direction: column; /* enfants empilés verticalement */
  align-items: flex-start; /* aligner à gauche */
  gap: 10px;
}

.smiley-rating {
    display: flex
;
    gap: 10px;
    font-size: 32px;
    cursor: pointer;
    width: 100%;
    justify-content: space-around;
}
.user-vote {
    font-size: 14px;
    color: var(--gametrip-orange);
    margin-top: 4px;
}

.vote-alert {
    font-size: 0.95em;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.vote-success {
    color: #0f5132;
}
.vote-danger {
    color: #842029;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.smiley {
  transition: transform 0.2s, color 0.2s;

  cursor: pointer;
}

.smiley:hover {
  transform: scale(1.2);
  color: var(--gametrip-bleu);
}

.smiley.active {
  transform: scale(1.2);
  color: var(--gametrip-bleu); /* couleur du vote sélectionné */
}

.rating-display {
font-size: 16px;
    text-align: center;
    width: 100%;
}
.metascore-sources {
  font-size: 14px;
  color: var(--gametrip-gris);
}

.rating-display strong {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.metascore-module {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metascore-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metascore-item .label {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.metascore-bar {
    flex: 3;
    height: 12px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.metascore-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c4d36e, #ff9c02);
    border-radius: 6px;
    transition: width 1s ease;
}

.score-number {
    width: 43px;
    text-align: right;
    font-weight: bold;
}

.metascore-final .metascore-fill {
    height: 16px;
    background: linear-gradient(90deg, #9a99cb, #087eb9)
}

/* ===== GALERIE FULL IMAGE ==== */

    .gallery-image {
    max-width: 100%;      /* ne dépasse pas le conteneur */
    height: auto;         /* conserve les proportions */
    display: block;       /* force le bloc */
    margin: 0 auto;       /* centre l’image */
    border-radius: 8px;   /* coins légèrement arrondis */
    box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* petite ombre pour le relief */
    border:1px solid var(--gametrip-orange);
}

/* ==== ABOUT TIMELINE ==== */

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
  color:var(--gametrip-greige);
}

.timeline p {
    padding: 5px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--gametrip-bleu); /* couleur bootstrap primary */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 3px solid var(--gametrip-bleu);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline h4 {
    padding-top: 1em;
}

.timeline-content {
  padding: 0; /* on supprime le padding par défaut pour gérer proprement */
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden; /* évite que l'image dépasse des coins arrondis */
}

/* Bloc image en "cover" */
.timeline-image img {
  width: 100%;
  height: 200px; /* hauteur fixe pour effet cover */
  object-fit: cover; /* recadre sans déformer */
  display: block;
}

/* Texte en dessous de l'image */
.timeline-text {
  padding: 15px 20px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px; /* ligne décalée à gauche */
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px; /* laisse de la place pour la ligne et les points */
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 10px;
    right: auto;
  }

  .timeline-item.right {
    left: 0; /* remet tout du même côté */
  }
}


/* ===== GALERIE MOSAÏQUE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0.5rem 0;
}

/* bloc fake-img discret */
.fake-img-container {
  grid-column: 1 / -1; /* fait que le bloc occupe toute la largeur de la grille */
  display: flex;
  justify-content: flex-start; /* ou center selon le style */
}

.fake-img-title {
    grid-column: 1 / -1; /* fait que le bloc occupe toute la largeur de la grille */
  width: 100%;
  text-align: center;
  position: relative;
  margin: 2rem 0;
}

.fake-img-title h4 {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  background: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  padding: 0 1rem;
  z-index: 1;
}

.fake-img-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gametrip-orange); /* couleur du filet */
  z-index: 0;
}


.fake-img {
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  font-weight: normal;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 3px;
  display: inline-block; /* taille du texte uniquement */
}

h4.gallery-title {
    font-size: 0.9em;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-sans-serif);
    letter-spacing: 0em;
}

.gallery-item img {
  width: 100%;
  height: 160px; /* ou 200px selon le rendu */
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.gallery-item figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ===== ARTICLE MAGAZINE (alternance) ===== */
.article-image {
  position: relative;
  width: 100%;        /* par défaut ça remplit */
  max-width: 240px;   /* mais jamais plus que 300px */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid #575757;
}

.article-image img {
    display: block;
    min-width: 230px;
    width: 95%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    margin-top: 4px;
}

.article-body q {
    display: block;
    float: left;
    width: 40%;
    margin:2rem 2rem 1rem 1rem;
    font-family: var(--bs-font-sans-serif);
    font-size: 2rem;
    line-height: 1.3;
    color: var(--gametrip-bleu);
    padding: 1rem 1.5rem;

    position: relative;
    border-radius: 4px;
    text-align: center;
}

/* Gros guillemet décoratif dans le coin */
.article-body q::before {
  content: "“";
  font-family: var(--bs-font-sans-serif);
  font-size: 4rem;
  color: #55b8ff29;
  position: absolute;
  top: -1rem;
  left: -1rem;
  pointer-events: none;
}

/* Optionnel : guillemet de fin */
.article-body q::after {
  content: "”";
  font-family: var(--bs-font-sans-serif);
  font-size: 7rem;
  color: #55b8ff29;
  position: absolute;
  bottom: -6rem;
  right: -1rem;
  pointer-events: none;
}

/* Responsive : sur mobile, citation pleine largeur */
@media (max-width: 991px) {
  .article-body q {
    float: none;
    width: 100%;
    margin: 1rem 0;
    font-size: 2rem;
    padding: 1rem;
  }

  .article-body q::before {
    font-size: 3rem;
    top: 0;
    left: 0;
  }
  .article-body q::after {
    display: none;
  }
}

/* End of article */
span.EoA {
    color: var(--gametrip-greige);
    font-size:0.8em;
}
/* Légende en bloc normal */
.article-image figcaption {
  width: 100%;
  padding: 8px;
    color: #969fa5;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.1em;
  font-style: italic;
}

/* Survol : la légende remonte et devient visible */
.article-image:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Alternance ===== */
.article-image.left {
  float: left;
  margin-right: 1.5rem;
}

.article-image.right {
  float: right;
  margin-left: 1.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .article-image,
  .article-image.left,
  .article-image.right {
    float: none;            /* plus de flottant */
    display: block;
    margin: 1rem auto;
    width: 100%;            /* full largeur */
    max-width: 100%;        /* s’assure qu’on dépasse pas */
  }

  .article-image img {
width: 100%;
        max-width: 95%;
        height: 250px;
        margin: 12px auto;
  }
}

h3.universe-subtitle {
    color: white;
    font-size: 0.9em;
    text-transform: uppercase;
    font-family: var(--bs-font-serif);
    font-weight: 400;
    border-bottom: 2px solid white;
    display: flex
;
    padding-bottom: 8px;
    letter-spacing: 0.01rem;
    word-spacing: 1rem;
        width: 35%;
}

.liste-fiches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.fiche {
    border:1px solid var(--gametrip-gris);
}
.fiche:hover {
border-color: white;
transition: all 0.3s;
}

.fiche-tile {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fiche-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fiche-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.fiche-content {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fiche-title {
  font-size: 1rem;
  margin: 0;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #222;
}

.fiche-type {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.6rem;
}

.fiche-desc {
  font-size: 0.85rem;
  color: #444;
  flex-grow: 1;
  margin-bottom: 0.6rem;
}

.fiche-link {
  align-self: flex-start;
  font-size: 0.85rem;
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}

.fiche-link:hover {
  text-decoration: underline;
}

.fiche-cover img {
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);
      width: 50px;
    height: 50px;
object-fit: cover;
    object-position: center top;
}

.fiches-liees ul li {
  margin-bottom: 4px;
}

.fiches-liees a:hover {
  text-decoration: underline;
}

#gold-winner {
    border:none;
    width: 120px;
}

/* FICHES */

#public-logo {
    position: absolute;
    bottom: 20px;
    right: 40px;
    max-width: 70px;
    max-height: 60px;
    z-index: 10;
}


#pochette-logo {
position: absolute;
    left: 50px;
    bottom: 30px;
    z-index: 10;
    border: 1px solid white;
    border-radius: 0.25rem;
    box-shadow: 3px 3px 4px 4px #1a1919;
            max-width: fit-content;
    max-height: fit-content;

}

#pochette-logo-c {
position: absolute;
    left: 50px;
    bottom: 30px;
    z-index: 10;
    border: 1px solid white;
    border-radius: 0.25rem;
    box-shadow: 3px 3px 4px 4px #1a1919;
            max-width: 150px;
    max-height: 250px;

}

ul.fiche-infos {
list-style: none;
    margin: 0;
    padding: 0;
    /* border: 1px solid #ddd; */
    /* border-radius: 6px; */
    overflow: hidden;
    /* font-size: 0.95em;*/
}

ul.fiche-infos li {
display: flex
;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

ul.fiche-infos li:nth-child(odd) {
  background-color: var(--gametrip-gris);   /* couleur alternée */
}

ul.fiche-infos li:nth-child(even) {

}

ul.fiche-infos li strong {
  font-weight: 600;
  color: var(--gametrip-orange);
  margin-right: 10px;
  flex: 0 0 35%;               /* colonne de gauche */
}

ul.fiche-infos li a {
  color: var(--gametrip-bleu); /* ta variable couleur */
  text-decoration: none;
}

ul.fiche-infos li a:hover {
  text-decoration: underline;
}

.support {
    height: 18px;
    margin-left: 7px;
    float: left;
    display: block;
}

.old-names {
margin-left: 5px;
    font-weight: 100;
    place-self: self-end;
    color: #7d7d7d;
}

/*-------------------------------------------------------*/
/* Commentaires
/*-------------------------------------------------------*/

.comments-section {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* espace entre chaque commentaire */
    margin-top: 1rem;
}

.comment-avatar img {
    width: 60px;
    display: block;
}

.comment-avatar {
display: inline-block;
    float: left;
    margin-right: 10px;
}

.comment-card {
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.comment-header {
    font-size: 0.9em;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.comment-body {
    font-size: 1em;
    line-height: 1.4em;
    color: #d1d0d0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-body a {
    color:var(--gametrip-bleu);
        display: contents;
}

.comment-body textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #1e1e1e;
    color: #f1f1f1;
    font-size: 18px;
    resize: vertical;
    transition: border-color 0.2s;
}

.comment-body textarea:focus {
    border-color: #00bcd4;
    outline: none;
}




/*-------------------------------------------------------*/
/* Articles
/*-------------------------------------------------------*/
h1.main-title {
    font-weight: 300;
    color:white;
    text-transform: uppercase;
    font-size: 2em;
}
h1.main-title span {
  font-weight: 600;
  color:var(--gametrip-bleu);
  text-transform: uppercase;
}
.seo-content a {
      color: var(--gametrip-orange);
}
.listeconsole-cta{
  width: 100%;
  text-align: center;
}
.listeconsole-cta a {
  margin:4px 0;
  color: var(--gametrip-bleu);
}

.flex-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
        clear: both;
}

.flex-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* LOGO CONSOLES */

.btn-console {
     display: inline-block; /* Assurez l'affichage comme un élément inline */
    margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
    vertical-align: middle; /* Aligne verticalement avec le texte */ 
}

.btn-f-group::before {
         font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f07b ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-f-company::before {
         font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f1ad ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-f-tech::before {
         font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f013 ";
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-cdi::before {
    content: url('https://www.gametrip.net/img/mini-csl/cdi.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gnw::before {
    content: url('https://www.gametrip.net/img/mini-csl/GnW.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gba::before {
    content: url('https://www.gametrip.net/img/mini-csl/gba.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gbasp::before {
    content: url('https://www.gametrip.net/img/mini-csl/gbasp.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-snes::before {
    content: url('https://www.gametrip.net/img/mini-csl/SNES.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-a2600::before,.btn-a7800::before,.btn-st::before,.btn-a5200::before,.btn-atari::before {
    content: url('https://www.gametrip.net/img/mini-csl/Atari.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-1292apvs::before {
    content: url('https://www.gametrip.net/img/mini-csl/1292apvs.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pong::before {
    content: url('https://www.gametrip.net/img/mini-csl/pong.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}


.btn-c64::before,.btn-c128::before,.btn-c64gs::before,.btn-c8::before {
    content: url('https://www.gametrip.net/img/mini-csl/commodore.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-amiga::before,.btn-cd32::before,.btn-cdtv::before {
    content: url('https://www.gametrip.net/img/mini-csl/Amiga.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pc::before {
    content: url('https://www.gametrip.net/img/mini-csl/PC.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-xbox::before {
    content: url('https://www.gametrip.net/img/mini-csl/xbox.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-psx::before,.btn-ps2::before {
    content: url('https://www.gametrip.net/img/mini-csl/play.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gamegear::before {
    content: url('https://www.gametrip.net/img/mini-csl/gg.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-saturn::before {
    content: url('https://www.gametrip.net/img/mini-csl/saturn.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-nes::before {
    content: url('https://www.gametrip.net/img/mini-csl/nes.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-dc::before {
    content: url('https://www.gametrip.net/img/mini-csl/dc.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-ngc::before {
    content: url('https://www.gametrip.net/img/mini-csl/ngc.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-n64::before {
    content: url('https://www.gametrip.net/img/mini-csl/n64.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-arcade::before {
    content: url('https://www.gametrip.net/img/mini-csl/arcade.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-apple2::before,.btn-mac::before {
    content: url('https://www.gametrip.net/img/mini-csl/apple.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-lynx::before {
    content: url('https://www.gametrip.net/img/mini-csl/lynx.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pcfx::before {
    content: url('https://www.gametrip.net/img/mini-csl/pcfx.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-neogeo::before,.btn-ngcd::before {
    content: url('https://www.gametrip.net/img/mini-csl/neogeo.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-amstrad::before,.btn-zx::before,.btn-gx4000::before,.btn-megapc::before {
    content: url('https://www.gametrip.net/img/mini-csl/amstrad.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gb::before {
    content: url('https://www.gametrip.net/img/mini-csl/gb.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gbc::before {
    content: url('https://www.gametrip.net/img/mini-csl/gbc.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-vectrex::before {
    content: url('https://www.gametrip.net/img/mini-csl/vectrex.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-wonderswan::before {
    content: url('https://www.gametrip.net/img/mini-csl/wonderswan.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-telespiel::before {
    content: url('https://www.gametrip.net/img/mini-csl/telespiel.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pce::before,.btn-supergrafx::before {
    content: url('https://www.gametrip.net/img/mini-csl/pce.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-3do::before {
    content: url('https://www.gametrip.net/img/mini-csl/3do.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-intellivision::before {
    content: url('https://www.gametrip.net/img/mini-csl/iv.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-odyssey::before,.btn-odyssey2::before {
    content: url('https://www.gametrip.net/img/mini-csl/odyssey.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-jaguar::before {
    content: url('https://www.gametrip.net/img/mini-csl/jaguar.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-channelf::before {
    content: url('https://www.gametrip.net/img/mini-csl/channelf.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-colortvgame::before,.btn-vb::before  {
    content: url('https://www.gametrip.net/img/mini-csl/nintendo.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-ngp::before,.btn-ngpc::before {
    content: url('https://www.gametrip.net/img/mini-csl/ngp.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-ms::before,.btn-sg1000::before,.btn-megacd::before,.btn-megadrive::before,.btn-32x::before,.btn-nomad::before,.btn-pico::before {
    content: url('https://www.gametrip.net/img/mini-csl/sega.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-colecovision::before {
    content: url('https://www.gametrip.net/img/mini-csl/coleco.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-telstar::before {
    content: url('https://www.gametrip.net/img/mini-csl/telstar.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-cv::before {
    content: url('https://www.gametrip.net/img/mini-csl/CV.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-swancrystal::before {
    content: url('https://www.gametrip.net/img/mini-csl/swancrystal.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-moto::before {
    content: url('https://www.gametrip.net/img/mini-csl/thomson.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-satellaview::before {
    content: url('https://www.gametrip.net/img/mini-csl/satellaview.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-fmtm::before {
    content: url('https://www.gametrip.net/img/mini-csl/fmtm.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-gp32::before {
    content: url('https://www.gametrip.net/img/mini-csl/gp32.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-msx::before {
    content: url('https://www.gametrip.net/img/mini-csl/msx.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pippin::before {
    content: url('https://www.gametrip.net/img/mini-csl/pippin.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-playdia::before {
    content: url('https://www.gametrip.net/img/mini-csl/bandai.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}
.btn-pv1000::before {
    content: url('https://www.gametrip.net/img/mini-csl/pv1000.png'); /* Chemin de l'image */
       margin-right: 5px; /* Ajoute de l'espace entre le logo et le texte */
}

/* ADMIN */
.card-admin a {
    color:var(--gametrip-bleu);
}
.card-admin a:hover {
   text-decoration: underline !important
}
a.nolink {
    color:var(--gametrip-bleu);
}
a.nolink:hover{
    text-decoration: underline;
}
.ajaxgal {
  background-color:var(--bs-gray-500) !important;
}

/* LEXIQUE */
.panel-lexical-social {
 display: flow;
    font-size: 0.7em;
    text-align: right;
    color:var(--gametrip-bleu);
}
.panel-lexical-social a {
    border:0;
    color:var(--gametrip-bleu);
    padding: 0;
}
.panel-lexical-social a:hover {
    background: none;
    opacity: 0.5;
}

/* NOTATON */
.notation-list {
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 1rem;
}

.notation-item {
  transition: background-color 0.2s ease;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.notation-item:hover {
  background-color: rgba(255,255,255,0.05);
}

.notation-number {
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  min-width: 40px;
}
.bg-top1 {
    background: #FFD700; /* gold */
    color: #000; /* texte noir */
    font-weight: 700;
}
.bg-top2 {
    background: #C0C0C0; /* silver */
    color: #000;
    font-weight: 700;
}
.bg-top3 {
    background:#815b37; /* bronze */
    color: #000;
    font-weight: 700;
}
img.podium-silver {
  height:100px;
  box-shadow: 0px 0px 7px 4px #C0C0C075;
}
img.podium-gold {
      height:140px;
  box-shadow: 0px 0px 7px 4px #ffd70075;
}
img.podium-copper {
      height:70px;
  box-shadow: 0px 0px 7px 4px #815b3775;
}
img.podium {
  transition: transform 0.2s;  
}
img.podium:hover {
    transform: scale(1.08) translateY(-4px);
}
.podium-item img:hover{transform:translateY(-10px) scale(1.05);}
img.palmares-winners { max-height:100px; max-width:100px; box-shadow:0 3px 6px rgba(0,0,0,0.3); transition: transform 0.2s; border:1px solid #000000; }
img.palmares-winners:hover {border:1px solid var(--gametrip-orange)}