@import url("https://krotek.serveminecraft.net/style.css");
.install-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 40px auto;
    padding: 0 10%;
}

.install-grid a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.install-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.install-grid div {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    height: 140px;
}

.install-grid div:hover {
    background-color: #f8fbff;
}

.install-grid img {
    height: 60px;
    width: 60px;
    margin-right: 20px;
    object-fit: contain;
}

.install-grid h2 {
    font-size: 1.25rem;
    color: #222;
    margin: 0;
    line-height: 1.4;
}