* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    list-style: none;
    --text-color: #fff;
    --main-color: #16171a;
    --contrast-color: #7c23be;
    --second-color: #131415;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Para que esté detrás del contenido */
}
body {
    color: var(--text-color);
    background-color: var(--main-color);
}
.category-header {
    display: block;
    transform: translateY(-5%);
    transition: 0.5s;
  }
  
  .show {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
  .product-status {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    color: #7e7e7e;
  }
  .product-features {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    color: #7e7e7e;
  }
  .product-compability {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    color: #7e7e7e;
  }
  .category-title {
    display: flex;
    justify-content: center;
    font-size: 50px;
    font-weight: 650;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  
  .category-description {
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--contrast-color);
    margin-bottom: 70px;
  }
  
  .product-container {
    display: flex;
    justify-content: center;
  }
  
  .category-valorant {
    margin-bottom: 70px;
  }
  
  .product-box.animate-fade {
    display: flex;
    flex-direction: column;
    background-color: var(--second-color);
    width: 170px;
    padding-inline: 3.5rem;
    padding-bottom: 40px;
    padding-top: 60px;
    box-shadow: 0px 5px 10px #0e0f11;
    border-radius: 30px;
    border: solid 1px transparent;
    margin-inline: 20px;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: 0.3s;
  }
  .product-box.animate-fade.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
  
  .product-box.animate-fade:hover {
    border: solid 1px #7b23be5e;
    transform: translateY(-5px);
  }
  
  
  .product-box.animate-fade:nth-child(2) {
    transition-delay: 100ms;
  }
  
  .product-box.animate-fade:nth-child(3) {
    transition-delay: 200ms;
  }
  
  .product-box.animate-fade:nth-child(4) {
    transition-delay: 300ms;
  }
  
  .product-box.animate-fade:nth-child(5) {
    transition-delay: 400ms;
  }
  
  .product-price {
    display: block;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .start-at {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    color: #7e7e7e;
  }
  
  .product-name {
    display: block;
    font-size: 18px;
    font-weight: 550;
    color: var(--contrast-color);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .product-description {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 18px;
    cursor: default;
    transition: 0.5s;
  }
  
  .product-description:hover {
    transform: translateX(5px);
  }
  
  .ri-check-line {
    margin-right: 25px;
  }
  
  .ri-close-line {
    margin-right: 25px;
  }
  
  .product-button-container {
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding-block: 14px;
    padding-inline: 24px;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-color);
    border: solid 1px var(--contrast-color);
    transition: 0.3s;
  }
  
  .product-button {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    text-align: center;
    cursor: pointer;
  }
  
  .product-button-container:hover {
    background-color: var(--contrast-color);
    box-shadow: 0px 5px 10px #212327;
  }
  .product-description img{
    padding: 4;
    position: relative;
    top: 6px;
    width: 20px;
    margin-bottom: 4px;
}
