body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: #0b1b3a;
    color: white;
}

/* HEADER */
header {
    background: #0e2347;
    padding: 10px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

/* PROFIL */
.profile-menu {
    position: relative;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

/* MENU */
.dropdown {
    position: absolute;
    right: 0;
    top: 55px;

    display: none;
    flex-direction: column;
    gap: 10px;

    background: #102a52;
    padding: 12px;
    border-radius: 12px;
    min-width: 220px;
}

.dropdown.show {
    display: flex;
}

.dropdown a {
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;
}

/* CONTAINER */
.container {
    padding: 20px;
}

/* CARD */
.card {
    background: #122a4a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;

    transition: transform 0.2s ease, filter 0.2s ease;
}

/* agrandissement sections */
.card:hover,
.card:active {
    transform: scale(1.03);
}

/* BOUTONS */
.btn {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: bold;

    color: white;

    transform: none !important;

    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:hover,
.btn:active,
.btn:focus {
    transform: none !important;
}

/* ICÔNES */
.btn img {
    width: 18px;
    height: 18px;
    margin-right: 8px;

    filter: brightness(0) invert(1);
}

/* COULEURS */
.btn-dark {
    background: #333;
}

.btn-discord {
    background: #5865F2;
}

.btn-gradient {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}
.profile-card {
    text-align: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px 0;
    border: 3px solid white;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-menu {
  display: flex;
  align-items: center;
}

.search-btn {
  margin-right: 10px;
}

.search-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  z-index: 999;
}