  /* Import */
  @import url("../font/style.css");
    
    .play-icon {
      position: fixed;
      width: 40px;
      height: 40px;
      background: url('../img/play.png') no-repeat center;
      background-size: cover;
      right: 10px;
      bottom: 10px;
      cursor: pointer;
    }
    
    .pause-icon {
      position: fixed;
      width: 40px;
      height: 40px;
      background: url('../img/pause.png') no-repeat center;
      background-size: cover;
      right: 10px;
      bottom: 10px;
      cursor: pointer;
      display: none;
    }
  
  /* General */
  * {
    margin: 0;
    padding: 0;
    font-family: "Whitney", sans-serif;
    box-sizing: border-box;
  }
  
  body,
  html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/wallpaper/wallpaper.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  
  .tooltip {
    display: flex;
    position: absolute;
    color: #b6b7b7;
    background: #18191c;
    padding: 0.4rem;
    border-radius: 3px;
    max-width: 150px;
    width: max-content;
    font-size: 0.9rem;
    transform: scale(0);
    transition: 0.055s ease-in-out transform;
    z-index: 10;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
  }
  
  .tooltip-up {
    bottom: 42px;
  }
  
  .tooltip-up::before {
    display: flex;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #18191c;
  }
  
  /* Card */
  .card-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    z-index: 0;
  }
  
  .card {
    background: #292b2f;
    width: 345px;
  
    border-radius: 9px;
    box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
  
  }
  
  .card-header .banner {
    width: 100%;
    height: 60px;
    background: #ff8527;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
  }
  
  .card-header .banner-img {
    width: 100%;
    height: 120px;
    background-position: center !important;
    background-size: 100% auto !important;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
  }
  
  .card-body {
    padding: 15px;
    position: relative;
  }
  
  .card-body .profile-header {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(100% - 30px);
    top: -50px;
  }
  
  .card-body .profile-header .profil-logo {
    position: relative;
    border: 6px solid #292b2f;
    border-radius: 50%;
  }
  
  .card-body .profile-header .profil-logo img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  
  .card-body .profile-header .profil-logo::before {
    content: "See Profile";
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    color: #eeeeee;
    background: #0000007e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition-duration: 0.15s;
  }
  
  .card-body .profile-header .profil-logo:hover::before {
    opacity: 1;
  }
  
  .card-body .profile-header .badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 200px;
    background: #18191c;
    border-radius: 7px;
    padding: 3px;
  }
  
  .card-body .profile-header .badges-container .badge-item {
    position: relative;
    margin: 5px;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .card-body .profile-header .badges-container .badge-item img {
    height: 150%;
  }
  
  .card-body .profile-header .badges-container .badge-item:hover > .tooltip {
    transform: scale(1);
  }
  
  .card-body .profile-body {
    background: #18191c;
    border-radius: 7px;
    padding: 13px;
    margin-top: 40px;
  }
  
  .card-body .profile-body .username {
    color: #eeeeee;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .card-body .profile-body .username span {
    color: #b9bbbe;
  }
  
  .card-body .profile-body .username .badge {
    font-size: 0.65rem;
    background-color: #dd0808;
    text-transform: uppercase;
    font-weight: 300;
    width: max-content;
    padding: 2px 5px;
    margin-left: 5px;
    border-radius: 3px;
  }
  
  .card-body .profile-body hr {
    border: none;
    border-top: 0.5px solid #33353b;
  }
  
  .card-body .profile-body .category-title {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .card-body .profile-body .basic-infos {
    margin-bottom: 14px;
    margin-top: 12px;
  }
  
  .card-body .profile-body .basic-infos p {
    color: #bdbebf;
    font-size: 0.9rem;
  }
  
  .card-body .profile-body .basic-infos p a {
    color: #e60246;
    text-decoration: none;
  }
  
  .card-body .profile-body .basic-infos p a:hover {
    text-decoration: underline;
  }
  
  .card-body .profile-body .basic-infos p b {
    color: #ddd;
  }
  
  .card-body .profile-body .roles {
    margin-bottom: 14px;
  }
  
  .card-body .profile-body .roles .roles-list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .card-body .profile-body .roles .roles-list .role {
    background: #292b2f;
    color: #f5f5f5;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 3px 6px;
    margin-right: 4px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  
  .card-body .profile-body .roles .roles-list .role .role-color {
    position: relative;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .card-body .profile-body .roles .roles-list .role .role-color:hover::before {
    content: "✖";
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.65rem;
    color: #f5f5f5;
    background: #292b2f;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .card-body .profile-body .roles .roles-list .role-add {
    cursor: pointer;
  }
  
  .card-body .profile-body .note textarea {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    min-height: 30px;
    color: #e0e0e0;
    resize: none;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 5px;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  
  .card-body .profile-body .note textarea::-webkit-scrollbar {
    display: none;
  }
  
  .card-body .profile-body .note textarea::placeholder {
    font-size: 0.8rem;
  }
  
  .card-body .profile-body .note textarea:focus::placeholder {
    opacity: 0;
  }
  
  .card-body .profile-body .message input {
    background: transparent;
    outline: none;
    border: 1.2px solid #4b4b4b;
    padding: 13px;
    width: 100%;
    border-radius: 4px;
    color: #eeeeee;
    margin-top: 14px;
  }
  
  .nitro-card {
    position: relative;
    background-image: linear-gradient(0, #636363, #535353);
    background-blend-mode: multiply;
    background-color: #252525;
  }
  
  .nitro-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: 12px;
    background: linear-gradient(0, #636363, #535353);
  }
  
  .nitro-card .card-body .profile-body {
    background: #18191c91;
  }
  
  .nitro-card .card-body .profile-header .profil-logo {
    position: relative;
    border-color: transparent;
    z-index: 0;
    overflow: visible;
  }

  .avatar-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  scale(1.2);
    overflow: visible;
  }
  
  
  .nitro-card .card-body .profile-header .badges-container {
    background: #18191c77;
  }
  
  .nitro-card .card-body .profile-body .roles .roles-list .role {
    background: #18191c4d;
    border: 1px solid #3f4149;
  }

  .play-music-btn {
    position: absolute;
  }
  .message p{
    color: #bdbebf;
    font-size: 0.8rem;
    
    margin-top: 7%;
    margin-bottom: -3%;
    text-decoration: none;
  }

  #message-status {
    color: white;
    position: relative;
    font-size: 12px;
    margin-top: 2%; /* add 5px margin top */
  }

  #play-music-btn {
    background-color: #333; /* Dark gray background */
    color: #ffffff; /* Bright green text */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6); /* Dark shadow */
    outline: 2px solid #ffffff; /* White outline around the corners */
    outline-offset: -2px; /* Move the outline 2px outside the button */
  }
  
  #play-music-btn:hover {
    outline-color: #66cc00; /* Change the outline color to bright green on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); /* Increased shadow on hover */
  }
  
  #play-music-btn:active {
    outline-color: #66cc00; /* Change the outline color to bright green on active */
    box-shadow: 0 0 30px rgba(0, 0, 0, 1); /* Even more intense shadow on active */
  }

  #music-player {
    position: absolute;
    display: none;
    opacity: 0;
  }
  
  #music-player.show {
    position: absolute;
    display: block;
    animation: fadeIn 0.5s forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Media Queries */
  @media screen and (max-width: 1470px) {
    .card-container {
      max-width: 1366px;
    }
  }
  
  @media screen and (max-width: 1150px) {
    .card-container {
      max-width: 768px;
    }
  }
  
  @media screen and (max-width: 770px) {
    .card-container {
      width: 100%;
      justify-content: center;
    }
  }