body {
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
 
.container {
  display: flex;
  width: 100%;
  height: 100vh;
}
 
.left_block {
  position: relative;
  width: 70%;
  height: 100%;
  background-color: rgb(21, 5, 38);
}
 
.right_block {
  position: relative;
  width: 30%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}
 
.chevalier_container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index:99
}
 
.chevalier_image {
  position: absolute;
  height: 100%;
  left: 30%;
  transform: translateX(-50%);
  top: 34%;
  z-index: 5; /* ensure character is above the background */
}
 
.upri_container {
  width: 80%;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
 
.upri_blockI {
  width: 100%;
}
 
.upri_block1 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 12px;
  text-align:center;
  font-family: 'Comic Sans MS', cursive;
}
 
.upri_block2 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
 
.color_disc {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}
 
.color_disc:hover {
  transform: scale(1.15);
}
 
.color_disc.selected {
  border-color: white;
  transform: scale(1.15);
}
 
.upri_block_blue   { background-color: #3a7fdb; }
.upri_block_pink   { background-color: #e96fa0; }
.upri_block_safran { background-color: #f4a800; }
.upri_block_green  { background-color: #3dba6e; }
.upri_block_violet { background-color: #8a2be2; }
 
.dori_block {
  width: 80%;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
}
 
.dori_label {
  font-size: 22px;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 12px;
  text-align:center;
  font-family: 'Comic Sans MS', cursive;
}
 
.team_buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}
 
 
.logo-row {
  position: relative;
  width:100%;
  height:100%;
}
.logo-slot{
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* border-radius: 20px; */
  /* background: rgba(255,255,255,0.55); */
  /* backdrop-filter: blur(14px); */
  /* -webkit-backdrop-filter: blur(14px); */
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 6px;
}
.logo-slot .mark{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--red-mid);
}
.logo-slot span{
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  line-height: 1.2;
}
 
.logo-slot img{
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: invert(1);
}
 
/* .logo-slot.tl{ top: 24px; left: 24px; }
.logo-slot.tr{ top: 24px; right: 24px; }
.logo-slot.bl{ bottom: 24px; left: 24px; }
.logo-slot.br{ bottom: 24px; right: 24px; } */
 
.team_btn {
  padding: 10px 16px;
  border: 2px solid white;
  border-radius: 8px;
  background-color: transparent;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
 
.team_btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
 
.team_btn.selected {
  background-color: white;
  color: brown;
  font-weight: bold;
}
 
.bulle_bd {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  border: 3px solid black;
  border-radius: 20px;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  max-width: 200px;
  text-align: center;
  z-index: 10;
}
 
.bulle_queue {
  position: absolute;
  bottom: -22px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid black;
}
 
.bulle_queue::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 19px solid white;
}
 
.img_fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; 
}
 
.btn_commencer {
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgb(21, 5, 38);
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.2s ease;
      font-family: 'Comic Sans MS', cursive;
}
 
.btn_commencer.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
 
.btn_commencer:hover {
    background-color: white;
    color: rgb(21, 5, 38);
}
 
 
 