@charset "UTF-8";
body #header {
  height: 425px;
  position: relative;
}
body #main {
  min-height: 500px;
  position: relative;
}
body #main #content .personnal-info .profile-header {
  gap: 20px;
  margin-bottom: 15px;
}
body #main #content .personnal-info .profile-header .profile-avatar {
  width: 125px;
  border-radius: 50%;
}
body #main #content .personnal-info .profile-header h2 {
  font-size: 3em;
}
body #main #content .personnal-info .profile-header h2 .flag-icon {
  width: auto;
  height: auto;
}
body #main #content .personnal-info .profile-header span {
  font-size: 0.7em;
  font-weight: normal;
}
body #main #content .personnal-info .steam-profile-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.3em;
}
body #main #content .player-stats h3 {
  font-size: 2.5em;
  margin: 15px 0;
}
body #main #content .player-stats .box-stats {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
}
body #main #content .player-stats .box-stats.matches-played {
  background-color: rgba(255, 255, 255, 0.2);
}
body #main #content .player-stats .box-stats.matches-played p {
  font-size: 1.5em;
  margin: 0;
}
body #main #content .player-stats .box-stats.matches-played p b {
  font-size: 2em;
}
body #main #content .player-stats .box-stats.maps-played .stats-list {
  list-style-type: none;
  padding-left: 0;
}
body #main #content .player-stats .box-stats.maps-played .stats-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
body #main #content .player-stats .box-stats.maps-played .stats-list li .stat-value {
  font-size: 1.2em;
  color: #ccc;
  font-weight: bold;
}
body #main #content .player-stats .box-stats.classes-played .stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
body #main #content .player-stats .box-stats.classes-played .stats-list li {
  flex-direction: column;
}
body #main #content .player-stats .box-stats.classes-played .stats-list li .stat-value {
  margin-top: 5px;
  font-size: 1.2em;
  color: #ccc;
  font-weight: bold;
}
body #main #content .player-stats .stats-list {
  list-style-type: none;
  padding-left: 0;
}
body #main #content .player-stats .stats-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
body #main #content .player-stats .no-data {
  font-style: italic;
  color: #ccc;
}
body #main #content .player-stats .recent-matches .matches-list {
  list-style-type: none;
  padding-left: 0;
}
body #main #content .player-stats .recent-matches .matches-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
body #main #content .player-stats .recent-matches .matches-list li .match-map {
  font-size: 1.2em;
  color: #ccc;
  font-weight: bold;
}
body #main #content .player-stats .recent-matches .matches-list li .btn-log {
  background-color: rgb(0, 123, 255);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
}
body #main #content .player-stats .recent-matches .matches-list li .btn-log:hover {
  background-color: rgb(0, 86, 179);
}
body #main #content .profile-tabs {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  background: #141414;
  padding: 6px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
body #main #content .profile-tabs .profile-tab-btn {
  background: transparent;
  border: none;
  color: #888;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
body #main #content .profile-tabs .profile-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
body #main #content .profile-tabs .profile-tab-btn.active {
  background: #ff5722;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* --- Styles pour les icônes de classe --- */
.class-icon {
  width: 45px;
  height: 45px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.align-center {
  align-items: center;
}/*# sourceMappingURL=profile.css.map */