
.web-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

/* New 20251219 v */

.app-tile {
    display: flex;
    align-items: center;
    gap: 16px;

    background-color: #2f2f2f;
    padding: 16px 20px;
    border-radius: 12px;

    color: white;
    text-decoration: none;

    width: 350px;

    transition: transform 0.15s ease, background-color 0.15s ease;
}

.app-tile img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.app-tile span {
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
}

.app-tile:hover {
    transform: scale(1.1);
}

/* New 20251219 ^ */

.custom-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.custom-link:hover .tooltip {
  opacity: 1;
}

.link-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.link-icon:hover {
  transform: scale(1.1);
}

/* New 20251211 v */
@media (max-height: 500px) {
    .link-icon, .app-tile img {
        width: 50px;
        height: 50px;
    }
    .app-tile {
        width: 300px
    }
    .app-tile span {
        font-size: 15px;
        font-weight: 500;
    }
}
@media (min-height: 501px) and (max-height: 1000px) {
    .link-icon, .app-tile img {
        width: 75px;
        height: 75px;
    }
    .app-tile {
        width: 325px
    }
    .app-tile span {
        font-size: 18px;
        font-weight: 500;
    }
}
@media (min-height: 1500px) and (max-height: 1999px) {
    .link-icon, .app-tile img {
        width: 125px;
        height: 125px;
    }
    .app-tile {
        width: 375px
    }
    .app-tile span {
        font-size: 25px;
        font-weight: 500;
    }
}
@media (min-height: 2000px) {
    .link-icon, .app-tile img {
        width: 150px;
        height: 150px;
    }
    .app-tile {
        width: 400px
    }
    .app-tile span {
        font-size: 30px;
        font-weight: 500;
    }
}
/* New ^ */

.tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background:#333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}


