#navigation {
    padding: 30px;
}

.nav-category {
    margin-bottom: 35px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.category-icon {
    font-size: 22px;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.nav-card {
    display: flex;
    align-items: center;

    padding: 18px;

    text-decoration: none;
    color: white;

    background: rgba(20, 28, 55, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    backdrop-filter: blur(15px);

    transition: all 0.25s ease;
}

.nav-card:hover {
    transform: translateY(-4px);

    background: rgba(45, 48, 90, 0.8);

    border-color: rgba(180, 120, 255, 0.6);

    box-shadow:
        0 10px 30px rgba(80, 60, 180, 0.25);
}

.nav-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    margin-right: 14px;
}

.nav-icon img {
    width: 30px;
    height: 30px;

    object-fit: contain;

    border-radius: 6px;
}

.nav-info {
    min-width: 0;
}

.nav-name {
    font-size: 16px;
    font-weight: 600;

    margin-bottom: 5px;
}

.nav-description {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}