:root {
    --lm-bg: #141D2F;
    --lm-bg-content: #1E2A47;
    --lm-text: white;
    --lm-text-alt: white;
    --lm-shadow: 0px 16px 30px -10px rgba(70, 96, 187, 0.2);
    --lm-shadow-inactive: 0px 16px 30px -10px rgba(0, 0, 0, 0.2);
    --lm-icon-bg: brightness(1000%);
    /* Button Colors */
    --btn-hover: #0079ff;
    --btn: #4697f3;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Mono", monospace;
  }
  
  .wrapper {
    height: 100vh;
    width: 100%;
    background-color: var(--lm-bg);
    color: var(--lm-text);
    position: relative;
    font-size: 13px;
  }
  
  .container {
    width: 527px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  
  main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .btn {
    display: flex;
    letter-spacing: 2.5px;
    width: 70px;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: var(--lm-text);
    cursor: pointer;
  }
  
  .btn p {
    text-transform: uppercase;
  }
  
  .searchcontainer {
    position: relative;
    background: var(--lm-bg-content);
    display: flex;
    height: 100%;
    padding: 6px;
    justify-content: space-between;
    align-items: center;
    background-image: url(./Images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 20px;
    border-radius: 15px;
    box-shadow: var(--lm-shadow);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .searchcontainer:hover {
    box-shadow: 0 0 10px rgba(0, 121, 255, 0.5);
    border-color: #0079ff;
  }
  #input {
    border: none;
    outline: none;
    width: 80%;
    color: var(--lm-text);
    padding-left: 50px;
    background: none;
  }
  
  #input::placeholder {
    color: var(--lm-text);
    letter-spacing: -0.5px;
    font-size: 13px;
  }
  
  .searchcontainer img {
    height: 20px;
    width: 20px;
    padding: 0 10px 0 16px;
  }
  
  #noresults {
    position: absolute;
    text-transform: capitalize;
    top: -30px;
    right: -40px;
    background-color: red;
    border-radius: 10px;
    width: 180px;
    padding: 4px 6px;
    color: white;
    text-align: center;
    font-weight: bold;
    transform: scale(0);
    transition: transform 0.5s;
  }
  
  .searchcontainer #btn {
    background: var(--btn);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 14px;
    min-width: 84px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .searchcontainer #btn:hover {
    background-color: var(--btn-hover);
    transform: scale(1.05);
  }
  
  .searchcontainer #btn:active {
    transform: scale(0.975);
  }
  
  .profilecontainer {
    background-color: var(--lm-bg-content);
    border-radius: 15px;
    box-shadow: var(--lm-shadow);
    padding: 20px;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;

  }
  .profilecontainer:hover {
    box-shadow: 0 0 10px rgba(0, 121, 255, 0.5);
    border-color: #0079ff;
  }
  .profilecontent {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 18px;
  }
  
  .profileheader {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
  }
  
  #userImage {
    width: 90px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #userImage:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .profileInfoWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  .profileName {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  
  #name {
    font-size: 16px;
    font-weight: bold;
    color: var(--lm-text-alt);
  }
  
  #username {
    color: var(--btn);
  }
  
  #joindate {
    font-size: 12px;
    padding-top: 10px;
  }
  
  #profileBio {
    line-height: 25px;
    opacity: 0.75;
  }
  
  .statsContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: var(--lm-bg);
    padding: 18px 28px;
    border-radius: 10px;
  }
  
  .profilestats {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .statstitle {
    font-size: 11px;
  }
  
  .profilestats a {
    text-decoration: none;
    color: var(--lm-text-alt);
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .profilestats a:hover {
    color: var(--btn-hover);
    text-decoration: underline;
  }
  
  .profileFooter {
    display: flex;
    flex-flow: row wrap;
    color: var(--lm-text);
  }
  
  .profileInfo {
    width: 50%;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
  }
  
  .bottomicon {
    width: 20px;
    filter: var(--lm-icon-bg);
  }
  
  .profileInfo p {
    overflow-wrap: break-word;
  }
  
  .profileInfo a {
    color: var(--lm-text);
    word-break: break-all;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .profileInfo a:hover {
    color: var(--btn-hover);
    text-decoration: underline;
  }
  