* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --text-color: rgb(216, 73, 73);
    --bg-url: url(./assets/foxlive.png);
    --stroke-color: rgba(255, 255, 255, 0.5);
    --surface-color: rgba(255, 255, 255, 0.05);
    --surface-color-hover: rgba(0, 0, 0, 0.02);
    --highlight-color: rgba(255, 255, 255, 0.2);
  }
  
  body {
    background: var(--bg-url) no-repeat top center/cover;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  body * {
    font-family: "Inter", sans-serif;
    color: #ffffff;
  }

  #container {
    width: 100%;
    max-width: 588px;
    margin: 56px auto 0px;
    padding: 0 24px;
  }
  
  /* profile */
  #profile {
    text-align: center;
    padding: 24px;
  }
  
  #profile img {
    width: 112px;
    border-radius: 50%;
  }
  
  #profile p {
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
  }
  
  /* switch */
  #switch {
    position: relative;
    width: 64px;
  
    margin: 4px auto;
  }

  /* links */
  ul {
    list-style: none;
  
    display: flex;
    flex-direction: column;
    gap: 16px;
  
    padding: 24px 0;
  }
  
  ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 16px 24px;
  
    background: var(--surface-color);
    border: 1px solid var(--stroke-color);
    border-radius: 8px;
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    text-decoration: none;
    font-weight: 500;
  
    transition: background 0.2s;
  }

  ul li a::before {
  content: "";
  position: absolute;
  inset: 0; /* Preenche toda a borda */
  border-radius: 8px;
  padding: 2px; /* Define a largura da borda */
  background: linear-gradient(90deg, #8A2BE2, #00BFFF, #FF00FF );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: borderAnimation 3s linear infinite;
}
  
  /* pseudo-selector */
  ul li a:hover {
    background: var(--surface-color-hover);
    border: 1.5px solid var(--text-color);
  }
  
  /* social links */
  #social-links {
    display: flex;
    justify-content: center;
  
    padding: 24px 0;
  
    font-size: 24px;
  }
  
  #social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  
    transition: background 0.2s;
    border-radius: 50%;
  }
  
  #social-links a:hover {
    background: var(--highlight-color);
  }
  
  footer {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
  }
  
  /* media queries */
  @media (min-width: 700px) {
    :root {
      --bg-url: url(./assets/foxlive.png);
    }
  }
  
  /* animation */
  @keyframes slide-in {
    from {
      left: 0;
    }
    to {
      left: 50%;
    }
  }
  
  @keyframes slide-back {
    from {
      left: 50%;
    }
    to {
      left: 0;
    }
  }
 #language-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

#language-switch select {
  padding: 10px 25px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--stroke-color);
  color: white;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4L2 0zM2 5L0 3h4L2 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

#language-switch select:focus {
  outline: none;
  border: 1px solid white;
}

  