/* Style global */
body {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    overflow: hidden; /* Désactivé par défaut */
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Canvas conteneur */
#canvasContainer {
    position: relative;
    width: 100%; /* Prend toute la largeur disponible */
    height: 100%; /* Prend toute la hauteur disponible */
    overflow: auto; /* Active le défilement si nécessaire */
    -webkit-overflow-scrolling: touch; /* Défilement fluide sur mobile */
    touch-action: auto; /* Permet le zoom avec le pincement */
}

/* Style responsive */
@media screen and (max-width: 768px) {
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: auto; /* Permet le défilement */
    touch-action: auto; /* Permet le pincement pour zoomer */
}


    #fullscreenButton{
        display: none;
    }




    #canvasContainer {
        overflow: scroll; /* Permet de scroller dans le canvas */
        -webkit-overflow-scrolling: touch; /* Défilement fluide sur mobile */
    }

    .header {
    right: 21px !important;
    }

    .header ul {
      margin: 0;
      list-style: none;
      overflow: hidden;
      background-color: #fff;
    }

    .menu{
    background-color: white;
    margin: auto;
    text-align: center;
    border-radius: 12px;
    }

    .header .menu-icon{
   color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 42px 37px !important;
    margin-top: 10px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; 
}
}


canvas {
    display: block;
    background-color: #eaeaea;
}

#canvasContainer {
    width: 100%;
    height: 100%;
    overflow: auto;
}

#gameCanvas {
    flex: 1;
}


/* header */

.header {
    z-index: 1001;
    top: 0%;
    margin: auto;
    position: absolute;
}



.header li a {
  display: block;
  text-decoration: none;
}



/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 28px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 270px;
  padding: 24px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }


}


#title-image {
    width: auto;
    height: 100px; /* Ajustez la taille selon vos besoins */
}


#game-title {
    font-size: 18px;
    margin: 0;
}

#simulate-kill {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #e74c3c;
    color: white;
    margin: auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#simulate-kill:hover {
    background-color: #c0392b;
}

#gameContainer {
    display: flex;
    flex-direction: row;
    height: 100vh;
}




/* Panel principal */
#controlPanel {
    position: fixed;
    right: 0;
    top: 0;
    max-width: 700px;
    width:100%;
    height: 100%;
    background-color: #f4f4f4;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

#controlPanel.visible {
    transform: translateX(0);
}

#panelToggle {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1001;
}

#mainContainer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    overflow: auto;
    flex-grow: 1; /* Permet au contenu principal de prendre l'espace vertical restant */
}



#memberPool,
#rankingSection {
        overflow: auto;
    width: 45%;
    padding: 20px;
    background-color: #f4f4f4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#rankingContainer {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Style général des cellules */
.rankingSlot {
      cursor: pointer;
    position: relative;
    padding: 4px;
    margin: 5px;
    border: 2px dashed #ccc;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligne les éléments à gauche et la numérotation à droite */
}

/* Ajout de la numérotation via ::after */
.rankingSlot::after {
    content: attr(data-rank); /* Affiche le rang depuis l'attribut data-rank */
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #000;
    margin-left: 10px;
}

/* Couleurs pour les médailles */
.rankingSlot[data-rank="1"]::after {
    background-color: #FFD700; /* Or */
    color: #fff;
}

.rankingSlot[data-rank="2"]::after {
    background-color: #C0C0C0; /* Argent */
    color: #fff;
}

.rankingSlot[data-rank="3"]::after {
    background-color: #CD7F32; /* Bronze */
    color: #fff;
}

.rankingSlot.filled {
    border-color: #4caf50;
    background-color: #d4edda;
}

.rankingSlot.highlight {
    animation: glow 1s infinite;
}

@keyframes glow {
    0% {
        border-color: #4caf50;
        box-shadow: 0 0 5px #4caf50;
    }
    50% {
        border-color: #81c784;
        box-shadow: 0 0 15px #81c784;
    }
    100% {
        border-color: #4caf50;
        box-shadow: 0 0 5px #4caf50;
    }
}

#members {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dcdcdc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}




.member.selected {
    background-color: #ffcc00;
}


.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.displayN {
    display: none !important;
}

#mainContainer,
#tokenSection {
    display: flex; /* Assurez-vous qu'ils sont affichés par défaut */
}

#tokenSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Pour centrer verticalement */
    text-align: center;
}

#mainContainer {
    padding: 20px; /* Optionnel : espace autour du contenu */
}


#toggleButton{
    display: none;
}


/* Animation pour les icônes */
#toggleButton::after {
    content: "▼";
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

#toggleButton.open::after {
    transform: rotate(180deg);
}

/* Positionnement du bouton #lockRanking */
#lockRanking {
      cursor: pointer;
    width: 227px;
}




@media (max-width: 768px) {
    #rankingInterface {
        display: none; /* Masquer sur mobile par défaut */
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    #rankingInterface.visible {
        display: flex;
    }

    #gameContainer {
        flex-direction: column;
    }
}




/*Resultats classement */
/* Styles de la popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    overflow: auto;
    max-width: 640px;
    width:100%;
    top: 96px;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.popup-content h2, .popup-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.popup-content .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.popup-content .popup-close:hover {
    color: #000;
}

/* Classement des membres */
#memberRanking {
    margin-bottom: 20px;
}

#memberRanking div {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

#memberRanking div:first-child {
    background-color: #FFD700;
    color: #000;
}

#memberRanking div:nth-child(2) {
    background-color: #C0C0C0;
    color: #000;
}

#memberRanking div:nth-child(3) {
    background-color: #CD7F32;
    color: #000;
}

/* Classements individuels */
#individualRankings{
    display: block;
    gap: 10px;
    margin-top: 20px;
}

.individual-ranking, .real-ranking {
    width: 110px;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px;
}

.real-ranking {
    width: 200px;
}

.individual-ranking h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.individual-ranking  ol, .real-ranking ol {
    padding-left: 20px;
    font-size: 14px;
}

.individual-ranking ol li, .real-ranking ol li {
    margin: 5px 0;
}

#computeScores{
padding: 10px 20px;
    font-size: 14px;
    background-color: #e74c3c;
    color: white;
    margin: auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#viewResults{
padding: 10px 20px;
    font-size: 16px;
    background-color: #e74c3c;
    color: white;
    margin: auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#viewResults.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#realRankingButton.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#viewRules{
        background: #fdc500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}



.tooltip {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 1000;
}

#title-cloud-container {
    position: absolute;
    top: 20px; /* Positionne le conteneur en haut de l'écran */
    left: 23%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000; /* Assure que le titre reste au-dessus des autres éléments */
}

#title-cloud {
    width: auto;
    height: 150px; /* Ajustez la taille du nuage selon vos besoins */
    position: relative;
}

#game-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px; /* Taille du texte */
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Donne un effet ombré */
}

.button-vote{
  position:relative;
  display:inline-block;
      cursor: pointer;
    margin-bottom: 23px;
}

.button-vote a{
color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 13px 35px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button-vote a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

/*.button-vote:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  background-color:#2B1800;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}*/

.button-lock{
  position:relative;
  display:inline-block;
  margin-bottom: 42px;
}

.button-lock a{
color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 13px 35px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button-lock a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

/*.button-lock:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  background-color:#2B1800;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}*/

.button-result{
  position:relative;
  display:inline-block;
    margin-left: 10px;
    margin-right: 10px;
  margin-bottom: 42px;
}

.button-result a{
color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 13px 35px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button-result a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

/*.button-result:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  background-color:#2B1800;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}*/

/*popup pixelart*/
/* Conteneur principal du popup */
#pixelPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Cacher le popup */
.hidden {
    display: none;
}

/* Contenu du popup */
#pixelPopupContent {
    background: #f4f4f4;
    border: 4px solid #333;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Message */
#pixelPopupMessage {
    margin: 20px 0;
    color: #333;
}

/* Bouton de fermeture */
#pixelPopupClose {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    float: right;
}




.button-fs{
  position:relative;
  display:inline-block;
  margin:5px;
}

.button-fs a{
color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 13px 35px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button-fs a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

/*.button-fs:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  background-color:#2B1800;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}*/

#fullscreenToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
        cursor: pointer;
}

#rankingPanel {
    position: fixed;
    right: 0;
    top: 0;
    width: 700px;
    height: 100%;
    background-color: #f4f4f4;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

#rankingPanel.visible {
    transform: translateX(0);
}

#realRankingToggle {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1000;

}

#realRankingButton {
    background: #fdc500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;

}


/*Règles overlay*/
/* Overlay plein écran */
#messageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Overlay sombre */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Conteneur de popup */
#messageContent {
    background: #ffffff;
    color: #000;
    padding: 20px;
    text-align: center;
    border: 4px solid #000;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    font-family: "Pixelify Sans", sans-serif;
    font-size: 16px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/* Bouton de navigation */
#nextMessageButton {
    margin-top: 20px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Pixelify Sans", sans-serif;
    font-size: 16px;
}

#nextMessageButton:hover {
    background: #fff;
    color: #000;
}

.individual-ranking h4 {
    text-align: center;
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}

.individual-ranking ol {
    list-style: none;
    padding: 0;
}

.individual-ranking li, .real-ranking li {
    margin: 5px 0;
    padding: 5px 10px;
    font-size: 1rem;
    color: #000;
    border-radius: 5px;
    box-shadow: 2px 2px 0 #ccc;
}





.button-rules{
  position:relative;
  display:inline-block;
  margin-left:5px;
}

.button-rules a{
color: white;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    background-color: #efe136;
    display: block;
    position: relative;
    padding: 13px 35px;
      cursor: pointer;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button-rules a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}