.links-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 20px 0;
}

.button-85 {
  padding: 0.7em 2em;
  border: 1px solid white;
  outline: none;
  
  width: 220px;
  font-size: 1rem;
  font-weight: bold;
  color: #3f3f3f;
  background: #a2a1a1;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 8px;
  user-select: none;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.button-85:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(177, 176, 176, 0.3);
  border: 1px solid rgb(138, 138, 138);
  background: #ece9e9;
  

}
@keyframes glowing-button-85 {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d3d0d0;
  left: 0;
  top: 0;
  border-radius: 8px;
    box-shadow: rgba(8, 23, 40, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;

}

.links-text {
  text-align: center;
  margin-top: 25px;
  background: rgba(204, 204, 204, 0.104);
  color: #222121;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 20px 40px -10px inset,
              rgba(0, 0, 0, 0.3) 0px 14px 28px -14px inset;
}

.links-text u {
  text-decoration-color: #1bedf1;
}
.link-media {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.link-media a ion-icon {
  width: 32px;
  margin: 10px;
  color: #222121;
  height: 32px;
  transition: transform 0.3s, filter 0.3s;
}

.link-media a ion-icon:hover {
  transform: scale(1.2);
  color: #0ce0d6;
  }
